:root {
  --green: #2aa44a;
  --green-dark: #1e8a3a;
  --green-deep: #0b4d2c;
  --green-footer: #073821;
  --green-soft: #e8f6ec;
  --red: #e31b23;
  --red-dark: #c4141b;
  --ink: #161a1f;
  --muted: #5c6570;
  --line: #e5e8ec;
  --paper: #f5f7f9;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(16, 24, 40, 0.07);
  --shadow-hover: 0 16px 36px rgba(16, 24, 40, 0.12);
  --radius: 12px;
  --container: 1180px;
  --page-gutter: 78px;
  --header-offset: 128px;
  --font: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  padding-top: var(--header-offset);
}

body.is-preloading {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: min(280px, 78vw);
}

.site-preloader-logo {
  width: min(212px, 72vw);
  height: auto;
  animation: preloader-logo-pulse 1.6s ease-in-out infinite;
}

.site-preloader-bar {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #e3ebe6;
  overflow: hidden;
}

.site-preloader-bar-fill {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0a5c32 0%, #2aa44a 100%);
  animation: preloader-bar-slide 1.1s ease-in-out infinite;
}

@keyframes preloader-logo-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.82;
    transform: scale(0.98);
  }
}

@keyframes preloader-bar-slide {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(280%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader-logo,
  .site-preloader-bar-fill {
    animation: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure,
blockquote,
address {
  margin: 0;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 1000;
  background: var(--green-deep);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.eyebrow.light {
  color: #b7e3c3;
}

h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h1 span {
  color: var(--green);
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
}

h3 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: 0.22s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.lang-btn:focus-visible,
.menu-toggle:focus-visible,
.carousel-btn:focus-visible,
.primary-nav a:focus-visible,
.primary-nav button:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-green {
  background: var(--green-deep);
  color: var(--white);
}

.btn-green:hover {
  background: #0a3f24;
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn-outline-dark {
  border-color: #d4d8de;
  color: var(--ink);
  background: var(--white);
}

.btn-ghost,
.btn-light {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}

.btn-light {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--red);
}

.btn-white-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--green-dark);
  font-weight: 700;
}

.text-link:hover {
  color: var(--green);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: var(--white);
}

.site-header.is-stuck .navbar {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.topbar {
  background: var(--green-deep);
  color: #e7f4eb;
  font-size: 12px;
  font-weight: 600;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  white-space: nowrap;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a,
.lang-btn {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.navbar-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 212px;
  height: auto;
  padding: 2px 0;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.primary-nav a,
.primary-nav button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 8px;
  border: 0;
  background: none;
  color: #2a323a;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.has-dropdown > button::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover,
.primary-nav button:hover {
  color: var(--green-dark);
}

.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: var(--green);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.has-dropdown,
.lang-switch {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: flex;
  flex-direction: column;
}

.dropdown-menu[hidden] {
  display: none !important;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  min-height: auto;
}

.dropdown-menu a:hover {
  background: var(--paper);
}

.dropdown-menu--cols:not([hidden]) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 6px;
  min-width: 320px;
  max-width: 380px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}

.dropdown-menu--cols > li:first-child {
  grid-column: 1 / -1;
}

.dropdown-menu--cols > li:first-child a {
  font-weight: 700;
  color: #0a5c32;
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .primary-nav a,
  .primary-nav button {
    font-size: 11.5px;
    padding: 0 5px;
  }

  .navbar-inner {
    gap: 12px;
  }

  .logo img {
    width: 176px;
  }
}

@media (min-width: 1200px) {
  .primary-nav > ul > li.has-dropdown:nth-child(n+4) .dropdown-menu {
    left: auto;
    right: 0;
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-nav-head,
.mobile-nav-brand,
.mobile-nav-contact,
.mobile-nav-cta,
.menu-close {
  display: none;
}

.mobile-nav-label-short {
  display: none;
}

.mobile-nav-label-full {
  display: inline;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 36, 22, 0.62);
  z-index: 180;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fff;
  min-height: 620px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 620px;
  margin: 0;
  padding: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(640px, 54%);
  min-height: 620px;
  padding: 72px 24px 110px var(--page-gutter);
  background: none;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #111;
}

.hero-copy h1 .hero-line-1 {
  display: block;
  white-space: nowrap;
  color: #111;
}

.hero-copy h1 .hero-line-2 {
  display: block;
  color: #0a5c32;
}

.hero-lead {
  max-width: 490px;
  margin: 16px 0 22px;
  color: #3d454d;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero-primary,
.btn-hero-outline {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.btn-hero-primary {
  background: #c4161c;
  color: #fff;
  border-color: #c4161c;
}

.btn-hero-primary:hover {
  background: #a51218;
  border-color: #a51218;
}

.btn-hero-outline {
  background: #fff;
  color: #0a5c32;
  border-color: #0a5c32;
}

.btn-hero-outline:hover {
  background: #f3faf5;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  color: #2f363d;
  font-size: 13px;
  font-weight: 700;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 50%;
  background: #b7bec6;
}

.trust-mark {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1.7px solid #1f9a45;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 5px #1f9a45;
}

.icon-wrap,
.quality-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--green-dark);
}

.icon-wrap svg,
.quality-icon svg,
.carousel-btn svg,
.socials svg {
  width: 100%;
  height: 100%;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 32%;
  z-index: 0;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.88) 12%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 48%;
}

.hero-section--page .hero-breadcrumb {
  margin-bottom: 20px;
}

.hero-section--page .hero-copy {
  padding-top: 36px;
  padding-bottom: 72px;
}

.hero-section--page .hero-copy h1 {
  color: #111;
}

.trust-stats {
  position: relative;
  z-index: 8;
  margin-top: -72px;
  padding: 0 0 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(230, 234, 238, 0.9);
  border-radius: 16px;
  box-shadow:
    0 18px 50px rgba(16, 32, 24, 0.1),
    0 4px 14px rgba(16, 24, 40, 0.05);
  padding: 10px 6px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  text-align: left;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: #e7ebef;
}

.stat-card:not(:last-child) {
  border-right: 0;
}

.stat-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin: 0;
  display: block;
  object-fit: contain;
}

.stat-text {
  min-width: 0;
}

.stat-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
}

.stat-label {
  color: #6b737c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 2px;
}

.about-section,
.categories-section,
.featured-products,
.global-presence,
.testimonials-section {
  padding: 40px 0;
}

.about-section {
  padding-top: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: stretch;
}

.about-media {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 100%;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 460px;
  transform-origin: center;
}

html.js .about-media img {
  transform: scale(1.16);
  filter: saturate(0.92);
}

html.js .about-media.is-visible img {
  transform: scale(1);
  filter: none;
  transition: transform 1.55s cubic-bezier(0.22, 1, 0.36, 1), filter 1.1s ease;
}

.manufacturing-media {
  border-radius: 16px;
  overflow: hidden;
}

.manufacturing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.about-eyebrow {
  color: var(--red);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 span {
  display: block;
  color: #0a5c32;
}

.about-copy p:not(.eyebrow) {
  color: #1a1a1a;
  margin-top: 14px;
}

.btn-about {
  align-self: flex-start;
  margin-top: 22px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: #0a5c32;
  border-color: #0a5c32;
}

.btn-about:hover {
  background: #f3faf5;
}

.hero-lead,
.about-copy p,
.quality-copy p,
.manufacturing-copy p,
.section-head p,
.testimonial-card blockquote p,
.footer-brand p,
.quote-copy p,
.capability-list span,
.quality-points p {
  text-align: justify;
  hyphens: auto;
}

.quality-copy p,
.manufacturing-copy p {
  color: var(--muted);
  margin-top: 12px;
}

.products-head {
  position: relative;
  margin-bottom: 32px;
  text-align: center;
}

.products-head .eyebrow {
  color: var(--red);
  margin-bottom: 10px;
}

.products-head h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #111;
}

.products-head-link {
  position: absolute;
  right: 0;
  bottom: 4px;
  color: #0a5c32;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.products-head-link:hover {
  color: var(--green-dark);
}

.section-head {
  margin-bottom: 24px;
  max-width: 720px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center p {
  color: var(--muted);
  margin-top: 12px;
}

.featured-head {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
}

.featured-head h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.featured-head .carousel-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.category-card,
.product-card,
.country-card {
  background: var(--white);
  border: 1px solid #e6eaee;
  border-radius: 16px;
  transition: 0.25s ease;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-image,
.product-image {
  overflow: hidden;
  background: var(--paper);
}

.category-image {
  height: 148px;
  border-radius: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}

.category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 18px;
  border-top: 1px solid #f1f3f6;
}

.category-meta h3 {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  color: #111;
}

.category-meta span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf8f1;
  border: 1px solid #cfe8d8;
  color: #0a5c32;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.category-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img,
.product-card:hover img {
  transform: scale(1.06);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 230px;
  scroll-snap-align: start;
  padding-bottom: 18px;
}

.product-image {
  height: 190px;
  border-radius: 14px 14px 0 0;
}

.product-category {
  padding: 14px 16px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card h3 {
  padding: 6px 16px 12px;
}

.product-card .btn {
  margin-left: 16px;
}

.mq-section {
  padding: 28px 0 40px;
  background: #fff;
}

.mq-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.mq-green {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #073821;
  color: #fff;
  min-height: 460px;
}

.mq-green-copy {
  position: relative;
  z-index: 2;
  max-width: 72%;
  padding: 36px 28px 32px;
}

.mq-eyebrow {
  color: var(--red) !important;
  letter-spacing: 0.12em;
}

.mq-green h2 {
  font-size: clamp(26px, 2.4vw, 34px);
  margin-bottom: 28px;
}

.mq-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.mq-features img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 10px;
}

.mq-features strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.mq-features span {
  display: block;
  color: #d5eadc;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.btn-mq {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
}

.btn-mq:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mq-green-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
}

.mq-green-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #073821 0%, rgba(7, 56, 33, 0.35) 28%, transparent 55%);
}

.mq-green-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.mq-white {
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 32px 26px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mq-white h2 {
  font-size: clamp(24px, 2.1vw, 32px);
  color: #111;
  margin-bottom: 14px;
}

.mq-white > p {
  color: #222;
  margin: 0 0 auto;
}

.mq-quality-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mq-quality-icons li {
  text-align: center;
}

.mq-quality-icons img {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.mq-quality-icons strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  color: #111;
}

.global-presence {
  background: #fff;
  padding: 20px 0 28px;
}

.global-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 0;
  min-height: 210px;
}

.global-copy {
  position: relative;
  z-index: 2;
  width: min(580px, 52%);
  padding-right: 16px;
  background: linear-gradient(90deg, #fff 78%, rgba(255, 255, 255, 0));
}

.global-map {
  position: absolute;
  top: 12px;
  right: 8px;
  bottom: 12px;
  left: 42%;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: center right;
}

.global-eyebrow {
  color: var(--red);
  margin-bottom: 8px;
}

.global-copy h2 {
  color: #111;
  margin-bottom: 10px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.global-copy h2 span {
  color: #0a5c32;
}

.global-copy p {
  color: #4a525a;
  margin-bottom: 16px;
  max-width: 460px;
}

.global-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.btn-global-primary,
.btn-global-outline {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-global-primary {
  background: #0a5c32;
  color: #fff;
  border-color: #0a5c32;
  border-radius: 999px;
}

.btn-global-primary:hover {
  background: #084a28;
  color: #fff;
}

.btn-global-outline {
  background: #fff;
  color: #0a5c32;
  border-color: #0a5c32;
  border-radius: 999px;
}

.btn-global-outline:hover {
  background: #f3faf5;
}

.countries-panel {
  margin-top: 20px;
  padding: 22px 20px 20px;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  text-align: center;
}

.countries-panel h3 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countries-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  padding: 6px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.countries-marquee-track {
  display: flex;
  width: max-content;
  animation: countries-marquee 38s linear infinite;
  will-change: transform;
}

.countries-marquee:hover .countries-marquee-track {
  animation-play-state: paused;
}

.country-marquee-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding-right: 14px;
}

@keyframes countries-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 118px;
  padding: 16px 14px 14px;
  font-weight: 700;
  font-size: 13px;
  color: #111;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-decoration: none;
}

.country-marquee-row > li {
  flex: 0 0 auto;
}

.country-card:hover {
  transform: translateY(-4px);
  border-color: #c8d4cc;
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.12);
}

.country-card img,
.flag-fallback {
  width: 44px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.btn-countries {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: #0a5c32;
  border-color: #0a5c32;
}

.btn-countries:hover {
  background: #f3faf5;
}

.flag-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: var(--green-soft);
}

.testimonials-section h2 {
  color: #111;
}

.testimonials-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.testimonial-track {
  align-items: stretch;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 240px;
  padding: 22px 20px 18px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  position: relative;
}

.testimonial-card:not(:last-child)::after {
  display: none;
}

.testimonial-body {
  min-width: 0;
  flex: 1;
}

.quote-mark {
  display: block;
  color: #1f9a45;
  font-size: 34px;
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.testimonial-card blockquote {
  color: #222;
  min-height: 72px;
  text-align: left;
}

.testimonial-card blockquote p {
  text-align: left;
}

.cite-name {
  margin-top: 14px;
  font-weight: 800;
  color: #1f9a45;
}

.cite-role {
  color: #111;
  font-size: 13px;
}

.avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  object-fit: cover;
  margin: 6px 0 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #d5dbe1;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: var(--red);
  width: 8px;
  border-radius: 50%;
}

.quote-section {
  background: #fff;
  color: var(--ink);
  padding: 0;
  margin: 0;
  width: 100%;
}

.cta-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  max-width: none;
  background: linear-gradient(105deg, #c4161c 0%, #c4161c 58%, #f7f7f7 78%, #fff 100%);
  min-height: 148px;
  padding: 0 28px 0 var(--page-gutter);
}

.cta-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 148px;
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(220, 220, 220, 0.55);
}

