:root {
  --navy: #08223d;
  --navy-2: #062c4d;
  --green: #087044;
  --green-dark: #055734;
  --gold: #d2a34b;
  --text: #14283d;
  --muted: #5f7184;
  --line: #dbe4e0;
  --soft: #f5f8f7;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(8, 34, 61, 0.11);
  --radius: 4px;
  --container-max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: calc(100% - 56px);
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(8, 34, 61, 0.13);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(8, 34, 61, 0.04);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 148px;
  height: auto;
  aspect-ratio: 242 / 81;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: clamp(14px, 1.65vw, 24px);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Hide the Services group from the primary navigation across the site. */
.nav-links > .nav-item:nth-of-type(3) {
  display: none;
}

.nav-links > a,
.nav-item > .nav-parent {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #24384d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links > a::after,
.nav-item > .nav-parent::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links > a:hover,
.nav-links > a.is-active,
.nav-item > .nav-parent:hover,
.nav-item > .nav-parent.is-active {
  color: var(--green);
}

.nav-links > a:hover::after,
.nav-links > a.is-active::after,
.nav-item > .nav-parent:hover::after,
.nav-item > .nav-parent.is-active::after {
  transform: scaleX(1);
}

.submenu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 240px;
  visibility: hidden;
  transform: translate(-50%, 8px);
  border: 1px solid rgba(8, 34, 61, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.submenu::before {
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  height: 24px;
  content: "";
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
}

.submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: #24384d;
  font-size: 0.78rem;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
}

.submenu a::after {
  display: none;
}

.submenu a:hover,
.submenu a.is-active {
  background: var(--soft);
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button.primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 24px rgba(8, 112, 68, 0.18);
}

.button.secondary {
  border: 1px solid var(--green);
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.hero-slides,
.hero-slide {
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 27%, rgba(255, 255, 255, 0.78) 43%, rgba(255, 255, 255, 0.16) 70%, rgba(255, 255, 255, 0) 100%),
    var(--slide-bg);
  background-position: center, var(--slide-pos, center);
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, var(--slide-size, cover);
  content: "";
  transform: scale(1.035);
  transition: transform 6s ease;
}

.hero-slide.is-active {
  z-index: 1;
  pointer-events: auto;
  opacity: 1;
}

.hero-slide.is-active::before {
  transform: scale(1);
}

.hero-inner {
  z-index: 2;
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
}

.hero-copy {
  width: min(610px, 100%);
  min-width: 0;
  padding: 38px 0 clamp(88px, 10vw, 120px);
}

.hero-slide-docs .hero-copy {
  width: min(610px, 100%);
}

.hero-slide-docs h1 {
  max-width: 610px;
  font-size: clamp(2.8rem, 4.35vw, 4.35rem);
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.global-copy h2,
.inquiry-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(2.8rem, 4.35vw, 4.35rem);
}

.hero-lead {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(1.02rem, 1.72vw, 1.5rem);
  line-height: 1.32;
}

.hero-copy p:not(.hero-lead) {
  max-width: 520px;
  margin: 20px 0 0;
  color: #314357;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  margin-bottom: 14px;
}

.slider-ui {
  position: absolute;
  top: 50%;
  right: 28px;
  bottom: auto;
  left: auto;
  z-index: 4;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  width: auto;
  max-width: none;
  margin: 0;
  transform: translateY(-50%);
}

.slider-arrow,
.slider-dots button {
  border: 1px solid rgba(8, 112, 68, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.slider-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.slider-dots {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
}

.slider-arrow:hover,
.slider-dots button:hover,
.slider-dots button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 18px;
  width: 34px;
  height: 34px;
  color: var(--green);
  transform: translateX(50%);
}

.scroll-cue svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section {
  padding: 58px 0;
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 64px;
}

.about-image img {
  width: 100%;
  height: 270px;
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-copy h2,
.section-heading h2,
.inquiry-copy h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
}

.section-copy h2::after,
.section-heading h2::after,
.inquiry-copy h2::after,
.global-copy h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 12px;
  background: var(--gold);
  content: "";
}

.section-copy p,
.section-heading p,
.inquiry-copy p {
  margin: 18px 0 0;
  color: #314357;
  font-size: 0.95rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 44px;
}

.trust-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.trust-item h3,
.service-card h3,
.why-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.trust-item p,
.service-card p,
.why-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green);
}

.line-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.section-heading.centered h2::after {
  margin-right: auto;
  margin-left: auto;
}

.about-hero {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/about-us-banner.jpg") center / cover no-repeat;
  overflow: hidden;
}

.about-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 163, 75, 0.7), transparent);
  content: "";
}

.about-hero-inner {
  display: grid;
  min-height: 500px;
  align-items: center;
}

.about-hero-copy {
  width: min(720px, 100%);
  padding: 80px 0;
}

.about-hero h1,
.about-story-copy h2,
.overview-copy h2,
.about-cta-section h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.about-hero-copy > p:not(.hero-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #263b51;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.about-story-section {
  background: #fff;
}

.about-story-grid,
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.about-story-media {
  position: relative;
}

.about-story-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(8, 34, 61, 0.14);
  padding: 18px 20px;
}

.about-media-note strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
}

.about-media-note span {
  color: #46596d;
  font-size: 0.86rem;
}

.about-story-copy h2,
.overview-copy h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.about-story-copy h2::after,
.overview-copy h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.about-story-copy p,
.overview-copy p,
.about-cta-section p {
  margin: 20px 0 0;
  color: #314357;
  font-size: 0.96rem;
}

.about-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-highlight-row div {
  border: 1px solid rgba(8, 112, 68, 0.16);
  border-radius: var(--radius);
  background: #fbfdfc;
  padding: 18px 16px;
}

.about-highlight-row strong {
  display: block;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 900;
}

.about-highlight-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.company-overview-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7faf9, #fff);
}

.overview-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.overview-card-panel {
  display: grid;
  gap: 16px;
}