.cta-visual img {
  width: auto;
  height: 148px;
  object-fit: contain;
  background: transparent;
}

.cta-ecg {
  width: 78px;
  height: 28px;
  flex: 0 0 78px;
}

.cta-copy {
  color: #fff;
  min-width: 0;
}

.cta-copy h2 {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.25;
  color: #fff;
}

.cta-copy p {
  margin-top: 8px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
}

.cta-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.btn-cta-outline,
.btn-cta-green {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
}

.btn-cta-outline {
  background: #fff;
  color: #c4161c;
  border-color: #c4161c;
}

.btn-cta-outline:hover {
  background: #fff5f5;
}

.btn-cta-green {
  background: #0a5c32;
  color: #fff;
  border-color: #0a5c32;
}

.btn-cta-green:hover {
  background: #084a28;
}

.site-footer {
  background: var(--green-footer);
  color: #d7e6dc;
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 0.9fr);
  gap: 28px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin: 16px 0 20px;
  font-size: 14px;
}

.site-footer .logo {
  display: inline-block;
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
}

.site-footer .logo img {
  width: 220px;
  height: auto;
  padding: 0;
  background: transparent;
  mix-blend-mode: normal;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-block;
  padding: 4px 0;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 8px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.footer-contact-icon svg {
  width: 24px;
  height: 24px;
}

.footer-contact-item a {
  padding: 0;
  display: inline;
  color: #d7e6dc;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-credit {
  margin: 0;
  flex: 1 1 auto;
  text-align: center;
  color: #d7e6dc;
}

.footer-credit a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: #fff;
}

.footer-bottom ul {
  display: flex;
  gap: 16px;
}

section[id],
#contact {
  scroll-margin-top: 120px;
}

html.js .reveal,
html.js .reveal-stagger > * {
  opacity: 0;
}

html.js .reveal-up {
  transform: translateY(28px);
}

html.js .reveal-left {
  transform: translateX(-32px);
}

html.js .reveal-right {
  transform: translateX(32px);
}

html.js .reveal-scale {
  transform: scale(0.94);
}

html.js .reveal-zoom {
  transform: scale(1.06);
}

html.js .reveal-fade {
  transform: none;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

html.js .reveal-stagger > * {
  transform: translateY(22px) scale(0.97);
}

html.js .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
html.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
html.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
html.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.22s; }
html.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
html.js .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.34s; }
html.js .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.4s; }
html.js .reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.46s; }
html.js .reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.52s; }
html.js .reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.58s; }

html.js .stats-grid .stat-card {
  opacity: 0;
  transform: translateY(20px);
}

html.js .stats-grid.is-visible .stat-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .stats-grid.is-visible .stat-card:nth-child(1) { transition-delay: 0.05s; }
html.js .stats-grid.is-visible .stat-card:nth-child(2) { transition-delay: 0.14s; }
html.js .stats-grid.is-visible .stat-card:nth-child(3) { transition-delay: 0.23s; }
html.js .stats-grid.is-visible .stat-card:nth-child(4) { transition-delay: 0.32s; }

html.js .countries-panel.is-visible .country-card {
  opacity: 1;
  transform: none;
}

html.js .cta-banner .cta-ecg path {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
}

html.js .cta-banner.is-visible .cta-ecg path {
  animation: ecg-draw 1.15s ease 0.28s forwards;
}

@keyframes ecg-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-fade-left {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-fade-zoom {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: none; }
}

html.js .hero-copy .hero-line-1 {
  animation: hero-fade-left 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

html.js .hero-copy .hero-line-2 {
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

html.js .hero-lead {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

html.js .hero-actions {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

html.js .hero-trust {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

html.js .hero-visual img {
  animation: hero-fade-zoom 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@media (max-width: 1440px) {
  :root {
    --container: 1140px;
  }
}

@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card {
    flex-basis: calc((100% - 36px) / 3);
  }

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

@media (max-width: 1199px) {
  :root {
    --header-offset: 96px;
    --page-gutter: 24px;
  }

  body.is-menu-open .site-header {
    z-index: 220;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  }

  body.is-menu-open .menu-toggle {
    z-index: 225;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    z-index: 210;
    border-color: #d8e3dc;
    background: #fff;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
  }

  body.is-menu-open .menu-toggle {
    border-color: #cfe8d8;
    background: #f3faf5;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.6px) rotate(-45deg);
  }

  .navbar-inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 92px;
    gap: 12px;
    padding: 12px 0;
  }

  .navbar-inner::after {
    content: "";
    width: 44px;
  }

  .logo {
    justify-self: center;
    max-width: 100%;
    padding: 4px 0;
  }

  .logo img {
    width: min(188px, 62vw);
    max-width: 100%;
    padding: 8px 0;
  }

  .nav-actions {
    display: none;
  }

  .topbar {
    display: none;
  }

  .topbar-inner {
    white-space: normal;
    flex-wrap: wrap;
  }

  .nav-overlay {
    z-index: 180;
    top: var(--header-offset);
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 36, 22, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-offset) + 10px);
    left: 12px;
    right: 12px;
    bottom: auto;
    width: auto;
    max-width: 360px;
    max-height: calc(100dvh - var(--header-offset) - 20px);
    height: auto;
    background: #fff;
    z-index: 215;
    transform: translateX(calc(-100% - 28px));
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(7, 36, 22, 0.24);
    border: 1px solid rgba(10, 92, 50, 0.08);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav.is-subpanel-open > ul,
  .primary-nav.is-subpanel-open .mobile-nav-cta {
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-nav-subpanel {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }

  .mobile-nav-subpanel[hidden] {
    display: none !important;
  }

  .primary-nav.is-subpanel-open .mobile-nav-subpanel {
    transform: translateX(0);
  }

  .mobile-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 12px 0;
    padding: 0 12px;
    min-height: 42px;
    width: calc(100% - 24px);
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    background: #f8fafb;
    color: #0a5c32;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav-subpanel-title {
    margin: 10px 16px 6px;
    font-size: 15px;
    font-weight: 800;
    color: #1f2933;
  }

  .mobile-nav-subpanel-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 4px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .mobile-nav-subpanel-body a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 13.5px;
    font-weight: 600;
    color: #4a5560;
  }

  .mobile-nav-subpanel-body a:hover {
    background: #edf8f1;
    color: #0a5c32;
    border-color: #cfe8d8;
    box-shadow: inset 4px 0 0 #0a5c32;
  }

  .mobile-nav-head,
  .mobile-nav-brand,
  .mobile-nav-contact {
    display: none;
  }

  .mobile-nav-label-short {
    display: none;
  }

  .mobile-nav-label-full {
    display: inline;
  }

  .menu-close {
    display: none;
  }

  .primary-nav > ul {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 12px 8px;
    gap: 4px;
    overflow-y: auto;
    background: #fff;
    min-height: 0;
  }

  .primary-nav > ul > li {
    min-width: 0;
  }

  .primary-nav > ul > li > a,
  .primary-nav > ul > li > button {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    font-size: 14px;
    font-weight: 700;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    color: #1f2933;
    background: transparent;
    box-shadow: none;
    text-align: left;
  }

  .primary-nav > ul > li > a[aria-current="page"]::after,
  .has-dropdown > button::after {
    display: none;
  }

  .primary-nav > ul > li > a[aria-current="page"] {
    background: transparent;
    color: #1f2933;
    border-color: transparent;
    box-shadow: none;
  }

  @media (hover: hover) {
    .primary-nav > ul > li > a:hover,
    .primary-nav > ul > li > button:hover,
    .primary-nav > ul > li > button[aria-expanded="true"] {
      background: #edf8f1;
      color: #0a5c32;
      border-color: #cfe8d8;
      box-shadow: inset 4px 0 0 #0a5c32;
    }
  }

  .has-dropdown .dropdown-menu {
    display: none !important;
  }

  .has-dropdown .dropdown-menu[hidden] {
    display: none !important;
  }

  .dropdown-menu--cols > li:first-child {
    grid-column: auto;
  }

  .dropdown-menu--cols > li:first-child a {
    color: #4a5560;
    font-weight: 600;
  }

  .has-dropdown .dropdown-menu a {
    min-height: 38px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5560;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid transparent;
  }

  .mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    margin-top: auto;
    padding: 14px 12px 16px;
    background: linear-gradient(180deg, #f8fafb 0%, #f1f5f3 100%);
    border-top: 1px solid #e3e8ee;
  }

  .mobile-nav-cta .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    white-space: nowrap;
  }

  .mobile-nav-cta .btn-primary {
    background: #c4161c;
    color: #fff;
    border: 1.5px solid #c4161c;
  }

  .mobile-nav-cta .btn-primary:hover {
    background: #a51218;
    border-color: #a51218;
    color: #fff;
  }

  .mobile-nav-cta .btn-outline {
    background: #fff;
    color: #0a5c32;
    border: 1.5px solid #0a5c32;
  }

  .mobile-nav-cta .btn-outline:hover {
    background: #f3faf5;
    color: #0a5c32;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero-section,
  .hero-grid,
  .hero-copy {
    min-height: 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 28px var(--page-gutter) 20px;
    order: 1;
  }

  .hero-copy h1,
  .hero-copy h1 .hero-line-1,
  .hero-copy h1 .hero-line-2 {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-visual {
    position: relative;
    left: auto;
    right: auto;
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: 100%;
    margin-inline: auto;
    height: 280px;
    order: 2;
    border-radius: 18px;
    overflow: hidden;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 22%);
  }

  .hero-visual img {
    height: 280px;
    object-position: 70% 42%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px 12px;
  }

  .hero-trust li {
    min-width: 0;
  }

  .hero-trust li:not(:last-child)::after {
    display: none;
  }

  .btn {
    white-space: normal;
    max-width: 100%;
  }

  .trust-stats {
    margin-top: -40px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 18px;
    padding: 8px 4px;
  }

  .stat-card {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 12px 6px;
    gap: 8px;
    min-width: 0;
  }

  .stat-card:nth-child(2n)::after {
    display: block;
  }

  .stat-card:not(:last-child)::after {
    display: block;
    top: 14%;
    bottom: 14%;
  }

  .stat-card:nth-child(-n+2)::before {
    display: none;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .stat-value {
    font-size: 17px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.25;
  }

  .products-head-link {
    position: static;
    display: inline-block;
    margin-top: 12px;
  }

  .featured-head .carousel-controls {
    position: static;
    justify-content: center;
    margin-top: 12px;
    transform: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mq-grid {
    grid-template-columns: 1fr;
  }

  .global-card {
    padding: 18px;
    min-height: 0;
  }

  .global-copy {
    width: 100%;
    background: #fff;
    padding-right: 0;
  }

  .global-actions {
    flex-wrap: wrap;
  }

  .global-map {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 180px;
    margin-top: 12px;
  }

  .world-map {
    height: 180px;
    object-fit: contain;
    object-position: center;
  }

  .mq-green {
    min-height: 0;
  }

  .mq-green-copy {
    max-width: 64%;
  }

  .mq-features {
    grid-template-columns: 1fr 1fr;
  }

  .about-media img,
  .manufacturing-media img {
    min-height: 240px;
  }

  .cta-banner {
    grid-template-columns: auto minmax(0, 1fr) minmax(118px, 34%);
    align-items: center;
    gap: 12px;
    padding: 16px 12px 16px var(--page-gutter);
    min-height: 0;
    background: linear-gradient(105deg, #c4161c 0%, #c4161c 54%, #f3f3f3 74%, #fff 100%);
  }

  .cta-copy,
  .cta-actions {
    min-width: 0;
  }

  .cta-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    align-self: center;
    width: 100%;
    max-width: 156px;
  }

  .cta-visual {
    display: flex;
    align-items: center;
    align-self: center;
    height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0 10px 0 0;
    gap: 0;
  }

  .cta-visual img {
    height: 92px;
    width: auto;
  }

  .cta-ecg {
    display: none;
  }

  .cta-copy {
    padding-right: 4px;
  }

  .cta-copy h2 {
    font-size: clamp(14px, 3.5vw, 18px);
    line-height: 1.25;
    font-weight: 800;
  }

  .cta-copy p {
    margin-top: 6px;
    font-size: clamp(10px, 2.6vw, 12px);
    line-height: 1.45;
    max-width: none;
    color: rgba(255, 255, 255, 0.92);
  }

  .btn-cta-outline,
  .btn-cta-green {
    width: 100%;
    min-height: 36px;
    padding: 0 10px;
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    border-radius: 8px;
  }
  .btn-global-primary,
  .btn-global-outline {
    white-space: normal;
    text-align: center;
  }

  section[id],
  #contact {
    scroll-margin-top: var(--header-offset);
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 18px;
  }

  .topbar {
    display: none;
  }

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

  .nav-actions .btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 999px;
  }

  .hero-copy {
    padding: 22px var(--page-gutter) 16px;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-lead {
    font-size: 15px;
    margin: 12px 0 18px;
    max-width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    padding: 0 12px;
    text-align: center;
  }

  .global-actions .btn {
    width: 100%;
  }

  .hero-visual {
    height: 220px;
    border-radius: 16px;
  }

  .hero-visual img {
    height: 220px;
  }

  .hero-trust {
    font-size: 12px;
  }

  .about-section,
  .categories-section,
  .featured-products,
  .global-presence,
  .testimonials-section {
    padding: 32px 0;
  }

  .about-copy p:not(.eyebrow),
  .hero-lead,
  .mq-white > p {
    text-align: left;
    hyphens: none;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border-color: #dfe5eb;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.09);
  }

  .category-image {
    height: 210px;
    min-height: 210px;
    background: linear-gradient(180deg, #f8fafc 0%, #e9eef3 100%);
  }

  .category-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 22px;
    min-height: auto;
    border-top: 1px solid #eef1f5;
  }

  .category-meta h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
  }

  .category-meta span {
    width: 42px;
    height: 42px;
    font-size: 17px;
    background: var(--green-footer);
    color: #fff;
    border: 0;
    box-shadow: 0 8px 18px rgba(10, 92, 50, 0.22);
  }

  .product-card,
  .testimonial-card {
    flex: 0 0 min(82%, 320px);
    min-width: 0;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .testimonial-card::after {
    display: none;
  }

  .avatar {
    align-self: flex-end;
  }

  .mq-green-copy {
    max-width: 100%;
    padding: 24px 20px 20px;
  }

  .mq-green-photo {
    position: relative;
    width: 100%;
    height: 200px;
  }

  .mq-green-photo::before {
    background: linear-gradient(180deg, #073821 0%, rgba(7, 56, 33, 0.2) 40%, transparent 70%);
  }

  .mq-features,
  .mq-quality-icons {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mq-quality-icons {
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "brand brand"
      "contact contact"
      "company products"
      "business resources";
    gap: 0;
  }

  .footer-brand {
    grid-area: brand;
    padding-bottom: 20px;
  }

  .footer-contact {
    grid-area: contact;
    padding: 18px 0;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }

  .footer-grid > nav[aria-label="Company"] {
    grid-area: company;
    padding: 18px 10px 18px 0;
    border-bottom: 3px solid #fff;
  }

  .footer-grid > nav[aria-label="Products"] {
    grid-area: products;
    padding: 18px 0 18px 10px;
    border-bottom: 3px solid #fff;
  }

  .footer-grid > nav[aria-label="Business"] {
    grid-area: business;
    padding: 18px 10px 18px 0;
    border-bottom: 3px solid #fff;
  }

  .footer-grid > nav[aria-label="Resources"] {
    grid-area: resources;
    padding: 18px 0 18px 10px;
    border-bottom: 3px solid #fff;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-inner > p {
    width: 100%;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
    flex-basis: auto;
    width: 100%;
  }

  .footer-bottom ul {
    justify-content: center;
  }

  .site-footer .logo img {
    width: 180px;
  }

  .cta-banner {
    grid-template-columns: auto minmax(0, 1fr) minmax(108px, 36%);
    gap: 10px;
    padding: 14px 10px 14px var(--page-gutter);
  }

  .cta-visual img {
    height: 80px;
  }

  .cta-copy h2 {
    font-size: 13px;
  }

  .cta-copy p {
    font-size: 10px;
    margin-top: 4px;
  }

  .cta-actions {
    max-width: 132px;
    gap: 7px;
  }

  .btn-cta-outline,
  .btn-cta-green {
    min-height: 32px;
    padding: 0 8px;
    font-size: 9px;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 16px;
  }

  .navbar-inner {
    min-height: 56px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .trust-stats {
    margin-top: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 16px;
    padding: 8px 2px;
  }

  .stat-card {
    padding: 10px 4px;
    gap: 6px;
  }

  .stat-card:not(:last-child)::after {
    display: block;
    top: 12%;
    bottom: 12%;
  }

  .stat-card:not(:last-child)::before {
    display: none;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .stat-value {
    font-size: 15px;
  }

  .stat-label {
    font-size: 10px;
  }

  .product-card,
  .testimonial-card {
    flex-basis: 88%;
  }

  .mq-features,
  .mq-quality-icons {
    grid-template-columns: 1fr 1fr;
  }

  .mq-white {
    padding: 22px 16px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "contact contact"
      "company products"
      "business resources";
  }

  .footer-bottom-inner,
  .countries-head {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .countries-head {
    align-items: flex-start;
  }

  .footer-bottom-inner {
    padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
    align-items: center;
    text-align: center;
  }

  .footer-bottom ul {
    flex-wrap: wrap;
  }

  .cta-copy p {
    max-width: none;
  }

  .category-card {
    border-radius: 22px;
  }

  .category-image {
    height: 228px;
    min-height: 228px;
  }

  .category-meta {
    padding: 22px 20px 24px;
  }

  .category-meta h3 {
    font-size: 19px;
  }

  .category-meta span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (hover: none) {
  .btn:hover,
  .category-card:hover,
  .product-card:hover {
    transform: none;
  }

  .category-card:hover img,
  .product-card:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .countries-marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .country-marquee-row {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .countries-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .countries-marquee-track .country-marquee-row[aria-hidden="true"] {
    display: none;
  }

  html.js .reveal,
  html.js .reveal.is-visible,
  html.js .reveal-stagger > *,
  html.js .reveal-stagger.is-visible > *,
  html.js .stats-grid .stat-card,
  html.js .stats-grid.is-visible .stat-card,
  html.js .countries-panel .country-card,
  html.js .countries-panel.is-visible .country-card,
  .countries-marquee-track,
  html.js .hero-copy .hero-line-1,
  html.js .hero-copy .hero-line-2,
  html.js .hero-lead,
  html.js .hero-actions,
  html.js .hero-trust,
  html.js .about-media img,
  html.js .about-media.is-visible img,
  html.js .cta-banner .cta-ecg path,
  .category-card,
  .product-card,
  .btn,
  img {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
  }
}

/* =========================================================
   About Page — Professional Inner Layout
   ========================================================= */

.about-page .about-copy p,
.about-page .about-process-head p:not(.eyebrow),
.about-page .about-audience-card p,
.about-page .about-quality-item > span:last-child,
.about-page .about-value-card p,
.about-page .global-copy p,
.about-page .faq-answer p,
.about-page .cta-copy p {
  text-align: justify;
  hyphens: auto;
}

.about-page .section-head.center,
.about-page .section-head.center .eyebrow,
.about-page .section-head.center h2,
.about-page .section-head.center p {
  text-align: center;
  hyphens: none;
}

.about-page .about-intro-section {
  padding: 32px 0;
}

.about-page .categories-section,
.about-page .about-process-section,
.about-page .about-portfolio-section,
.about-page .about-quality-section,
.about-page .about-global-section.global-presence,
.about-page .about-audience-section,
.about-page .about-values-section,
.about-page .about-faq-section {
  padding: 28px 0;
}

.about-page .about-process-head {
  margin: 0 auto 20px;
  text-align: center;
}

.about-page .about-process-head .eyebrow {
  text-align: center;
  hyphens: none;
}

.about-page .about-values-grid {
  margin-top: 16px;
}

.about-page .faq-list {
  margin-top: 16px;
}

.about-page main .section-head {
  margin-bottom: 12px;
}

.about-page .quote-section {
  padding: 0;
  margin: 0;
}

.company-dual-link-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fcf9 0%, #fff 100%);
}

.company-dual-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 36px auto 0;
}

.company-dual-link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.company-dual-link-card:hover {
  transform: translateY(-4px);
  border-color: #cfe8d8;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.company-dual-link-card .about-icon-ring {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.company-dual-link-card .about-icon-ring img {
  width: 30px;
  height: 30px;
}

.company-dual-link-body {
  flex: 1;
  width: 100%;
}

.company-dual-link-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  color: #111;
}

.company-dual-link-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #5c6570;
}

.company-dual-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

/* Partnership pages */

.partnership-contact-cta {
  padding: 72px 0;
}

.partnership-contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  background: linear-gradient(180deg, #f8fcf9 0%, #fff 100%);
  border: 1px solid #e6eaee;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}

.partnership-contact-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  color: #111;
}

.partnership-contact-card p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #5c6570;
}

.partnership-opportunity-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.partnership-opportunity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.partnership-opportunities-grid {
  gap: 20px;
  margin-top: 36px;
}

.partnership-explore-section {
  padding-bottom: 72px;
}

@media (max-width: 768px) {
  .partnership-contact-card {
    padding: 36px 24px;
  }
}

.about-audience-grid.about-partnership-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.about-partnership-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-partnership-card .btn {
  margin-top: auto;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .about-audience-grid.about-partnership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .company-dual-link-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .about-audience-grid.about-partnership-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* Hero */

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 56, 33, 0.72) 0%, rgba(7, 56, 33, 0.88) 55%, rgba(7, 56, 33, 0.95) 100%),
    linear-gradient(90deg, rgba(7, 56, 33, 0.92) 0%, rgba(7, 56, 33, 0.55) 55%, rgba(7, 56, 33, 0.35) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px 0 56px;
}

.about-hero-breadcrumb {
  margin-bottom: 28px;
}

.about-hero-breadcrumb .page-breadcrumb-list a {
  color: rgba(255, 255, 255, 0.82);
}

.about-hero-breadcrumb .page-breadcrumb-list a:hover {
  color: #fff;
}

.about-hero-breadcrumb .page-breadcrumb-list li + li::before {
  color: rgba(255, 255, 255, 0.45);
}

.about-hero-breadcrumb .page-breadcrumb-list [aria-current="page"] {
  color: #fff;
}

.about-hero-content {
  max-width: 760px;
}

.about-hero-eyebrow {
  color: #8fd4a4;
  margin-bottom: 12px;
}

.about-hero-content h1 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff;
}

.about-hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-hero-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.about-hero-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Stats strip */

.about-stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  padding-bottom: 8px;
}

.about-page .about-stats-strip {
  z-index: 8;
  margin-top: -72px;
  padding: 0 0 28px;
}

.about-stats-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  box-shadow:
    0 18px 50px rgba(16, 32, 24, 0.1),
    0 4px 14px rgba(16, 24, 40, 0.05);
  overflow: hidden;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid #eef1f4;
}

.about-stat:last-child {
  border-right: none;
}

.about-stat strong {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0a5c32;
}

.about-stat span {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #5c6570;
}

/* Shared icon ring */

.about-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f0faf4 0%, #e4f4ea 100%);
  border: 1px solid #d4ebdc;
  flex-shrink: 0;
}

.about-icon-ring img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Intro */

.about-intro-section {
  padding: 64px 0 72px;
}

.about-page .about-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6eaee;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.about-page .about-copy h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.about-grid-reverse {
  direction: rtl;
}

.about-grid-reverse > * {
  direction: ltr;
}

/* Process */

.about-process-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.about-process-head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-process-head h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.about-process-head p {
  color: #3d454d;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.7;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

.about-process-step {
  position: relative;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 24px 18px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.about-step-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0a5c32;
  opacity: 0.55;
}

.about-step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f0faf4 0%, #e4f4ea 100%);
  border: 1px solid #d4ebdc;
}

.about-process-icon {
  width: 32px;
  height: 32px;
  margin: 0;
  object-fit: contain;
}

.about-process-step strong {
  display: block;
  font-size: 14px;
  color: #111;
  margin-bottom: 8px;
}

.about-process-step span.about-step-text {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: #5c6570;
}

.about-process-visual {
  margin-top: 36px;
  width: 100%;
  overflow: hidden;
}

.about-process-visual img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* Portfolio */

.about-portfolio-section {
  padding: 72px 0;
}

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

.about-portfolio-grid .product-card {
  padding: 16px;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-portfolio-grid .product-card:hover {
  transform: translateY(-4px);
}

.about-portfolio-grid .product-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.about-portfolio-grid .product-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.about-portfolio-grid .product-card:hover .product-image img {
  transform: scale(1.04);
}

.about-portfolio-grid h3 {
  font-size: 15px;
  line-height: 1.4;
  margin: 8px 0 0;
  color: #111;
}

.about-portfolio-grid .product-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a5c32;
  margin: 0;
}

/* Quality */

.about-quality-section {
  padding: 72px 0;
  background: #fff;
}

.about-quality-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.about-quality-item {
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 26px 18px 22px;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-quality-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.about-quality-item .about-icon-ring {
  margin: 0 auto 14px;
}

.about-quality-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #111;
}

.about-quality-item > span:last-child {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #5c6570;
}

/* Global */

.about-global-section {
  padding: 72px 0;
}

.about-regions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-region {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  border: 1px solid #e6eaee;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-region:hover {
  transform: translateY(-4px);
  border-color: #b8dcc8;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.1);
}

.about-region-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 14px;
  background: linear-gradient(90deg, rgba(10, 92, 50, 0.09) 0%, rgba(10, 92, 50, 0.02) 100%);
  border-bottom: 1px solid #e8edf0;
}