.overview-card-panel article {
  position: relative;
  border: 1px solid rgba(8, 34, 61, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.07);
  padding: 22px 22px 22px 72px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.overview-card-panel article:hover {
  border-color: rgba(8, 112, 68, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.overview-card-panel span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(210, 163, 75, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.overview-card-panel h3,
.value-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.overview-card-panel p,
.value-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.values-section {
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.value-card {
  position: relative;
  min-height: 275px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfdfc);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  border-color: rgba(8, 112, 68, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.value-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(8, 112, 68, 0.28);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 900;
}

.about-cta-section {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(3, 23, 43, 0.96), rgba(3, 23, 43, 0.78)),
    url("assets/images/hero-global-trade.png") center / cover no-repeat;
  color: #fff;
}

.about-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.about-cta-section .section-kicker,
.about-cta-section h2 {
  color: #fff;
}

.about-cta-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.quality-hero {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 44%, rgba(255, 255, 255, 0.34) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/quality-policy-hero-new.png") center / cover no-repeat;
  overflow: hidden;
}

.quality-hero-inner {
  display: grid;
  min-height: 500px;
  align-items: center;
}

.quality-hero-copy {
  width: min(720px, 100%);
  padding: 80px 0;
}

.quality-hero h1,
.policy-main h2,
.quality-actions-copy h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.quality-hero h1 {
  max-width: 740px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.quality-hero-copy > p:not(.hero-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #263b51;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.policy-section {
  background: #fff;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 52px;
  align-items: start;
}

.policy-main h2,
.quality-actions-copy h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.policy-main h2::after,
.quality-actions-copy h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.policy-main p {
  margin: 20px 0 0;
  color: #314357;
  font-size: 0.96rem;
}

.policy-product-panel {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(8, 34, 61, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f9fcfb);
  box-shadow: var(--shadow);
  padding: 30px 28px;
}

.policy-product-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
}

.policy-product-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-product-panel li {
  position: relative;
  padding-left: 24px;
  color: #314357;
  font-size: 0.92rem;
  font-weight: 600;
}

.policy-product-panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.standards-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7faf9, #fff);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.standard-card,
.quality-action-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.standard-card {
  min-height: 230px;
  padding: 30px 26px;
}

.standard-card:hover,
.quality-action-card:hover {
  border-color: rgba(8, 112, 68, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.standard-card span,
.quality-action-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(8, 112, 68, 0.28);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

.standard-card h3,
.quality-action-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 900;
}

.standard-card p,
.quality-action-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quality-actions-section {
  background: #fff;
}

.quality-actions-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
}

.quality-action-list {
  display: grid;
  gap: 16px;
}

.quality-action-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  row-gap: 4px;
  column-gap: 20px;
  align-items: start;
  padding: 24px 26px;
}

.quality-action-card span {
  grid-row: 1 / span 2;
  grid-column: 1;
  margin: 0;
}

.quality-action-card h3,
.quality-action-card p {
  grid-column: 2;
}

.quality-action-card p {
  margin-top: 6px;
  line-height: 1.5;
}

.accolades-hero {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 43%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.1) 100%),
    url("assets/images/accolades-hero-new.png") center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
  overflow: hidden;
}

.accolades-hero-inner {
  display: grid;
  min-height: 500px;
  align-items: center;
}

.accolades-hero-copy {
  width: min(780px, 100%);
  padding: 80px 0;
}

.accolades-hero h1,
.awards-copy h2,
.accreditation-copy h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.accolades-hero h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
}

.accolades-hero-copy > p:not(.hero-kicker) {
  max-width: 640px;
  margin: 22px 0 0;
  color: #263b51;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.accolades-intro-section {
  background: #fff;
}

.accolades-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.accolade-stat-card {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfdfc);
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.06);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.accolade-stat-card:hover {
  border-color: rgba(8, 112, 68, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.accolade-stat-card strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.accolade-stat-card span {
  display: block;
  margin-top: 12px;
  color: #33475b;
  font-size: 0.9rem;
  font-weight: 700;
}

.awards-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7faf9, #fff);
}

.awards-layout,
.accreditation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 52px;
  align-items: start;
}

.awards-copy h2,
.accreditation-copy h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.awards-copy h2::after,
.accreditation-copy h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.awards-copy p,
.accreditation-copy p {
  margin: 20px 0 0;
  color: #314357;
  font-size: 0.96rem;
}

.awards-list-panel {
  border: 1px solid rgba(8, 34, 61, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 30px;
}

.award-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.award-list li {
  position: relative;
  padding-left: 28px;
  color: #314357;
  font-size: 0.92rem;
}

.award-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(210, 163, 75, 0.85);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.certificate-gallery-section {
  background: #fff;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.certificate-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.certificate-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.certificate-card:hover {
  border-color: rgba(8, 112, 68, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.certificate-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  background: #f7faf9;
  cursor: zoom-in;
}

.certificate-card.large img {
  height: 700px;
}

.certificate-card div {
  padding: 18px 18px 20px;
}

.certificate-card.brcgs-card div {
  padding-bottom: 6px;
}

.certificate-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
}

.certificate-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.lightbox-open {
  overflow: hidden;
}

.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(3, 23, 43, 0.86);
  padding: 28px;
}

.certificate-lightbox[hidden] {
  display: none;
}

.certificate-lightbox-frame {
  display: inline-grid;
  max-width: calc(100vw - 56px);
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.certificate-lightbox-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 56px);
  max-height: calc(100vh - 56px);
  object-fit: contain;
  border-radius: var(--radius);
  background: transparent;
}

.certificate-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1001;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.accreditation-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f7faf9, #fff);
}

.accreditation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.accreditation-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(8, 34, 61, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 34, 61, 0.05);
  padding: 18px;
}

.accreditation-list span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(8, 112, 68, 0.24);
  border-radius: var(--radius);
  color: var(--green);
  font-size: clamp(0.62rem, 0.9vw, 0.78rem);
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  padding: 6px;
  text-align: center;
}