.about-region h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a5c32;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.about-region-count {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c6570;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e6eaee;
}

.about-region ul,
.about-region-list {
  list-style: none;
  margin: 0;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.about-region li {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.about-region-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e6eaee;
  font-size: 13px;
  font-weight: 600;
  color: #2f363d;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-region-link img {
  flex: 0 0 auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(16, 24, 40, 0.12);
}

.about-region-link span {
  flex: 1;
}

.about-region-link::after {
  content: "→";
  font-size: 12px;
  color: #9aa3ad;
  transition: transform 0.2s ease, color 0.2s ease;
}

.about-region a {
  color: inherit;
  text-decoration: none;
}

.about-region-link:hover,
.about-region a:hover {
  background: #edf7f0;
  border-color: #b8dcc8;
  color: #0a5c32;
  transform: translateX(2px);
}

.about-region-link:hover::after,
.about-region a:hover::after {
  color: #0a5c32;
  transform: translateX(2px);
}

/* Audience */

.about-audience-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

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

.about-audience-card {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.about-audience-card .about-icon-ring {
  margin-bottom: 14px;
}

.about-audience-card h3 {
  font-size: 15px;
  line-height: 1.4;
  color: #111;
  margin: 0 0 8px;
}

.about-audience-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
  margin: 0;
}

/* Values */

.about-values-section {
  padding: 72px 0;
}

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

.about-value-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 22px 20px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.about-value-card h3 {
  font-size: 15px;
  margin: 0 0 6px;
  color: #111;
  line-height: 1.35;
}

.about-value-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
  margin: 0;
}

.about-section-cta {
  margin-top: 36px;
  text-align: center;
}

.about-page .categories-section {
  padding: 72px 0;
  background: #fff;
}

.about-page .section-head h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.025em;
}

@media (max-width: 1199px) {
  .about-stats-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat:nth-child(2) {
    border-right: none;
  }

  .about-stat:nth-child(1),
  .about-stat:nth-child(2) {
    border-bottom: 1px solid #eef1f4;
  }

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

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

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

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

  .about-audience-grid,
  .about-audience-grid--cols-3,
  .about-audience-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-process--six,
  .about-process--five,
  .about-process--four,
  .about-process--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .about-hero {
    min-height: 0;
  }

  .about-hero-inner {
    padding: 20px 0 40px;
  }

  .about-hero-content h1 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .about-hero-lead {
    font-size: 15px;
  }

  .about-stats-strip {
    margin-top: -24px;
  }

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

  .about-stat {
    border-right: none;
    border-bottom: 1px solid #eef1f4;
    padding: 20px 16px;
  }

  .about-stat:last-child {
    border-bottom: none;
  }

  .about-intro-section,
  .about-process-section,
  .about-portfolio-section,
  .about-quality-section,
  .about-global-section,
  .about-audience-section,
  .about-values-section,
  .about-page .categories-section {
    padding: 24px 0;
  }

  .about-grid,
  .about-grid-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .about-page .about-media img {
    min-height: 280px;
  }

  .about-process,
  .about-process--six {
    grid-template-columns: 1fr;
  }

  .about-portfolio-grid,
  .about-quality-grid,
  .about-audience-grid,
  .about-audience-grid--cols-3,
  .about-audience-grid--cols-2,
  .about-values-grid,
  .about-regions {
    grid-template-columns: 1fr;
  }

  .about-process--six,
  .about-process--five,
  .about-process--four,
  .about-process--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-actions .btn {
    justify-content: center;
  }
}

/* Page breadcrumb + FAQ (SEO inner pages) */

.page-breadcrumb {
  padding: 14px 0 0;
  background: #fff;
}

.page-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: #5c6570;
}

.page-breadcrumb-list a {
  color: #0a5c32;
}

.page-breadcrumb-list a:hover {
  color: var(--green-dark);
}

.page-breadcrumb-list li + li::before {
  content: "/";
  margin-right: 8px;
  color: #b0b8c0;
  font-weight: 500;
}

.page-breadcrumb-list [aria-current="page"] {
  color: #1f2933;
}

.about-copy a {
  color: #0a5c32;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-copy a:hover {
  color: var(--green-dark);
}

.about-faq-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.faq-list {
  max-width: 860px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: #cfe8d8;
}

.faq-item[open] {
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.07);
  border-color: #b8dfc8;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  position: relative;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: #0a5c32;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #edf8f1;
  color: #0a5c32;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #3d454d;
}

.faq-answer a {
  color: #0a5c32;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--green-dark);
}

.global-copy a:not(.btn) {
  color: #0a5c32;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.global-copy a:not(.btn):hover {
  color: var(--green-dark);
}

.global-copy .btn-global-primary {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(10, 92, 50, 0.22);
}

.global-copy .btn-global-primary:hover {
  color: #fff;
  background: #084a28;
}

.global-copy .btn-global-outline {
  color: #0a5c32;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.global-copy .btn-global-outline:hover {
  color: #0a5c32;
  background: #f3faf5;
}

.section-head a {
  color: #0a5c32;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-head a:hover {
  color: var(--green-dark);
}

/* =========================================================
   Product Page — Master Template
   ========================================================= */

.product-page .product-breadcrumb {
  padding: 12px 0 0;
  background: #fff;
}

.product-page .section-head p,
.product-page .product-intro-copy p,
.product-page .product-mfg-head p,
.product-page .product-feature-card p,
.product-page .product-app-card p,
.product-page .product-why-card p {
  text-align: left;
  hyphens: none;
}

/* Hero */

.product-hero {
  padding: 20px 0 36px;
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.product-hero-eyebrow {
  color: var(--red);
  margin-bottom: 12px;
}

.product-hero-copy h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #111;
}

.product-hero-lead {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  color: #3d454d;
  max-width: 520px;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.product-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #2f363d;
}

.product-hero-visual {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6eaee;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.1);
}

.product-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Intro */

.product-intro-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.product-intro-media {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6eaee;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.1);
}

.product-intro-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-intro-media-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(8px);
}

.product-intro-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8490;
}

.product-intro-media-badge strong {
  font-size: 15px;
  line-height: 1.3;
  color: #111;
}

.product-intro-main h2 {
  margin: 6px 0 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #111;
}

.product-intro-copy {
  max-width: none;
  margin: 0 0 16px;
}

.product-intro-copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: #3d454d;
}

.product-intro-copy p:last-child {
  margin-bottom: 0;
}

.product-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.product-intro-actions .btn-hero-primary,
.product-intro-actions .product-intro-btn-secondary {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.product-intro-btn-secondary {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.product-intro-supply-strip {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-intro-supply-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.product-intro-supply-item img {
  flex-shrink: 0;
}

.product-intro-supply-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.3;
  color: #111;
}

.product-intro-supply-item span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: #5c6570;
}

/* Highlights */

.product-highlights-section {
  padding: 40px 0;
  background: #f4f7f9;
}

.product-highlights-panel {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 20px;
  padding: 28px;
  box-shadow:
    0 18px 48px rgba(16, 24, 40, 0.06),
    0 4px 14px rgba(16, 24, 40, 0.03);
}

.product-highlights-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.product-highlights-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafb 0%, #f1f5f8 100%);
  border: 1px solid #eef2f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-highlights-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-highlights-eyebrow {
  color: #0a5c32;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.product-highlights-copy h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #111;
  font-weight: 800;
}

.product-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-highlight-item:hover {
  border-color: #d4e8dc;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  transform: translateY(-1px);
}

.product-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.product-highlight-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.product-highlight-icon.is-green {
  background: #edf8f1;
  border: 1px solid #cfe8d8;
}

.product-highlight-icon.is-blue {
  background: #edf4fc;
  border: 1px solid #cfe0f5;
}

.product-highlight-icon.is-coral {
  background: #fdf0ef;
  border: 1px solid #f5d4d2;
}

.product-highlight-icon.is-teal {
  background: #edf8f7;
  border: 1px solid #cceae8;
}

.product-highlight-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.35;
}

.product-highlight-content span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
}

.product-highlights-cta {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  font-weight: 700;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
}

/* Features */

.product-features-section {
  padding: 56px 0;
  background: #fff;
}

.product-features-section .section-head.center,
.product-features-section .section-head.center .eyebrow,
.product-features-section .section-head.center h2,
.product-features-section .section-head.center p {
  text-align: center;
}

.product-applications-section .section-head.center,
.product-applications-section .section-head.center .eyebrow,
.product-applications-section .section-head.center h2,
.product-applications-section .section-head.center p {
  text-align: center;
}

.product-specs-section .section-head.center,
.product-specs-section .section-head.center .eyebrow,
.product-specs-section .section-head.center h2,
.product-specs-section .section-head.center p {
  text-align: center;
}

.product-why-section .section-head.center,
.product-why-section .section-head.center .eyebrow,
.product-why-section .section-head.center h2,
.product-why-section .section-head.center p {
  text-align: center;
}

.product-faq-section .section-head.center,
.product-faq-section .section-head.center .eyebrow,
.product-faq-section .section-head.center h2,
.product-faq-section .section-head.center p {
  text-align: center;
}

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

.product-feature-card {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
}

.product-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.product-feature-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}

.product-feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.product-feature-card .about-icon-ring {
  display: none;
}

.product-feature-card h3 {
  font-size: 15px;
  line-height: 1.35;
  color: #111;
  margin: 0 0 8px;
}

.product-feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
  margin: 0;
}

/* Applications */

.product-applications-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.product-applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.product-app-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 20px 16px 16px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-app-card:hover {
  transform: translateY(-3px);
  border-color: #cfe8d8;
}

.product-app-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0a5c32;
  opacity: 0.6;
  margin-bottom: 10px;
}

.product-app-card h3 {
  font-size: 16px;
  color: #111;
  margin: 0 0 8px;
}

.product-app-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
  margin: 0;
}

/* Specifications */

.product-specs-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(42, 164, 74, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #f3f8f5 0%, #fafcfb 45%, #ffffff 100%);
  overflow: hidden;
}

.product-specs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(10, 92, 50, 0.04) 0%, transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(42, 164, 74, 0.05) 0%, transparent 32%);
  pointer-events: none;
}

.product-specs-section .container {
  position: relative;
  z-index: 1;
}

.product-specs-section .section-head.center h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  color: #0f172a;
}