.accreditation-list p {
  margin: 0;
  color: #314357;
  font-size: 0.86rem;
}

.products-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfcfc);
}

.section-heading p {
  max-width: 760px;
}

.product-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 28px;
  overflow: hidden;
  padding: 0 0 18px;
}

.product-card {
  flex: 0 0 clamp(230px, 22vw, 270px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 34, 61, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card.is-clone {
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(8, 112, 68, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.product-card div {
  padding: 18px 16px 20px;
}

.product-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 900;
}

.product-card p {
  margin: 13px 0 0;
  color: #33475b;
  font-size: 0.78rem;
  line-height: 1.55;
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-detail-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/psyllium-husk-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.psyllium-powder-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/psyllium-husk-powder-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.psyllium-kha-kha-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/psyllium-kha-kha-powder-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.gola-lali-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/gola-lali-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.psyllium-seeds-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/psyllium-seeds-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.senna-leaves-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/senna-leaves-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.senna-leaves-powder-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/senna-leaves-powder-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.senna-pods-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/senna-pods-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.senna-pods-powder-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/senna-pods-powder-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.product-detail-hero-inner {
  display: grid;
  min-height: 500px;
  align-items: center;
}

.product-detail-copy {
  width: min(720px, 100%);
  padding: 80px 0;
}

.product-detail-copy h1,
.product-spec-copy h2,
.certification-panel h2,
.export-panel h2,
.product-faq-copy h2,
.product-quote-section h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-detail-copy h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.product-detail-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #263b51;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.product-image-section {
  background: #fff;
}

.product-image-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.product-image-copy h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.product-image-copy h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.product-image-copy p {
  margin: 20px 0 0;
  color: #314357;
  font-size: 0.96rem;
  line-height: 1.75;
}

.product-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 34, 61, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.product-visual-card img,
.product-photo-slides {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product-visual-card img {
  object-fit: cover;
}

.product-photo-slides {
  position: relative;
  overflow: hidden;
  background: #f7faf8;
}

.product-photo-slides img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-photo-slides img.is-active {
  opacity: 1;
}

.product-photo-arrow {
  position: absolute;
  top: calc(50% - 38px);
  z-index: 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(8, 34, 61, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(8, 34, 61, 0.14);
  cursor: pointer;
}

.product-photo-prev {
  left: 14px;
}

.product-photo-next {
  right: 14px;
}

.product-photo-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.product-photo-arrow:hover,
.product-photo-arrow:focus-visible {
  border-color: rgba(8, 112, 68, 0.35);
  color: var(--green);
}

.product-photo-dots {
  position: absolute;
  right: 18px;
  bottom: 84px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.product-photo-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(8, 34, 61, 0.14);
  cursor: pointer;
}

.product-photo-dots button.active,
.product-photo-dots button:hover,
.product-photo-dots button:focus-visible {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 112, 68, 0.18);
}

.product-visual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.product-visual-badges span,
.cert-chip-grid span,
.country-grid span {
  border: 1px solid rgba(8, 112, 68, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-visual-badges span {
  padding: 8px 12px;
}

.product-summary-section {
  background: #fff;
}

.product-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-summary-card,
.application-card,
.certification-panel,
.export-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.06);
}

.product-summary-card {
  padding: 28px 24px;
}

.product-summary-card span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-summary-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.product-summary-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-spec-section,
.certifications-export-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7faf9, #fff);
}

.product-spec-grid,
.cert-export-grid,
.product-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 52px;
}

.product-spec-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

.product-spec-copy {
  max-width: 820px;
}

.product-spec-copy h2,
.certification-panel h2,
.export-panel h2,
.product-faq-copy h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.certification-panel h2,
.export-panel h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.18;
}

.product-spec-copy h2::after,
.certification-panel h2::after,
.export-panel h2::after,
.product-faq-copy h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.product-spec-copy p,
.product-faq-copy p,
.product-quote-section p {
  margin: 20px 0 0;
  color: #314357;
  font-size: 0.96rem;
}

.spec-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-comparison-wrap {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table {
  min-width: 1120px;
}

.spec-table th,
.spec-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.spec-table th {
  background: #f7faf9;
  color: var(--navy);
  font-weight: 900;
}

.comparison-table thead th {
  background: #f2f6f4;
  color: var(--navy);
  font-size: 0.96rem;
}

.comparison-table tbody th {
  width: 16%;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.spec-table td {
  color: #314357;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-note {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.spec-note strong {
  display: block;
  color: #d91414;
  font-size: 1.15rem;
  font-weight: 900;
}

.spec-note p {
  margin: 8px 0 0;
  color: #263b51;
  font-size: 0.94rem;
}

.product-info-layout {
  display: grid;
  gap: 30px;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-info-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.06);
  padding: 28px 26px;
}

.product-info-card-wide {
  grid-column: 1 / -1;
}

.product-info-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-info-card p {
  margin: 14px 0 0;
  color: #314357;
  font-size: 0.93rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.info-check-list,
.info-columns {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.info-check-list {
  display: grid;
  gap: 10px;
}

.info-columns {
  columns: 2;
  column-gap: 34px;
}

.info-check-list li,
.info-columns li {
  position: relative;
  break-inside: avoid;
  margin: 0 0 10px;
  padding-left: 20px;
  color: #314357;
  font-size: 0.9rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.info-check-list li::before,
.info-columns li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.quality-list,
.dosage-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.quality-list div,
.dosage-grid div {
  border: 1px solid rgba(8, 112, 68, 0.14);
  border-radius: var(--radius);
  background: #f7faf9;
  padding: 14px 16px;
}

.quality-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quality-list strong,
.dosage-grid strong {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.quality-list span {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.dosage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dosage-grid p {
  margin-top: 8px;
  font-size: 0.86rem;
}

.compact-country-grid {
  margin-top: 16px;
}

.applications-section {
  background: #fff;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.application-card {
  min-height: 238px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.application-card:hover,
.product-summary-card:hover,
.faq-item:hover {
  border-color: rgba(8, 112, 68, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.application-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(210, 163, 75, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.application-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.application-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cert-export-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.certification-panel,
.export-panel {
  padding: 34px 30px;
}

.cert-chip-grid,
.country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.cert-chip-grid span,
.country-grid span {
  padding: 9px 13px;
}

.product-faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 16px 20px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-quote-section {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(3, 23, 43, 0.96), rgba(3, 23, 43, 0.78)),
    url("assets/images/hero-global-trade.png") center / cover no-repeat,
    linear-gradient(135deg, #072842, #03172b);
  color: #fff;
}

.product-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.product-quote-section .section-kicker,
.product-quote-section h2 {
  color: #fff;
}

.product-quote-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.services-section {
  background: #fff;
}

.service-detail-hero {
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.52) 76%, rgba(255, 255, 255, 0.2) 100%),
    url("assets/images/hero-global-trade.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.service-detail-hero-inner {
  min-height: 460px;
  display: grid;
  align-content: center;
  padding: 72px 0;
}

.service-detail-hero h1,
.service-detail-copy h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-detail-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.service-detail-hero p:not(.hero-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #263b51;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.7;
}

.service-detail-content {
  background: linear-gradient(180deg, #fff, #f7faf9);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 52px;
}

.service-detail-copy h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.service-detail-copy h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.service-detail-copy p {
  margin: 20px 0 0;
  color: #314357;
  font-size: 0.96rem;
  line-height: 1.75;
}

.service-points {
  margin-top: 24px;
}

.service-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.06);
}

.service-detail-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.service-detail-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-grid,
.why-grid {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.why-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.why-card {
  min-height: 175px;
  border-right: 1px solid var(--line);
  padding: 28px 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.sourcing-hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/hero-global-trade.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.global-sourcing-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/global-sourcing-hero-bg.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.logistics-service-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/logistics-support-hero-bg.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.quality-control-service-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/quality-control-service-hero-bg.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.packaging-service-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/packaging-hero-bg.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.documentation-service-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/documentation-hero-bg.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.customer-support-service-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/customer-support-hero-bg.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.sourcing-hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
}

.sourcing-hero-copy h1,
.sourcing-intro h2,
.sourcing-process-section .section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.sourcing-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.sourcing-hero-copy p:not(.hero-kicker) {
  max-width: 690px;
  margin: 22px 0 0;
  color: #263b51;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.72;
}

.sourcing-hero-panel {
  border: 1px solid rgba(8, 112, 68, 0.16);
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.sourcing-hero-panel span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sourcing-hero-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.15;
}

.sourcing-hero-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.sourcing-overview {
  background: #fff;
}

.sourcing-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
  gap: 56px;
}

.sourcing-intro h2,
.sourcing-process-section .section-heading h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.sourcing-intro h2::after,
.sourcing-process-section .section-heading h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.sourcing-intro p {
  margin: 22px 0 0;
  color: #314357;
  font-size: 0.98rem;
  line-height: 1.8;
}

.sourcing-highlights {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.sourcing-highlights div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.sourcing-highlights div:first-child {
  padding-top: 0;
}

.sourcing-highlights div:last-child {
  border-bottom: 0;
}

.sourcing-highlights strong {
  color: var(--green);
  font-size: 1.1rem;
}

.sourcing-highlights span {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}

.sourcing-process-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7faf9, #fff);
}

.sourcing-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.sourcing-step {
  min-height: 260px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.sourcing-step:last-child {
  border-right: 0;
}

.sourcing-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 112, 68, 0.2);
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
}

.sourcing-step h3 {
  margin: 28px 0 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.sourcing-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.sourcing-capabilities {
  background: #fff;
}

.sourcing-capability-list {
  display: grid;
  gap: 18px;
}

.sourcing-capability {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.05);
}

.sourcing-capability h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.sourcing-capability > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.psyllium-process-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/psyllium-seeds-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.senna-process-page .sourcing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/senna-pods-hero-new.png") right center / cover no-repeat,
    linear-gradient(135deg, #f7faf9, #ffffff);
}

.manufacturing-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manufacturing-process .sourcing-step:nth-child(4n) {
  border-right: 0;
}

.manufacturing-process .sourcing-step:nth-child(n + 5) {
  border-top: 1px solid var(--line);
}

.senna-process-page .manufacturing-process .sourcing-step:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.senna-process-page .manufacturing-process .sourcing-step:nth-child(n + 5) {
  border-top: 0;
}

.senna-process-page .manufacturing-process .sourcing-step:last-child {
  border-right: 1px solid var(--line);
}

.net-zero-page .sourcing-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.5) 76%, rgba(255, 255, 255, 0.18) 100%),
    url("assets/images/net-zero-hero-bg.png"),
    linear-gradient(135deg, #f7faf9, #ffffff);
  background-position: center center, center center, center center;
  background-size: 100% 100%, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.sustainability-grid,
.sustainability-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.sustainability-copy h2,
.sustainability-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
}

.sustainability-cta h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
}

.sustainability-copy p,
.sustainability-cta p {
  color: var(--muted);
}

.sustainability-photo img,
.sustainability-gallery img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sustainability-process .sourcing-step:nth-child(4n) {
  border-right: 0;
}

.sustainability-cta {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(8, 34, 61, 0.08);
}

.sustainability-cta .button {
  margin-top: 28px;
}

.highlights-hero {
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.48) 78%, rgba(255, 255, 255, 0.12) 100%),
    url("assets/images/highlights-hero-new.png") right center / cover no-repeat;
}

.highlights-hero-inner {
  display: grid;
  min-height: 500px;
  align-items: center;
}

.highlights-hero-copy {
  max-width: 720px;
}

.highlights-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.highlights-hero-copy p:not(.hero-kicker) {
  max-width: 640px;
  color: #263b51;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.highlights-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.gallery-category-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7faf9;
}

.gallery-category-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 7px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gallery-category-nav a:hover,
.gallery-category-nav a:focus-visible {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.gallery-category-nav span {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.highlight-category {
  scroll-margin-top: 110px;
  padding-top: 76px;
}

.highlight-category + .highlight-category {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.highlight-category-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1.25fr) auto;
  gap: 30px;
  align-items: end;
}

.highlight-category-heading > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.highlight-category-heading span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.highlight-category-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1;
}

.highlight-category-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.highlight-category-heading strong {
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.08);
  cursor: pointer;
}

.highlight-card.tall {
  grid-row: span 2;
}

.highlight-card img {
  width: 100%;
  height: 290px;
  min-height: 245px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.highlight-card:hover img {
  transform: scale(1.04);
}

.highlight-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(8, 34, 61, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-hero {
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.45) 78%, rgba(255, 255, 255, 0.1) 100%),
    url("assets/images/contact-hero-bg.png") right center / cover no-repeat;
}

.contact-hero-inner {
  display: grid;
  min-height: 500px;
  align-items: center;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.contact-hero-copy p:not(.hero-kicker) {
  max-width: 640px;
  color: #263b51;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.contact-details-section {
  background: #f7faf9;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-detail-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 34, 61, 0.08);
}

.contact-detail-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-detail-card h2 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: 1.25rem;
}

.contact-detail-card p,
.contact-detail-card a {
  color: var(--muted);
}

.contact-inquiry-section {
  padding: 72px 0;
}

.contact-inquiry-section .inquiry-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 460px);
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.contact-inquiry-section .inquiry-copy {
  display: grid;
  gap: 24px;
  max-width: 100%;
}

.contact-inquiry-section .inquiry-copy p {
  max-width: 460px;
}

.contact-inquiry-intro p {
  margin-top: 16px;
}

.inquiry-support-list {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.inquiry-support-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 18px 18px;
  border: 1px solid rgba(8, 34, 61, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 34, 61, 0.06);
}

.inquiry-support-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(8, 112, 68, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.inquiry-support-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
}

.inquiry-support-list p {
  max-width: none;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.contact-widget-panel {
  width: 100%;
  max-width: 460px;
  min-height: auto;
  align-self: start;
  justify-self: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 34, 61, 0.08);
}

.contact-widget-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
  text-align: center;
}