.product-specs-section .section-head.center p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.product-specs-card {
  position: relative;
  max-width: 760px;
  margin: 44px auto 0;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdfc 100%);
  border: 1px solid rgba(10, 92, 50, 0.1);
  border-radius: 24px;
  box-shadow:
    0 2px 4px rgba(16, 24, 40, 0.03),
    0 24px 64px rgba(10, 92, 50, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.product-specs-card-top {
  height: 4px;
  background: linear-gradient(90deg, #0a5c32 0%, #2aa44a 50%, #5ecf7a 100%);
}

.product-specs-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 32px 8px;
  border-bottom: 1px solid rgba(10, 92, 50, 0.06);
}

.product-specs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8f6ec 0%, #f0faf4 100%);
  border: 1px solid rgba(10, 92, 50, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a5c32;
}

.product-specs-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2aa44a;
  box-shadow: 0 0 0 4px rgba(42, 164, 74, 0.18);
}

.product-specs-meta {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: -0.01em;
}

.product-specs-list {
  margin: 0;
  padding: 8px 0 4px;
}

.product-spec-item {
  display: grid;
  grid-template-columns: minmax(160px, 34%) 1fr;
  gap: 16px 32px;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-spec-item:nth-child(even) {
  background: linear-gradient(90deg, rgba(248, 252, 249, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.product-spec-item:last-child {
  border-bottom: none;
}

.product-spec-item:hover {
  background: linear-gradient(90deg, rgba(232, 246, 236, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(2px);
}

.product-spec-item dt {
  position: relative;
  margin: 0;
  padding-left: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.4;
}

.product-spec-item dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2aa44a 0%, #0a5c32 100%);
}

.product-spec-item dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.product-specs-foot {
  padding: 22px 32px 26px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbf8 0%, #f1f7f3 100%);
  border-top: 1px solid rgba(10, 92, 50, 0.08);
}

.product-specs-note {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

.product-specs-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a5c32 0%, #1e8a3a 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 92, 50, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-specs-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(10, 92, 50, 0.28);
  color: #fff;
}

/* Legacy table fallback */
.product-specs-wrap {
  max-width: 680px;
  margin: 36px auto 0;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(16, 24, 40, 0.07);
}

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

.product-specs-table th,
.product-specs-table td {
  padding: 18px 32px;
  text-align: left;
  border-bottom: 1px solid #f0f2f5;
  font-size: 14px;
  line-height: 1.5;
}

.product-specs-table tr:last-child th,
.product-specs-table tr:last-child td {
  border-bottom: none;
}

.product-specs-table th {
  width: 36%;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  background: transparent;
}

.product-specs-table td {
  font-weight: 600;
  color: #111827;
  background: #fff;
}

.spec-placeholder {
  color: #8a939c;
  font-style: italic;
}

/* Why Zitcomed */

.product-why-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.product-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.product-why-card {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-why-card:hover {
  transform: translateY(-3px);
  border-color: #cfe8d8;
}

.product-why-num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0a5c32;
  opacity: 0.55;
  margin-bottom: 10px;
}

.product-why-card h3 {
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  margin: 0 0 8px;
}

.product-why-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #5c6570;
  margin: 0;
}

/* Manufacturing */

.product-mfg-section {
  padding: 72px 0;
  background: #fff;
}

.product-mfg-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.product-mfg-head h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  color: #111;
  margin: 8px 0 12px;
}

.product-mfg-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d454d;
  margin: 0;
}

.product-mfg-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-mfg-step {
  position: relative;
  background: #f8fafb;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 22px 14px 18px;
  text-align: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.product-mfg-step:hover {
  background: #fff;
  border-color: #cfe8d8;
}

.product-mfg-step .about-step-num {
  position: static;
  display: block;
  margin-bottom: 10px;
  opacity: 0.55;
}

.product-mfg-step strong {
  display: block;
  font-size: 13px;
  color: #111;
  margin-bottom: 6px;
}

.product-mfg-step .about-step-text {
  font-size: 12px;
  line-height: 1.5;
  color: #5c6570;
}

.product-mfg-visual {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6eaee;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.product-mfg-visual img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

/* B2B Bulk */

.product-bulk-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #073821 0%, #0a5c32 100%);
}

.product-bulk-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.product-bulk-copy .eyebrow.light {
  color: #8fd4a4;
}

.product-bulk-copy h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 10px 0 14px;
}

.product-bulk-copy > p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 24px;
}

.product-bulk-buyers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.product-bulk-buyers li {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.product-bulk-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.product-bulk-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Related Products */

.product-related-section {
  padding: 48px 0 56px;
  background: #fff;
}

.product-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.product-related-head .products-head-title {
  flex: 1 1 auto;
  min-width: 0;
}

.product-related-head .products-head-title h2 {
  margin-inline: 0;
  text-align: left;
}

.product-related-head .products-head-intro {
  max-width: 640px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.product-related-head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.product-related-head .products-head-link {
  position: static;
}

.product-related-carousel {
  margin-top: 4px;
}

.product-related-carousel .carousel-track {
  gap: 18px;
  padding-bottom: 8px;
}

.product-related-carousel .product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 240px;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.product-related-carousel .product-card:hover {
  transform: translateY(-4px);
  border-color: #cfe8d8;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.1);
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

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

.product-related-card h3 {
  font-size: 15px;
  line-height: 1.4;
  margin: 8px 16px 16px;
  color: #111;
}

.product-related-card .product-category {
  padding: 14px 16px 0;
}

.product-related-card .product-image {
  height: 190px;
  border-radius: 0;
  overflow: hidden;
}

.product-related-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-related-card:hover .product-image img {
  transform: scale(1.04);
}

.product-quote-section {
  padding: 0;
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1199px) {
  .product-hero-grid {
    gap: 36px;
  }

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

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

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

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

  .product-related-carousel .product-card {
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: 220px;
  }

  .product-related-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-related-head-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 16px 0 28px;
  }

  .product-hero-grid,
  .product-highlights-grid,
  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-highlights-panel {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .product-highlights-media {
    order: -1;
  }

  .product-intro-media {
    order: -1;
  }

  .product-intro-section .product-overview-cards,
  .product-intro-supply-strip {
    grid-template-columns: 1fr;
  }

  .product-hero-visual {
    order: -1;
  }

  .product-intro-section,
  .product-highlights-section,
  .product-features-section,
  .product-applications-section,
  .product-specs-section,
  .product-why-section,
  .product-mfg-section,
  .product-bulk-section,
  .product-related-section {
    padding: 32px 0;
  }

  .product-features-grid,
  .product-applications-grid,
  .product-why-grid,
  .product-mfg-process,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

  .product-spec-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 20px;
  }

  .product-specs-card-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px 8px;
  }

  .product-specs-foot {
    padding: 18px 20px 22px;
  }

  .product-specs-note {
    margin-bottom: 12px;
  }

  .product-specs-table th,
  .product-specs-table td {
    display: block;
    width: 100%;
    padding: 14px 20px;
  }

  .product-specs-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .product-bulk-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-bulk-actions .btn {
    justify-content: center;
  }

  .product-page .about-faq-section {
    padding: 32px 0;
  }

  .product-page .product-quote-section {
    padding: 24px 0 0;
  }
}

@media (max-width: 480px) {
  .product-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Product FAQ + Products Hub */
.product-faq-section {
  padding-top: 0;
}

.product-hub-hero {
  padding-bottom: 48px;
}

.product-hub-section {
  padding: 56px 0;
}

.product-hub-section:nth-child(even) {
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.product-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.product-hub-card h3 {
  font-size: 16px;
}

a.product-hub-card {
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.resource-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.resource-download-card {
  background: var(--white);
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.resource-download-category {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.resource-download-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.resource-download-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.resource-download-status {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f3f7f5;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.resource-download-btn {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .resource-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .product-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-hub-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Product Page V2 — Mockup Layout
   ========================================================= */

.product-page-v2 .product-breadcrumb--inline {
  padding: 0 0 20px;
  background: transparent;
}

.product-page-v2 .page-breadcrumb-list {
  font-size: 13px;
}

.product-hero-v2 {
  padding: 24px 0 40px;
  background: linear-gradient(180deg, #fff 0%, #f5f8f7 100%);
}

.product-hero-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.product-hero-v2-copy h1 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0a5c32;
}

.product-hero-features {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.product-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #2f363d;
}

.product-hero-feature img {
  flex-shrink: 0;
}

.product-hero-v2-visual {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6eaee;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
}

.product-hero-v2-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d7e8df;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  font-size: 11px;
  line-height: 1.3;
  color: #3d454d;
}

.product-hero-badge strong {
  display: block;
  font-size: 12px;
  color: #0a5c32;
}

.product-subnav {
  position: sticky;
  top: var(--header-offset, 72px);
  z-index: 40;
  background: #fff;
  border-top: 1px solid #e6eaee;
  border-bottom: 1px solid #e6eaee;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.04);
}

.product-subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-subnav-list::-webkit-scrollbar {
  display: none;
}

.product-subnav-list a {
  display: block;
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #5c6570;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.product-subnav-list a:hover,
.product-subnav-list a.is-active {
  color: #0a5c32;
  border-bottom-color: #0a5c32;
}

.product-overview-v2 {
  padding: 64px 0;
  background: #fff;
}

.product-overview-v2 .section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.product-overview-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-overview-card {
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.product-overview-card h3 {
  margin: 14px 0 8px;
  font-size: 14px;
  line-height: 1.35;
  color: #111;
}

.product-overview-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #5c6570;
}

.product-specs-variants {
  padding: 64px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.product-specs-variants-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.product-specs-panel,
.product-variants-panel {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.product-variants-panel h2 {
  margin: 8px 0 20px;
  font-size: clamp(22px, 2.2vw, 28px);
  color: #111;
}

.product-variants-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.product-variant-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e6eaee;
  border-radius: 12px;
  background: #fafbfc;
  color: #111;
  font-weight: 700;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-variant-card:hover {
  border-color: #b8dfc8;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}

.product-variant-card img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
}

.product-applications-v2 {
  padding: 64px 0;
  background: #fff;
}

.product-app-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.product-app-icon-card {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid #e6eaee;
  border-radius: 14px;
  background: #fff;
}

.product-app-icon-card .about-icon-ring {
  margin: 0 auto 12px;
}

.product-app-icon-card h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #111;
}

.product-bottom-grid {
  padding: 64px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.product-bottom-grid-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-why-panel,
.product-faq-panel,
.product-enquiry-panel {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.product-why-panel h2,
.product-faq-panel h2,
.product-enquiry-panel h2 {
  margin: 8px 0 14px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: #111;
}

.product-why-checklist {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-why-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.5;
  color: #3d454d;
  font-weight: 600;
}

.product-why-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0a5c32;
  font-weight: 800;
}

.product-why-thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6eaee;
}

.product-why-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-faq-compact {
  margin-top: 8px;
}

.product-faq-compact .faq-item summary {
  padding: 14px 44px 14px 14px;
  font-size: 13px;
}

.product-faq-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #0a5c32;
}

.product-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-enquiry-form label span {
  font-size: 12px;
  font-weight: 700;
  color: #3d454d;
}

.product-enquiry-form input,
.product-enquiry-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d7dde3;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  color: #111;
  background: #fff;
}

.product-enquiry-form input:focus,
.product-enquiry-form textarea:focus {
  outline: 2px solid rgba(10, 92, 50, 0.2);
  border-color: #0a5c32;
}

.product-enquiry-form .btn {
  margin-top: 4px;
  justify-content: center;
}

.product-countries-section {
  padding: 64px 0;
  background: #fff;
}

.product-countries-grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 1px solid #e6eaee;
  border-radius: 12px;
  background: #fafbfc;
  font-size: 13px;
  font-weight: 700;
  color: #2f363d;
}

.product-countries-more {
  text-align: center;
  margin: 20px 0 0;
}

.product-countries-more a {
  font-size: 14px;
  font-weight: 700;
  color: #0a5c32;
}

.product-prefooter-cta {
  padding: 0 0 64px;
  background: #fff;
}

.product-prefooter-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a5c32 0%, #084a28 100%);
  color: #fff;
}

.product-prefooter-cta-inner h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: #fff;
  max-width: 560px;
}

.product-prefooter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.product-prefooter-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.product-prefooter-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 1200px) {
  .product-intro-section .product-overview-cards,
  .product-overview-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .product-bottom-grid-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .product-intro-supply-strip {
    grid-template-columns: 1fr;
  }

  .product-hero-v2-grid,
  .product-specs-variants-grid {
    grid-template-columns: 1fr;
  }

  .product-intro-section .product-overview-cards,
  .product-overview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-prefooter-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .product-hero-features {
    grid-template-columns: 1fr;
  }

  .product-overview-cards,
  .product-app-icons-grid,
  .product-countries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-subnav-list a {
    padding: 14px 10px;
    font-size: 12px;
  }
}

/* Product page — homepage-aligned helpers */
.product-page .trust-stats {
  margin-top: -40px;
  padding: 0 0 16px;
}

.product-page .mq-section {
  padding: 20px 0 28px;
}

.product-page .global-presence {
  padding: 12px 0 20px;
}

.product-page .about-faq-section {
  padding: 40px 0;
}

.product-page .section-head {
  margin-bottom: 16px;
}

.product-page .section-head.center p {
  margin-top: 8px;
}

.product-page .faq-list {
  margin-top: 20px;
  gap: 10px;
}

.product-page .countries-panel {
  margin-top: 14px;
  padding: 18px 16px 16px;
}

.product-page .countries-panel h3 {
  margin-bottom: 14px;
}

.product-hero-trust-list {
  margin-top: 18px;
}

.product-page .product-bulk-buyers--inline {
  margin: 14px 0;
}

.product-bulk-buyers--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.product-bulk-buyers--inline li {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5f7f9;
  border: 1px solid #e6eaee;
  font-size: 13px;
  font-weight: 700;
  color: #2f363d;
}

.product-related-section .products-head {
  margin-bottom: 18px;
}

.mq-white .product-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Contact page */

.contact-page main p:not(.eyebrow):not(.hero-lead),
.contact-page .about-copy p,
.contact-page .contact-info-card p,
.contact-page .contact-info-card address,
.contact-page .contact-option-card p,
.contact-page .about-quality-item > span:last-child,
.contact-page .global-copy p,
.contact-page .faq-answer p,
.contact-page .cta-copy p {
  text-align: justify;
  hyphens: auto;
}

.contact-page .section-head.center,
.contact-page .section-head.center .eyebrow,
.contact-page .section-head.center h2,
.contact-page .section-head.center p {
  text-align: center;
  hyphens: none;
}

.contact-page .contact-info-grid {
  margin-top: 16px;
}

.contact-page .contact-form-wrap {
  margin-top: 16px;
}

.contact-page .about-quality-grid,
.contact-page .faq-list {
  margin-top: 16px;
}

.contact-page main .section-head {
  margin-bottom: 12px;
}

.contact-page .contact-form-lead {
  text-align: justify;
}

.contact-intro-section {
  padding: 64px 0;
  background: #fff;
}

.contact-page .contact-intro-section {
  padding: 32px 0 16px;
  background: #fff;
}

.contact-page .contact-form-section--featured {
  padding: 32px 0;
  background: linear-gradient(180deg, #f3f7f5 0%, #eef5f1 100%);
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

.contact-page .contact-info-section {
  padding: 32px 0;
  background: #f8fafb;
}

.contact-page .contact-enquiry-options {
  padding: 32px 0;
  background: #fff;
}

.contact-page .about-global-section.global-presence {
  padding: 32px 0;
  background: linear-gradient(180deg, #eef5f1 0%, #f8fafb 100%);
}

.contact-page .contact-why-section {
  padding: 32px 0;
  background: #fff;
}

.contact-page .about-faq-section {
  padding: 32px 0;
  background: #f3f6f8;
}

.contact-page .quote-section {
  padding: 0;
  margin: 0;
  background: #fff;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.contact-form-intro .eyebrow {
  margin-bottom: 10px;
}

.contact-form-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #111;
}

.contact-form-lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #4a525a;
}

.contact-form-quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form-quick-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 148px;
  padding: 14px 16px;
  border: 1px solid #e6eaee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.contact-form-quick-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #edf7f0;
  color: #0a5c32;
}

.contact-form-quick-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form-quick-links strong {
  display: block;
  font-size: 13px;
  color: #111;
  margin-bottom: 2px;
}

.contact-form-quick-links a {
  font-size: 14px;
  font-weight: 600;
  color: #0a5c32;
}

.contact-form-panel {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
  border-top: 4px solid #0a5c32;
}

.contact-form-section--featured .contact-form-grid {
  gap: 12px;
}

.contact-form-section--featured label > span:first-child {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2f363d;
}

.contact-form-section--featured .contact-enquiry-form input,
.contact-form-section--featured .contact-enquiry-form select,
.contact-form-section--featured .contact-enquiry-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d7dde3;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  color: #111;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-section--featured .contact-enquiry-form input:focus,
.contact-form-section--featured .contact-enquiry-form select:focus,
.contact-form-section--featured .contact-enquiry-form textarea:focus {
  outline: none;
  border-color: #0a5c32;
  box-shadow: 0 0 0 3px rgba(10, 92, 50, 0.12);
}

.contact-form-actions {
  margin-top: 4px;
}

.contact-form-actions .btn {
  min-width: 200px;
}

.contact-info-section {
  padding: 0 0 64px;
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 20px;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.contact-info-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f3f7f5;
  color: #0a5c32;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card strong {
  display: block;
  font-size: 14px;
  color: #111;
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card address {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #5c6570;
  font-style: normal;
}

.contact-info-card a {
  color: #0a5c32;
  font-weight: 600;
}

.contact-enquiry-options {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.contact-enquiry-options .about-audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-option-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.contact-option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.contact-option-card h3 {
  font-size: 15px;
  line-height: 1.4;
  color: #111;
  margin: 0 0 8px;
}

.contact-option-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
  margin: 0 0 16px;
  flex: 1;
}

.contact-option-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0a5c32;
}

.contact-form-section {
  padding: 72px 0;
  background: #fff;
}

.contact-page .contact-form-section {
  padding: 32px 0;
}

.contact-form-wrap {
  margin-top: 32px;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

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

.contact-form-grid .contact-form-full {
  grid-column: 1 / -1;
}

.contact-enquiry-form input.is-invalid,
.contact-enquiry-form select.is-invalid,
.contact-enquiry-form textarea.is-invalid {
  border-color: #c62828;
}

.contact-field-error {
  font-size: 12px;
  color: #c62828;
  margin-top: -2px;
}

.contact-form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-status--error {
  background: #fdecea;
  color: #8b1f14;
  border: 1px solid #f5c6c2;
}

.contact-form-status--success {
  background: #edf7f0;
  color: #0a5c32;
  border: 1px solid #cfe8d8;
}

.contact-form-mailto {
  margin-top: 12px;
  display: inline-flex;
}

.contact-enquiry-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d7dde3;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  color: #111;
  background: #fff;
}

.contact-enquiry-form select:focus {
  outline: 2px solid rgba(10, 92, 50, 0.2);
  border-color: #0a5c32;
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-success-modal[hidden] {
  display: none;
}

.contact-success-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
}

.contact-success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  text-align: center;
}

.contact-success-modal__dialog h2 {
  margin: 0 0 12px;
  color: #0a5c32;
  font-size: 28px;
}

.contact-success-modal__dialog p {
  margin: 0 0 10px;
  color: #334155;
  line-height: 1.6;
}

.contact-success-modal__ref {
  margin: 16px 0 24px;
  font-size: 15px;
}

.contact-success-modal__ref strong {
  color: #111;
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-why-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

@media (max-width: 1024px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-enquiry-options .about-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .contact-info-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 20px 16px;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }

  .contact-form-actions .btn,
  .contact-page .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-info-grid,
  .contact-enquiry-options .about-audience-grid {
    grid-template-columns: 1fr;
  }
}

/* Global Markets pages */

.market-page main p:not(.eyebrow):not(.product-category),
.market-page main .product-hero-lead,
.market-page main .market-product-desc,
.market-page main .about-process-head p,
.market-page main .market-process-step span,
.market-page main .about-audience-card p,
.market-page main .about-quality-item > span:last-child,
.market-page main .market-hub-card p,
.market-page main .global-copy p,
.market-page main .faq-answer p,
.market-page main .cta-copy p {
  text-align: justify;
  hyphens: auto;
}

.market-page main .section-head.center,
.market-page main .section-head.center .eyebrow,
.market-page main .section-head.center h2,
.market-page main .section-head.center p {
  text-align: center;
  hyphens: none;
}

/* Tighter spacing between sections on country pages */
.market-page .product-hero {
  padding: 16px 0 28px;
}

.market-page {
  --market-trust-card-height: 120px;
  --market-trust-overlap: calc(var(--market-trust-card-height) / 2);
}

.market-page .market-trust-strip {
  position: relative;
  z-index: 8;
  margin-top: calc(var(--market-trust-overlap) * -1);
  padding: 0 0 32px;
  background: transparent;
}

.market-page .hero-section--page .hero-grid {
  padding-bottom: var(--market-trust-overlap);
}

.market-page .hero-section--page .hero-copy {
  padding-bottom: var(--market-trust-overlap);
}

.market-page .market-intro-section {
  padding: 28px 0;
}

.market-page .market-intro-section .about-grid {
  gap: 32px;
}

.market-page .market-categories-section,
.market-page .market-products-section,
.market-page .market-why-section,
.market-page .market-supply-section,
.market-page .market-nav-section,
.market-page .market-buyers-section,
.market-page .market-faq-section {
  padding: 28px 0;
}

.market-page .market-quote-section {
  padding: 0;
  margin: 0;
}

.market-page main .section-head {
  margin-bottom: 16px;
}

.market-page .market-products-grid,
.market-page .market-country-grid {
  margin-top: 16px;
}

.market-page .market-process-list {
  margin-top: 20px;
}

.market-page .market-faq-section .faq-list {
  margin-top: 20px;
}

.market-page .market-intro-section .about-copy h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-align: left;
  hyphens: none;
}

.market-page .market-intro-section .about-eyebrow {
  text-align: left;
}

.market-page .hero-section--page .hero-copy h1 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.market-page .hero-section--page .hero-lead {
  max-width: 520px;
}

/* UAE market hero — product collage (hero banner only) */
.market-hero--product-collage .hero-visual--product-collage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 28px 0;
  background: linear-gradient(145deg, #f5faf7 0%, #edf4f0 55%, #e8f0ec 100%);
}

.market-hero--product-collage .hero-visual--product-collage::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 14%, rgba(255, 255, 255, 0.42) 40%, rgba(255, 255, 255, 0) 58%);
}

.market-hero--product-collage .hero-product-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.92fr 0.92fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  height: 100%;
  max-height: 500px;
  padding: 10px;
}

.market-hero--product-collage .hero-product-collage__cell {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 74, 44, 0.08);
  box-shadow: 0 10px 24px rgba(15, 74, 44, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.market-hero--product-collage .hero-product-collage__cell--main {
  grid-row: 1 / span 2;
  grid-column: 1;
  padding: 16px;
}

.market-hero--product-collage .hero-product-collage__cell img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .market-hero--product-collage .hero-visual--product-collage {
    padding: 0;
    background: linear-gradient(180deg, #f5faf7 0%, #edf4f0 100%);
  }

  .market-hero--product-collage .hero-product-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    max-height: none;
    gap: 8px;
    padding: 8px;
  }

  .market-hero--product-collage .hero-product-collage__cell--main {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 180px;
  }

  .market-hero--product-collage .hero-product-collage__cell {
    min-height: 108px;
    padding: 8px;
  }
}

.market-trust-strip {
  padding: 0 0 28px;
  background: transparent;
}

.market-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.market-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--market-trust-card-height, 120px);
  text-align: center;
  padding: 20px 14px;
  border: 1px solid rgba(230, 234, 238, 0.95);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 12px 32px rgba(16, 32, 24, 0.08),
    0 4px 12px rgba(16, 24, 40, 0.04);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.market-trust-item:hover {
  transform: translateY(-8px);
  border-color: #cfe8d8;
  box-shadow:
    0 20px 44px rgba(16, 32, 24, 0.12),
    0 8px 20px rgba(16, 24, 40, 0.06);
}