.contact-widget-frame {
  display: flex;
  width: 100%;
  min-height: 390px;
  margin-top: 18px;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

.contact-widget-frame [id^="whatapp-people-widget"] {
  display: flex;
  width: 100%;
  justify-content: center;
}

.contact-widget-frame iframe,
.contact-widget-frame [id^="whatapp-people-widget"] > * {
  max-width: 100%;
}

.contact-map-card {
  border: 1px solid rgba(8, 34, 61, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 34, 61, 0.06);
  overflow: hidden;
}

.contact-map-copy {
  padding: 18px 18px 0;
}

.contact-map-copy span {
  display: inline-block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-map-copy h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.contact-map-frame {
  padding: 18px;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
}

.knowledgebase-hero {
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.5) 78%, rgba(255, 255, 255, 0.16) 100%),
    url("assets/images/knowledgebase-hero-new.png") right center / cover no-repeat;
}

.knowledgebase-hero-inner {
  display: grid;
  min-height: 500px;
  align-items: center;
}

.knowledgebase-hero-copy {
  max-width: 760px;
}

.knowledgebase-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.knowledgebase-hero-copy p:not(.hero-kicker) {
  max-width: 640px;
  color: #263b51;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.knowledgebase-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.knowledgebase-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 34, 61, 0.08);
}