.market-trust-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.market-trust-item strong {
  font-size: 12px;
  line-height: 1.4;
  color: #2f363d;
}

.market-intro-section,
.market-hub-intro {
  padding: 64px 0;
  background: #fff;
}

.market-categories-section {
  padding: 64px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.market-products-section {
  padding: 72px 0;
  background: #fff;
}

.market-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
}

.market-products-grid .product-card {
  flex: unset;
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  padding-bottom: 16px;
}

.market-product-card {
  display: flex;
  flex-direction: column;
}

.market-product-card h3 {
  padding: 6px 16px 10px;
  font-size: 15px;
  line-height: 1.4;
}

.market-product-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5c6570;
  margin: 0;
  padding: 0 16px 14px;
  flex: 0 0 auto;
  overflow: visible;
}

.market-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding: 0 16px;
}

.market-product-actions .btn {
  flex: 1 1 calc(50% - 4px);
  justify-content: center;
  min-width: 0;
  margin-left: 0;
}

.market-why-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.market-page .market-why-section .about-quality-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.market-supply-section {
  padding: 72px 0;
  background: #fff;
}

.market-process-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.market-process-step {
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 22px 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.market-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #edf7f0;
  color: #0a5c32;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.market-process-step strong {
  display: block;
  font-size: 14px;
  color: #111;
  margin-bottom: 8px;
}

.market-process-step span {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
}

.market-buyers-section .about-audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-form-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f5 100%);
}

.market-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.market-nav-section {
  padding: 72px 0;
  background: #fff;
}

.market-country-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.market-country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 1px solid #e6eaee;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: #2f363d;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.market-country-card:hover {
  transform: translateY(-2px);
  border-color: #cfe8d8;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.market-country-card.is-current {
  border-color: #0a5c32;
  background: #edf7f0;
  color: #0a5c32;
}

.market-country-card img {
  border-radius: 4px;
}

.market-hub-grid-section {
  padding: 64px 0;
  background: #fff;
}

.market-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.market-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border: 1px solid #e6eaee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.market-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
  border-color: #cfe8d8;
}

.market-hub-card h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.market-hub-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #5c6570;
  flex: 1;
}

.market-hub-link {
  font-size: 13px;
  font-weight: 700;
  color: #0a5c32;
}

.market-hub-flag {
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.08);
}

.market-quote-section {
  padding: 0;
  margin: 0;
}

@media (max-width: 1200px) {
  .market-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1024px) {
  .market-page {
    --market-trust-card-height: 112px;
  }

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

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

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

  .market-buyers-section .about-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html.js .market-products-grid.reveal-stagger > *,
  html.js .product-related-carousel.reveal,
  html.js .product-related-section .reveal.reveal-up {
    opacity: 1;
    transform: none;
  }

  .market-page {
    --market-trust-card-height: 104px;
  }

  .market-products-grid,
  .market-hub-grid,
  .market-process-list,
  .market-country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-page .market-why-section .about-quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .market-form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .market-products-grid,
  .market-hub-grid,
  .market-process-list,
  .market-country-grid,
  .market-trust-list,
  .market-buyers-section .about-audience-grid {
    grid-template-columns: 1fr;
  }

  .market-page .market-why-section .about-quality-grid {
    grid-template-columns: 1fr;
  }
}

/* UAE product SEO landing pages */
.uae-product-page .uae-content-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.uae-product-page .uae-prose-section .container.narrow {
  max-width: 52rem;
}

.uae-product-page .uae-inline-links {
  margin-top: 1.25rem;
  color: var(--text-muted, #5c6678);
}

.uae-product-page .uae-inline-links a {
  color: var(--brand-blue, #1a5fb4);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.uae-product-page .uae-cross-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.uae-product-page .uae-cross-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(26, 95, 180, 0.08);
  color: var(--brand-blue, #1a5fb4);
  font-weight: 600;
  font-size: 0.92rem;
}

.uae-product-page .uae-range-grid .uae-range-card--primary {
  pointer-events: none;
}

.uae-product-page .uae-range-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted, #5c6678);
}

.uae-product-page .uae-range-footnote {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted, #5c6678);
}

.uae-product-page .uae-related-card {
  justify-content: flex-start;
}

.uae-product-page .uae-related-link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-blue, #1a5fb4);
}

.uae-product-page .uae-quote-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.uae-product-page .uae-final-cta {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

@media (max-width: 768px) {
  .uae-product-page .uae-cross-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Global market product landing pages */
.global-market-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.global-market-section .global-market-links {
  margin-top: 1.25rem;
  color: var(--text-muted, #5c6678);
}

.global-market-section .global-market-links a {
  color: var(--brand-blue, #1a5fb4);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.global-market-quote-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* Partnership / quote enquiry forms */
.enquiry-form-section {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #f3f7f5 0%, #eef5f1 100%);
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

.enquiry-form-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.enquiry-form-header h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #111;
}

.enquiry-form-header p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4a525a;
}

.enquiry-form-section .contact-form-panel {
  max-width: 920px;
  margin: 0 auto;
}

.enquiry-form {
  position: relative;
}

.site-float-actions {
  position: fixed;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-float-btn svg {
  width: 24px;
  height: 24px;
}

.site-float-btn:hover,
.site-float-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.24);
  color: #fff;
}

.site-float-btn--whatsapp {
  background: #25d366;
}

.site-float-btn--phone {
  background: #0a5c32;
}

body.is-preloading .site-float-actions,
body.is-menu-open .site-float-actions,
body.contact-modal-open .site-float-actions {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  .enquiry-form-section {
    padding: 32px 0 40px;
  }

  .site-float-actions {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }

  .site-float-btn {
    width: 48px;
    height: 48px;
  }
}

@media print {
  .site-float-actions {
    display: none;
  }
}