.knowledgebase-toc span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.knowledgebase-toc a {
  color: #32485f;
  font-size: 0.9rem;
  font-weight: 700;
}

.knowledgebase-article {
  display: grid;
  gap: 28px;
}

.knowledgebase-article section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.knowledgebase-article h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.15;
}

.knowledgebase-article p,
.knowledgebase-article li {
  color: var(--muted);
}

.knowledgebase-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.knowledgebase-cards div {
  padding: 18px;
  border: 1px solid #e8efec;
  border-radius: 8px;
  background: #f8fbfa;
}

.knowledgebase-cards strong {
  color: var(--navy);
}

.service-card:first-child,
.why-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover,
.why-card:hover {
  background: var(--soft);
  transform: translateY(-4px);
}

.service-card .line-icon,
.why-card .line-icon {
  margin-bottom: 16px;
}

.why-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.global-section {
  min-height: 360px;
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(3, 23, 43, 0.96) 0%, rgba(3, 23, 43, 0.88) 31%, rgba(3, 23, 43, 0.42) 58%, rgba(3, 23, 43, 0.1) 100%),
    url("assets/images/global-reach-map.png") right center / min(74%, 980px) auto no-repeat,
    linear-gradient(135deg, #072842, #03172b);
  color: #fff;
  overflow: hidden;
}

.global-grid {
  display: grid;
  min-height: 252px;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  align-items: center;
  gap: 48px;
}

.global-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}

.global-copy p {
  max-width: 300px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.global-stats div {
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  padding-right: 18px;
}

.global-stats div:last-child {
  border-right: 0;
}

.global-stats strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.global-stats span {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 0.85rem;
}

.buyer-partner-section {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.buyer-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.buyer-partner-copy .section-kicker,
.buyer-partner-copy h2 {
  color: var(--navy);
}

.buyer-partner-copy h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.08;
}

.buyer-partner-copy p {
  max-width: 620px;
  margin: 20px 0 28px;
  color: var(--muted);
}

.buyer-partner-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.buyer-partner-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  box-shadow: 0 12px 28px rgba(8, 34, 61, 0.06);
}

.buyer-partner-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
}

.buyer-partner-card h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 1.04rem;
}

.buyer-partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.inquiry-section {
  padding: 46px 0 22px;
  background: #fff;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: 52px;
}

.inquiry-copy p {
  max-width: 280px;
}

.inquiry-graphic {
  margin-top: 28px;
  color: rgba(8, 34, 61, 0.13);
}

.inquiry-graphic svg {
  width: 280px;
  max-width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  color: #33475b;
  font-size: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(8, 112, 68, 0.1);
}

input::placeholder {
  color: #8b99a6;
}

.inquiry-form label span + input,
.inquiry-form label span + select,
.inquiry-form label span + textarea {
  position: relative;
}

.inquiry-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-note {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer {
  background: linear-gradient(135deg, #062842, #03172b);
  color: rgba(255, 255, 255, 0.83);
  padding: 34px 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.15fr 0.85fr;
  gap: 38px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  aspect-ratio: 242 / 81;
  object-fit: contain;
  border-radius: 3px;
  background: #fff;
  padding: 4px 8px;
}

.footer-brand p {
  max-width: 250px;
  margin: 16px 0 0;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: transparent;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-links a,
.site-footer address,
.site-footer p,
.site-footer div > a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-style: normal;
}

.site-footer div > a {
  display: block;
  margin-top: 8px;
}

.footer-links a:hover,
.site-footer div > a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] {
  --delay: 100ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1160px) {
  .product-grid {
    overflow: hidden;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card,
  .why-card {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .accolades-stats-grid,
  .applications-grid,
  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificate-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .certificate-card.large img {
    height: 270px;
  }
}

@media (max-width: 940px) {
  :root {
    --container-max: 760px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    visibility: hidden;
    transform: translateY(-8px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(8, 34, 61, 0.16);
    padding: 8px 14px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links > a,
  .nav-item > .nav-parent {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    gap: 12px;
    border-bottom: 1px solid #edf2f0;
    padding: 0 4px;
    font-size: 0.9rem;
  }

  .nav-links > a::before,
  .nav-item > .nav-parent::before {
    display: inline-block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid rgba(8, 112, 68, 0.13);
    border-radius: 999px;
    background: #f6faf8;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    content: "";
  }

  .nav-links > a[href*="#home"]::before,
  .nav-links > a[href="index.html"]::before,
  .nav-links > a[href="/"]::before {
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M3%2010.5L12%203l9%207.5V21h-6v-6H9v6H3V10.5z'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .nav-item:nth-of-type(1) > .nav-parent::before {
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle%20cx='12'%20cy='8'%20r='4'%20stroke='%23087044'%20stroke-width='2'/%3E%3Cpath%20d='M5%2021c1.5-4%204-6%207-6s5.5%202%207%206'%20stroke='%23087044'%20stroke-width='2'%20stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .nav-item:nth-of-type(2) > .nav-parent::before {
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M4%207l8-4%208%204-8%204-8-4z'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3Cpath%20d='M4%207v10l8%204%208-4V7'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3Cpath%20d='M12%2011v10'%20stroke='%23087044'%20stroke-width='2'/%3E%3C/svg%3E");
  }

  .nav-item:nth-of-type(3) > .nav-parent::before {
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%207h14M5%2012h14M5%2017h14'%20stroke='%23087044'%20stroke-width='2'%20stroke-linecap='round'/%3E%3Cpath%20d='M4%207h.01M4%2012h.01M4%2017h.01'%20stroke='%23087044'%20stroke-width='3'%20stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .nav-item:nth-of-type(4) > .nav-parent::before {
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M4%2017V9l5%204V9l5%204V7h6v10H4z'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3Cpath%20d='M7%2017v3h10v-3'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .nav-item:nth-of-type(5) > .nav-parent::before {
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M19%204c-7%200-12%204-12%2010%200%203%202%205%205%205%205%200%207-5%207-15z'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3Cpath%20d='M5%2020c2-5%205-8%2010-10'%20stroke='%23087044'%20stroke-width='2'%20stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .nav-links > a[href*="#contact"]::before,
  .nav-links > a[href*="contact.html"]::before {
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M4%206h16v12H4V6z'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3Cpath%20d='M4%207l8%206%208-6'%20stroke='%23087044'%20stroke-width='2'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .nav-links > a:last-child {
    border-bottom: 0;
  }

  .nav-item {
    display: grid;
    width: 100%;
    border-bottom: 1px solid #edf2f0;
  }

  .nav-item > .nav-parent {
    border-bottom: 0;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
    margin: 0 0 10px 42px;
    padding: 6px 10px;
    width: calc(100% - 42px);
    background: #f8fbfa;
    overflow: hidden;
    opacity: 1;
    transition: none;
  }

  .submenu::before {
    display: none;
  }

  .has-submenu.is-open .submenu,
  .has-submenu:focus-within .submenu {
    display: grid;
    transform: none;
  }

  .submenu a {
    min-height: auto;
    width: 100%;
    padding: 10px 8px;
    border-bottom: 1px solid #e8efec;
    color: #32485f;
    font-size: 0.8rem;
    line-height: 1.35;
    text-transform: none;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .submenu a::before {
    display: none;
  }

  .submenu a:last-child {
    border-bottom: 0;
  }

  .submenu a:hover,
  .submenu a.is-active {
    background: transparent;
    color: var(--green);
  }

  .nav-links > a::after,
  .nav-item > .nav-parent::after {
    right: auto;
    bottom: 9px;
    left: 46px;
    width: 44px;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    border-color: rgba(8, 34, 61, 0.16);
    box-shadow: 0 10px 22px rgba(8, 34, 61, 0.08);
  }

  .hero {
    min-height: 620px;
    padding: 0;
    background: #fff;
  }

  .hero-slides,
  .hero-slide,
  .hero-inner {
    min-height: 620px;
  }

  .hero-slide::before {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0.52) 70%, rgba(255, 255, 255, 0.08) 100%),
      var(--slide-bg);
    background-position: center, center bottom;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 52px 0 150px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 9vw, 4rem);
    max-width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .slider-ui {
    right: 22px;
    left: auto;
    width: auto;
    max-width: none;
    transform: translateY(-50%);
  }

  .about-grid,
  .about-story-grid,
  .overview-grid,
  .about-cta-grid,
  .buyer-partner-grid,
  .policy-grid,
  .quality-actions-grid,
  .awards-layout,
  .accreditation-layout,
  .product-image-grid,
  .product-spec-grid,
  .product-faq-grid,
  .global-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .contact-inquiry-section .inquiry-grid {
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: stretch;
    gap: 30px;
  }

  .contact-widget-panel {
    max-width: 460px;
    margin: 0 auto;
    justify-self: stretch;
  }

  .about-grid {
    gap: 34px;
  }

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

  .global-copy p {
    max-width: 560px;
  }

  .about-hero,
  .quality-hero,
  .quality-hero-inner,
  .about-hero-inner {
    min-height: 560px;
  }

  .about-story-grid,
  .overview-grid {
    gap: 38px;
  }

  .about-story-media img {
    height: 360px;
  }

  .about-cta-grid {
    justify-items: start;
  }

  .policy-product-panel {
    position: static;
  }

  .accreditation-list {
    grid-template-columns: 1fr;
  }

  .product-image-grid {
    gap: 34px;
  }

  .product-visual-card {
    max-width: 460px;
  }

  .cert-export-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container-max: 560px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .header-cta {
    display: none;
  }

  .brand img {
    width: 124px;
  }

  .hero,
  .hero-slides,
  .hero-slide,
  .hero-inner {
    min-height: 660px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.4vw, 2.1rem);
    line-height: 1.1;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 0.94rem;
  }

  .hero-copy p:not(.hero-lead) {
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .slider-ui {
    top: auto;
    right: auto;
    bottom: 26px;
    left: 50%;
    flex-direction: row;
    width: calc(100% - 24px);
    max-width: 560px;
    justify-content: center;
    transform: translateX(-50%);
  }

  .slider-dots {
    flex-direction: row;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 46px 0;
  }

  .about-grid,
  .inquiry-grid {
    gap: 28px;
  }

  .contact-widget-panel {
    padding: 20px 14px;
  }

  .contact-widget-frame {
    min-height: 360px;
  }

  .contact-inquiry-section {
    padding: 56px 0;
  }

  .contact-map-frame {
    padding: 14px;
  }

  .contact-map-frame iframe {
    height: 260px;
  }

  .trust-grid,
  .about-highlight-row,
  .product-grid,
  .service-grid,
  .why-grid,
  .values-grid,
  .standards-grid,
  .accolades-stats-grid,
  .product-summary-grid,
  .product-info-grid,
  .dosage-grid,
  .applications-grid,
  .cert-export-grid,
  .certificate-grid,
  .form-row,
  .footer-grid,
  .global-stats {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 22px;
  }

  .service-card,
  .service-card:first-child,
  .why-card,
  .why-card:first-child {
    min-height: auto;
    border-right: 0;
    border-left: 0;
  }

  .global-section {
    min-height: 440px;
    padding: 48px 0;
    background:
      linear-gradient(180deg, rgba(3, 23, 43, 0.96) 0%, rgba(3, 23, 43, 0.86) 44%, rgba(3, 23, 43, 0.22) 100%),
      url("assets/images/global-reach-map.png") center bottom / 760px auto no-repeat,
      linear-gradient(135deg, #072842, #03172b);
  }

  .buyer-partner-cards {
    grid-template-columns: 1fr;
  }

  .global-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0 0 16px;
  }

  .global-stats div:last-child {
    border-bottom: 0;
  }

  .global-grid {
    min-height: 344px;
  }

  .about-hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.2) 100%),
      url("assets/images/about-us-banner.jpg") center bottom / cover no-repeat;
  }

  .about-hero-inner {
    min-height: 620px;
  }

  .about-hero-copy {
    padding: 54px 0 170px;
  }

  .about-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .quality-hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/quality-policy-hero-new.png") center bottom / cover no-repeat;
  }

  .quality-hero-inner {
    min-height: 620px;
  }

  .quality-hero-copy {
    padding: 54px 0 170px;
  }

  .quality-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .product-detail-hero {
    min-height: 660px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/psyllium-husk-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .psyllium-powder-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/psyllium-husk-powder-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .psyllium-kha-kha-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/psyllium-kha-kha-powder-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .gola-lali-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/gola-lali-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .psyllium-seeds-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/psyllium-seeds-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .senna-leaves-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/senna-leaves-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .senna-leaves-powder-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/senna-leaves-powder-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .senna-pods-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/senna-pods-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .senna-pods-powder-page .product-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/senna-pods-powder-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .product-detail-hero-inner {
    min-height: 660px;
  }

  .service-detail-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.24) 100%),
      url("assets/images/hero-global-trade.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .service-detail-hero-inner {
    min-height: 610px;
    padding: 58px 0;
  }

  .service-detail-layout,
  .service-detail-card-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    min-height: auto;
  }

  .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/hero-global-trade.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .global-sourcing-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/global-sourcing-hero-bg.jpg") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .logistics-service-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/logistics-support-hero-bg.jpg") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .quality-control-service-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/quality-control-service-hero-bg.jpg") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .packaging-service-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/packaging-hero-bg.jpg") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .documentation-service-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/documentation-hero-bg.jpg") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .customer-support-service-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/customer-support-hero-bg.jpg") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .psyllium-process-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/psyllium-seeds-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .senna-process-page .sourcing-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/senna-pods-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .net-zero-page .sourcing-hero {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.3) 100%),
      url("assets/images/net-zero-hero-bg.png"),
      linear-gradient(135deg, #f7faf9, #ffffff);
    background-position: center center, 62% center, center center;
    background-size: 100% 100%, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }

  .sourcing-hero-grid,
  .sourcing-overview-grid,
  .sourcing-capability,
  .sustainability-grid,
  .sustainability-gallery-grid {
    grid-template-columns: 1fr;
  }

  .highlights-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.26) 100%),
      url("assets/images/highlights-hero-new.png") center bottom / cover no-repeat;
  }

  .highlights-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-category-heading {
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
    align-items: start;
  }

  .highlight-category-heading p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .contact-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.26) 100%),
      url("assets/images/contact-hero-bg.png") center bottom / cover no-repeat;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .knowledgebase-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.28) 100%),
      url("assets/images/knowledgebase-hero-new.png") center bottom / cover no-repeat;
  }

  .knowledgebase-layout,
  .knowledgebase-cards {
    grid-template-columns: 1fr;
  }

  .knowledgebase-toc {
    position: static;
  }

  .sourcing-hero-grid {
    min-height: 650px;
    align-content: center;
    padding: 58px 0;
  }

  .sourcing-hero-panel {
    max-width: 420px;
  }

  .sourcing-process {
    grid-template-columns: 1fr;
  }

  .sourcing-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manufacturing-process {
    grid-template-columns: 1fr;
  }

  .manufacturing-process .sourcing-step:nth-child(n + 5) {
    border-top: 0;
  }

  .senna-process-page .manufacturing-process .sourcing-step:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .senna-process-page .manufacturing-process .sourcing-step:last-child {
    border-right: 0;
  }

  .sourcing-step:last-child {
    border-bottom: 0;
  }

  .product-detail-copy {
    padding: 54px 0 170px;
  }

  .product-detail-copy h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9vw, 2.75rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .product-detail-page .hero-actions {
    max-width: 100%;
    flex-direction: column;
  }

  .product-detail-page .hero-actions .button {
    width: 100%;
  }

  .product-detail-copy p,
  .product-image-copy p,
  .product-spec-copy p,
  .product-faq-copy p,
  .product-summary-card p,
  .application-card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .product-image-copy h2,
  .product-spec-copy h2,
  .certification-panel h2,
  .export-panel h2,
  .product-faq-copy h2,
  .product-quote-section h2,
  .product-detail-page .section-heading h2 {
    max-width: 310px;
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    overflow-wrap: anywhere;
  }

  .product-visual-card {
    max-width: 100%;
  }

  .product-visual-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-visual-badges span,
  .cert-chip-grid span,
  .country-grid span {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .product-info-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 18px;
    overflow: hidden;
  }

  .product-info-layout,
  .product-info-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-info-grid {
    grid-template-columns: minmax(0, calc(100vw - 48px));
    justify-content: start;
  }

  .product-info-card {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .product-info-card-wide {
    grid-column: auto;
  }

  .product-info-card h3,
  .product-info-card p,
  .info-check-list li,
  .info-columns li,
  .dosage-grid p {
    width: calc(100vw - 130px);
    max-width: calc(100vw - 130px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .product-info-card h3 {
    font-size: 1rem;
  }

  .product-info-card p,
  .info-check-list li,
  .info-columns li {
    font-size: 0.78rem;
    line-height: 1.58;
  }

  .info-columns {
    columns: 1;
  }

  .quality-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .spec-table:not(.comparison-table) th,
  .spec-table:not(.comparison-table) td {
    display: block;
    width: 100%;
  }

  .spec-table:not(.comparison-table) th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .spec-table:not(.comparison-table) td {
    padding-top: 6px;
  }

  .comparison-table {
    min-width: 920px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 13px 14px;
    font-size: 0.86rem;
  }

  .product-quote-section {
    background:
      linear-gradient(180deg, rgba(3, 23, 43, 0.96), rgba(3, 23, 43, 0.82)),
      url("assets/images/hero-global-trade.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #072842, #03172b);
    padding: 48px 0;
  }

  .quality-action-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quality-action-card span,
  .quality-action-card h3,
  .quality-action-card p {
    grid-row: auto;
    grid-column: auto;
  }

  .accolades-hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.18) 100%),
      url("assets/images/accolades-hero-new.png") center bottom / cover no-repeat,
      linear-gradient(135deg, #f7faf9, #ffffff);
  }

  .accolades-page .container {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .accolades-stats-grid,
  .awards-layout,
  .certificate-grid,
  .accreditation-layout,
  .accreditation-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .accolades-hero-inner {
    min-height: 620px;
  }

  .accolades-hero-copy {
    width: min(330px, 100%);
    padding: 54px 0 170px;
  }

  .accolades-hero h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.25rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .accolades-hero-copy > p:not(.hero-kicker) {
    max-width: 330px;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .awards-list-panel {
    padding: 22px;
  }

  .awards-copy h2,
  .accreditation-copy h2,
  .accolades-page .section-heading h2 {
    max-width: 330px;
    font-size: clamp(1.72rem, 6.8vw, 2.08rem);
    line-height: 1.13;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .accolade-stat-card,
  .awards-copy,
  .accreditation-copy,
  .awards-list-panel {
    min-width: 0;
  }

  .accolade-stat-card span,
  .award-list li,
  .accreditation-list p {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .awards-copy p,
  .accreditation-copy p {
    max-width: 300px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .certificate-card img,
  .certificate-card.large img {
    height: 320px;
  }

  .product-card {
    flex-basis: min(82vw, 290px);
  }

  .highlights-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-category-nav {
    grid-template-columns: 1fr;
  }

  .gallery-category-nav a {
    padding: 13px 15px;
  }

  .highlight-category {
    padding-top: 58px;
  }

  .highlight-category + .highlight-category {
    margin-top: 54px;
  }

  .highlight-category-heading {
    grid-template-columns: 1fr;
  }

  .highlight-category-heading p,
  .highlight-category-heading strong {
    grid-column: 1;
    grid-row: auto;
  }

  .highlight-card,
  .highlight-card img {
    min-height: 260px;
  }

  .certificate-lightbox {
    padding: 16px;
  }

  .certificate-lightbox-frame {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 76px);
  }

  .certificate-lightbox-frame img {
    width: auto;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 76px);
  }

  .certificate-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .accreditation-list article {
    grid-template-columns: 1fr;
  }

  .about-story-media img {
    height: 300px;
  }

  .about-media-note {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 14px;
  }

  .overview-card-panel article {
    padding: 22px;
  }

  .overview-card-panel span {
    position: static;
    margin-bottom: 14px;
  }

  .value-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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