﻿:root {
  --nem-yellow: #FFD400;
  --nem-yellow-dark: #e0b000;
  --nem-red: #c8102e;
  --nem-red-dark: #AB0013;
  --nem-red-soft: #d62839;
  --nem-text: #222222;
  --nem-muted: #6b6b6b;
  --nem-nav: #5a5a5a;
  --nem-border: #e8e8e8;
  --nem-white: #ffffff;
  --nem-light: #f7f7f7;
  --nem-ink: #141414;
  --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  --top-bar-height: 38px;
  --site-header-offset: 84px;
  --site-header-offset-full: 122px;
  --anchor-scroll-gap: 20px;
  --font-display: "Satoshi-Bold", sans-serif;
  --inner-banner-title-color: #ffffff;
}

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

html {
  scroll-padding-top: calc(var(--site-header-offset-full, var(--site-header-offset, 122px)) + var(--anchor-scroll-gap, 20px));
}

body {
  margin: 0;
  font-family: "Satoshi-Regular", sans-serif;
  color: var(--nem-text);
  background: var(--nem-white);
  line-height: 1.6;
}

main section[id] {
  scroll-margin-top: calc(var(--site-header-offset-full, var(--site-header-offset, 122px)) + var(--anchor-scroll-gap, 20px));
}

a {
  color: var(--nem-red);
  text-decoration: none;
}

a:hover {
  color: var(--nem-red-dark);
}

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

.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@font-face {
    font-family: "Satoshi-Medium";
    src: url("Satoshi-Medium.ttf") format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Satoshi-Black";
    src: url("Satoshi-Black.ttf") format('truetype');
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}
@font-face {
    font-family: "Satoshi-Bold";
    src: url("Satoshi-Bold.ttf") format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Regular";
    src: url("Satoshi-Regular.ttf") format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
p {
  font-size: 15px;
}
/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nem-white);
  overflow: visible;
}

.header-sticky {
  background: var(--nem-white);
  box-shadow: var(--header-shadow);
  transition: box-shadow 0.28s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.top-bar {
  background: var(--nem-yellow);
  min-height: var(--top-bar-height, 38px);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.top-bar-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-size: 11px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
}

.top-bar-email:hover {
  color: #000;
}

.top-bar-email i {
  font-size: 14px;
}

.top-bar-email-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.top-bar-social {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.social-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--nem-red);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-circle:hover {
  background: var(--nem-red-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.site-header.is-pinned .header-sticky {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
}

.main-header {
  background: var(--nem-white);
  border-bottom: 1px solid var(--nem-border);
  position: relative;
  z-index: 2;
  overflow: visible;
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 90px;
  transition: min-height 0.28s ease, gap 0.28s ease;
}

.site-header.is-pinned .main-header-inner {
  min-height: 58px;
  gap: 16px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 75px;
  object-fit: contain;
  transition: height 0.28s ease, max-width 0.28s ease;
}

.site-header.is-pinned .logo-img {
  height: 42px;
  max-width: 168px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  overflow: visible;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 12px;
}

.nav-item {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-item--dropdown.is-open > .nav-dropdown-trigger > .nav-link {
  color: var(--nem-red);
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex: 0 0 auto;
  line-height: 0;
}

.nav-dropdown-toggle::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.75;
}

.nav-item--dropdown.is-open > .nav-dropdown-trigger > .nav-dropdown-toggle {
  color: var(--nem-red);
}

.nav-item--dropdown.is-open > .nav-dropdown-trigger > .nav-dropdown-toggle::after {
  transform: translateY(3px) rotate(225deg);
  opacity: 1;
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  max-width: min(280px, 90vw);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

.nav-links > .nav-item--dropdown:nth-last-child(-n+2) > .nav-dropdown {
  left: auto;
  right: 0;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-item--dropdown.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 6px 18px;
  color: var(--nem-text);
  font-size: 14px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #fff8f9;
  color: var(--nem-red);
}

.nav-link,
.nav-links > .nav-item > .nav-link {
  color: rgba(18, 18, 18, 0.6);
  font-size: 15px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease, font-size 0.28s ease, padding 0.28s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-header.is-pinned .nav-link,
.site-header.is-pinned .nav-links > .nav-item > .nav-link {
  font-size: 14px;
  padding: 4px 0;
}

.nav-link:hover,
.nav-links > .nav-item > .nav-link:hover,
.nav-dropdown-trigger > .nav-link:hover {
  color: var(--nem-red);
}

.nav-link.is-active,
.nav-links > .nav-item > .nav-link.is-active,
.nav-item.is-active > .nav-link,
.nav-item.is-active > .nav-dropdown-trigger > .nav-link {
  color: #111111;
  font-weight: 700;
}

.nav-link.is-active::after,
.nav-links > .nav-item > .nav-link.is-active::after,
.nav-item.is-active > .nav-link::after,
.nav-item.is-active > .nav-dropdown-trigger > .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--nem-red);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--nem-border);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nem-text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1100;
  display: grid;
  grid-template-rows: 0fr;
  background: #fff;
  border-top: 1px solid transparent;
  padding: 0 16px;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transition:
    grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    visibility 0s linear 0.42s;
}

.mobile-nav.is-open {
  grid-template-rows: 1fr;
  border-top-color: var(--nem-border);
  visibility: visible;
  pointer-events: auto;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    visibility 0s linear 0s;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  overflow: hidden;
}

.mobile-nav.is-open .mobile-nav-links {
  padding: 4px 0 12px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .mobile-nav,
  .mobile-nav.is-open {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-nav.is-open {
    transition: none;
  }
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-row {
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.mobile-nav-link,
.mobile-nav-links > .mobile-nav-item > .mobile-nav-link {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  padding: 8px 4px;
  line-height: 1.25;
  color: var(--nem-nav);
  font-weight: 500;
  font-size: 15px;
}

.mobile-nav-link.is-active,
.mobile-nav-item.is-active > .mobile-nav-row > .mobile-nav-link {
  color: var(--nem-red);
  font-weight: 700;
}

.mobile-nav-toggle {
  width: 36px;
  flex-shrink: 0;
  border: 0;
  border-left: 1px solid #f0f0f0;
  background: #fff;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  background: #333;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-nav-item.is-open .mobile-nav-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-nav-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.mobile-nav-item.is-open .mobile-nav-sub {
  max-height: 480px;
  opacity: 1;
  padding: 0 0 4px;
}

.mobile-nav-sub a {
  display: block;
  padding: 6px 10px 6px 14px;
  color: #444;
  font-size: 13px;
  line-height: 1.3;
  border-left: 2px solid transparent;
}

.mobile-nav-sub a:hover,
.mobile-nav-sub a:focus-visible {
  color: var(--nem-red);
  border-left-color: var(--nem-red);
  background: #fdf3f4;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .top-bar,
  .site-header .top-bar-inner,
  .site-header .main-header-inner,
  .site-header .logo-img,
  .site-header .nav-links a {
    transition: none;
  }
}

/* ========== Shared page ========== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 45%, #fde8ec 100%);
  padding: 72px 0 64px;
  border-bottom: 10px solid #FFD400;
  overflow: hidden;
}

.page-hero--has-image {
  min-height: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  background-image: none;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  overflow: hidden;
  border-bottom: 8px solid #FFD400;
}

/*.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}*/

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero--has-image .page-hero-inner {
  padding: 50px 16px 40px;
  width: 100%;
}

.page-hero h1 {
  font-family: "Satoshi-Bold",sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--inner-banner-title-color);
  margin: 0 0 12px;
}

.page-hero--has-image h1 {
  margin: 0;
  color: var(--inner-banner-title-color);
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.page-hero h1 .page-hero-title-light,
.contact-banner-title .page-hero-title-light {
  font-weight: 400;
  font-family: "Satoshi-Regular", sans-serif;
  color: var(--inner-banner-title-color);
}

.page-hero h1 .page-hero-title-strong,
.contact-banner-title .page-hero-title-strong {
  font-weight: 700;
  font-family: "Satoshi-Bold", sans-serif;
  color: var(--inner-banner-title-color);
}

.page-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--nem-muted);
  font-size: 1.05rem;
}

.page-hero--has-image p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.page-content {
  max-width: 920px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}

.page-content p {
  margin: 0 0 1em;
}

.page-content p:last-child {
  margin-bottom: 0;
}

.page-rnd .rnd-main {
  background: #fff;
}

/* ========== Infrastructure page ========== */
.infrastructure-strategic {
  background: #fdf5f5;
  padding: 40px 0;
}

.infrastructure-strategic-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.infrastructure-strategic-media {
  border-radius: 28px;
  overflow: hidden;
}

.infrastructure-strategic-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.infrastructure-strategic-copy {
  text-align: left;
}

.infrastructure-strategic-title {
  margin: 0 0 18px;
  
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.infrastructure-strategic-title-dark {
  color: #0B1C30;
  
}

.infrastructure-strategic-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.infrastructure-strategic-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}

.infrastructure-strategic-text p {
  margin: 0;
}

.infrastructure-strategic-text strong {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #0B1C30;
}

@media (max-width: 767px) {
  .infrastructure-strategic {
    padding: 56px 0 24px;
  }

  .infrastructure-strategic-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .infrastructure-strategic-media img {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .infrastructure-strategic-title {
    margin-bottom: 16px;
  }

  .infrastructure-strategic-text {
    font-size: 0.95rem;
  }
}

/* ========== Infrastructure manufacturing capabilities ========== */
.infrastructure-manufacturing {
  background: #fff;
  padding: 20px 0 70px;
  text-align: center;
}

.infrastructure-manufacturing-title {
  margin: 0 0 42px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.infrastructure-manufacturing-title-dark {
  color: #111C2D;
}

.infrastructure-manufacturing-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.infrastructure-manufacturing-diagram {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 12px;
  aspect-ratio: 980 / 420;
  min-height: 280px;
}

.infrastructure-manufacturing-items {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.infrastructure-manufacturing-item {
  position: absolute;
  inset: 0;
}

.infrastructure-manufacturing-item-media {
  position: absolute;
  transform: translate(-50%, -50%);
}

.infrastructure-manufacturing-item-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  box-shadow: none;
  position: relative;
  z-index: 9;
  transform-origin: center center;
  will-change: transform;
  animation: infrastructure-mfg-media-spin 18s linear infinite;
}

.infrastructure-manufacturing-item-media:hover img {
  animation-play-state: paused;
}

@keyframes infrastructure-mfg-media-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .infrastructure-manufacturing-item-media img {
    animation: none !important;
  }
}

.infrastructure-manufacturing-item-copy {
  position: absolute;
  box-sizing: border-box;
  text-align: left;
  font-family: "Satoshi-Regular", sans-serif;
}

.infrastructure-manufacturing-item-title {
  margin: 0 0 2px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--mfg-color, #AB0013);
  font-family: "Satoshi-Black", sans-serif;
  font-weight: 900;
}

.infrastructure-manufacturing-item-stat {
      margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: #000;
    font-weight: 400;
}

/* Per-item image + text positions (edit left/top/width as needed) */
.infrastructure-manufacturing-item--semi-solid-formulations .infrastructure-manufacturing-item-media,
.infrastructure-manufacturing-item--slot-1 .infrastructure-manufacturing-item-media {
  left: 33.6%;
    top: 30.5%;
    width: 22%;
    position: relative;
}
.infrastructure-manufacturing-item--slot-1 .infrastructure-manufacturing-item-media:before{
      content: '';
    position: absolute;
    left: -62px;
    top: 35px;
    width: 97%;
    height: 100%;
    background: url(../../images/capable-icon1.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--slot-1 .infrastructure-manufacturing-item-media:after{
        content: '';
    position: absolute;
    right: -33px;
    top: -15px;
    width: 98px;
    height: 28px;
    background: url(../../images/capable-newicon1.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--semi-solid-formulations .infrastructure-manufacturing-item-copy,
.infrastructure-manufacturing-item--slot-1 .infrastructure-manufacturing-item-copy {
    left: 48.8%;
    top: -0.5%;
    width: 30.6%;
  padding-top: 2px;
}

.infrastructure-manufacturing-item--sterile-injectables .infrastructure-manufacturing-item-media,
.infrastructure-manufacturing-item--slot-2 .infrastructure-manufacturing-item-media {
    left: 47.3%;
    top: 54%;
    width: 11%;
    position: relative;
}
.infrastructure-manufacturing-item--slot-2 .infrastructure-manufacturing-item-media:before{
        content: '';
    position: absolute;
    left: -18px;
    top: 21px;
    width: 86%;
    height: 100%;
    background: url(../../images/capable-icon2.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--slot-2 .infrastructure-manufacturing-item-media:after{
        content: '';
    position: absolute;
        right: -10px;
    top: -75px;
    width: 51px;
    height: 89px;
    background: url(../../images/capable-newicon2.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--sterile-injectables .infrastructure-manufacturing-item-copy,
.infrastructure-manufacturing-item--slot-2 .infrastructure-manufacturing-item-copy {
    left: 54.8%;
    top: 21.2%;
  width: 32.7%;
  padding-top: 6px;
}

.infrastructure-manufacturing-item--tablets .infrastructure-manufacturing-item-media,
.infrastructure-manufacturing-item--slot-3 .infrastructure-manufacturing-item-media {
    left: 38.8%;
    top: 80.3%;
    width: 16.1%;
}
.infrastructure-manufacturing-item--slot-3 .infrastructure-manufacturing-item-media:before{
        content: '';
    position: absolute;
    left: -19px;
    top: 35px;
    width: 85%;
    height: 100%;
    background: url(../../images/capable-icon3.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--slot-3 .infrastructure-manufacturing-item-media:after{
        content: '';
    position: absolute;
        left: -59px;
    top: 56px;
    width: 85px;
    height: 20px;
    background: url(../../images/capable-newicon3.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--tablets .infrastructure-manufacturing-item-copy,
.infrastructure-manufacturing-item--slot-3 .infrastructure-manufacturing-item-copy {
    left: -1.3%;
    top: 70.2%;
    width: 25.5%;
    padding-top: 8px;
    text-align: right;
}

.infrastructure-manufacturing-item--sterile-semisolid .infrastructure-manufacturing-item-media,
.infrastructure-manufacturing-item--slot-4 .infrastructure-manufacturing-item-media {
    left: 60.4%;
    top: 66.4%;
    width: 17%;
}
.infrastructure-manufacturing-item--slot-4 .infrastructure-manufacturing-item-media:before{
       content: '';
    position: absolute;
    left: -35px;
    top: 33px;
    width: 90%;
    height: 100%;
    background: url(../../images/capable-icon4.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--slot-4 .infrastructure-manufacturing-item-media:after{
        content: '';
    position: absolute;
    right: -51px;
    top: 12px;
    width: 85px;
    height: 20px;
    background: url(../../images/capable-newicon4.png) no-repeat;
    background-size: cover;
}
.infrastructure-manufacturing-item--sterile-semisolid .infrastructure-manufacturing-item-copy,
.infrastructure-manufacturing-item--slot-4 .infrastructure-manufacturing-item-copy {
    left: 75.2%;
    top: 47%;
  width: 25.5%;
  padding-top: 4px;
}

.infrastructure-engineering-actions {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
}

.infrastructure-engineering-gallery-btn {
  padding: 12px 30px;
  border-radius: 999px;
  background: #AB0013;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.infrastructure-engineering-gallery-btn:hover {
  background: #8a0010;
  color: #fff;
}

.infrastructure-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #AB0013;
  color: #fff;
  font-size: 14px;
      font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.infrastructure-video-btn:hover {
  background: #8a0010;
  color: #fff;
  transform: translateY(-1px);
}

.infrastructure-video-btn--light {
  background: #fff;
  color: #0B1C30;
}

.infrastructure-video-btn--light:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #0B1C30;
}

@media (max-width: 767px) {
  .infrastructure-manufacturing {
    padding-bottom: 56px;
  }
}

@media (max-width: 1199px) {
  .infrastructure-manufacturing-item-title {
    font-size: 14px;
  }

  .infrastructure-manufacturing-item-stat {
    font-size: 12px;
  }
}

/* ========== Infrastructure manufacturing facilities ========== */
.infrastructure-facilities {
  background: #fff;
  padding: 8px 0 60px;
  text-align: center;
}

.infrastructure-facilities-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.infrastructure-facilities-title-dark {
  color: #111111;
}

.infrastructure-facilities-title-accent {
  color: #A30018;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.infrastructure-facilities-intro {
  max-width: 1100px;
  margin: 0 auto 42px;
  font-size: 15px;
  line-height: 1.75;
  color: #111111;
}

.infrastructure-facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  text-align: left;
}

.infrastructure-facilities-anchors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin-top: 58px;
}

.infrastructure-facilities-anchor {
  display: inline-block;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 19px 28px;
  border-radius: 28px;
  max-width: 300px;
  font-size: 15px;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #AB0013;
  color: #AB0013;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.infrastructure-facilities-anchor--primary,
.infrastructure-facilities-anchor--outline {
  background: #fff;
  border: 3px solid #AB0013;
  color: #AB0013;
}

.infrastructure-facilities-anchor:hover,
.infrastructure-facilities-anchor--primary:hover,
.infrastructure-facilities-anchor--outline:hover {
  background: #AB0013;
  border-color: #AB0013;
  color: #fff;
  transform: translateY(-1px);
}

.infrastructure-facility-card {
  background: var(--facility-bg, #D99C4C);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.infrastructure-facility-card-media {
  padding: 12px 12px 0;
}

.infrastructure-facility-card-media img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 18px;
}

.infrastructure-facility-card-body {
  padding: 22px 28px 28px;
}

.infrastructure-facility-card-title {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.35;
  color: #fff;
  font-family: "Satoshi-Black", sans-serif;
  font-weight: 700;
}

.infrastructure-facility-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
}
@media (max-width: 1179px) {
.infrastructure-facilities-anchor {
    padding: 19px 24px;
}
}

@media (max-width: 767px) {
  .infrastructure-facilities-grid {
    grid-template-columns: 1fr;
  }

  .infrastructure-facilities {
    padding-bottom: 28px;
  }

  .infrastructure-facility-card-media img {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .infrastructure-facilities-intro {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .infrastructure-facility-card {
    border-radius: 22px;
  }

  .infrastructure-facility-card-media {
    padding: 14px 14px 0;
  }

  .infrastructure-facility-card-media img {
    height: 180px;
    border-radius: 14px;
  }

  .infrastructure-facility-card-body {
    padding: 18px 20px 22px;
  }
}

/* ========== Infrastructure quality control ========== */
.infrastructure-qc {
  padding: 8px 0 60px;
  background: #fff;
}

.infrastructure-qc-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: visible;
  isolation: isolate;
}

.infrastructure-qc-media {
  grid-area: 1 / 1;
}

.infrastructure-qc-media img {
  width: 65%;
  height: 100%;
  min-height: 465px;
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: 30px 0 0 30px;
}

.infrastructure-qc-panel {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
    width: min(100%, 550px);
    max-width: 52%;
  margin: 28px 0 28px 0;
  background: var(--qc-card-color, #4DB6AC);
  border-radius: 24px;
  padding: 42px 24px 42px 50px;
  color: #fff;
  text-align: left;
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.06),
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 20px 44px rgba(15, 23, 42, 0.07);
}

.infrastructure-qc-title {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  line-height: 1.2;
  color: #fff;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.infrastructure-qc-text {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.65;
  color: #fff;
}

.infrastructure-qc-text p {
  margin: 0 0 0.75em;
}
.infrastructure-qc-text p:last-child {
  margin-bottom: 0;
}

.infrastructure-qc-sections-title {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.infrastructure-qc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
      grid-template-columns: minmax(122px, 0.45fr) minmax(0, 1fr);
    gap: 6px 6px;
}

.infrastructure-qc-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.infrastructure-qc-list-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.infrastructure-qc-list-icon i {
  font-size: 1.05rem;
  line-height: 1;
  color: #fff;
}

.infrastructure-qc-list-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.infrastructure-qc-list-label {
  font-size: 13px;
  line-height: 1.35;
  color: #fff;
}

@media (max-width: 767px) {
  .infrastructure-qc {
    padding: 0 0 48px;
  }

  .infrastructure-qc-shell {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .infrastructure-qc-media {
    order: 1;
    width: 100%;
  }

  .infrastructure-qc-media img {
    width: 100%;
    min-height: 220px;
    max-height: 320px;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 18px 18px 0 0;
  }

  .infrastructure-qc-panel {
    order: 2;
    position: relative;
    z-index: 2;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: -28px 0 0;
    border-radius: 18px;
    padding: 28px 24px 30px;
  }

  .infrastructure-qc-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }
}

@media (max-width: 767px) {
  .infrastructure-qc {
    padding-bottom: 40px;
  }

  .infrastructure-qc-media img {
    min-height: 200px;
    max-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .infrastructure-qc-panel {
    margin-top: -24px;
    padding: 24px 20px 26px;
  }

  .infrastructure-qc-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 14px;
  }

  .infrastructure-qc-text {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .infrastructure-qc-sections-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .infrastructure-qc-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .infrastructure-qc-list-label {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .infrastructure-qc-panel {
    padding: 22px 18px 24px;
    border-radius: 16px;
  }

  .infrastructure-qc-media img {
    border-radius: 16px 16px 0 0;
  }
}

.infrastructure-qa {
  position: relative;
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #c93d33 0%, #8f1815 42%, #4a0a0a 100%);
  overflow: hidden;
}

.infrastructure-qa-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.infrastructure-qa::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}

.infrastructure-qa .container {
  position: relative;
  z-index: 2;
}

.infrastructure-qa-top {
  display: grid;
  grid-template-columns: minmax(380px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}

.infrastructure-qa-card {
  background: #fff;
  border-radius: 28px;
  padding: 42px 42px;
  position: relative;
  z-index: 2;
  margin-right: -72px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.infrastructure-qa-title {
  margin: 0 0 16px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  color: #0B1C30;
}

.infrastructure-qa-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #111;
}

.infrastructure-qa-text p {
  margin: 0 0 0.75em;
}
.infrastructure-qa-text p:last-child {
  margin-bottom: 0;
}

.infrastructure-qa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
     padding: 16px 28px;
    border-radius: 24px;
  background: #A30018;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.infrastructure-qa-btn:hover {
  background: #590b14;
  color: #fff;
}

.infrastructure-qa-media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.infrastructure-qa-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.infrastructure-qa-facilities-title {
  margin: 0 0 28px;
  text-align: center;
  
      font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  color: #fff;
  font-weight: 400;
}

.infrastructure-qa-facilities-title strong {
  font-weight: 700;
  font-family: "Satoshi-Bold", sans-serif;
}

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

.infrastructure-qa-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid #CFCFCF;
  border-radius: 16px;
}

.infrastructure-qa-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF1A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.infrastructure-qa-item-icon i {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}

.infrastructure-qa-item-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.infrastructure-qa-item-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  font-family: "Satoshi-Bold", sans-serif;
  color: #fff;
}

@media (max-width: 767px) {
  .infrastructure-qa {
    padding: 48px 0 72px;
  }

  .infrastructure-qa-top {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 44px;
  }

  .infrastructure-qa-media {
    order: -1;
    min-height: 240px;
  }

  .infrastructure-qa-media img {
    min-height: 240px;
  }

  .infrastructure-qa-card {
    margin: -36px 16px 0;
  }

  .infrastructure-qa-grid {
    grid-template-columns: 1fr;
  }
}

.infrastructure-ra {
  padding: 60px 0;
  background: #fff;
}

.infrastructure-ra-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: visible;
  isolation: isolate;
}

.infrastructure-ra-media {
  grid-area: 1 / 1;
}

.infrastructure-ra-media img {
  width: 65%;
  height: 100%;
  min-height: 465px;
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: 30px 0 0 30px;
}

.infrastructure-ra-panel {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
  width: min(100%, 520px);
  max-width: 49%;
  background: #fff;
  border-radius: 24px;
  padding: 42px 24px 42px 42px;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.06),
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 20px 44px rgba(15, 23, 42, 0.07);
}

.infrastructure-ra-title {
  margin: 0 0 18px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #0B1C30;
}

.infrastructure-ra-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}

.infrastructure-ra-text p {
  margin: 0 0 0.75em;
}
.infrastructure-ra-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .infrastructure-ra {
    padding: 48px 0 56px;
  }

  .infrastructure-ra-shell {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }

  .infrastructure-ra-media {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 0;
  }

  .infrastructure-ra-media img {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: min(52vw, 320px);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
  }

  .infrastructure-ra-panel {
    position: relative;
    z-index: 2;
    justify-self: stretch;
    align-self: auto;
    max-width: none;
    width: auto;
    margin: -28px 16px 0;
    border-radius: 22px;
    padding: 30px 26px 32px;
  }
}

@media (max-width: 575px) {
  .infrastructure-ra {
    padding: 40px 0 48px;
  }

  .infrastructure-ra-media img {
    min-height: 190px;
    max-height: 240px;
    border-radius: 18px;
  }

  .infrastructure-ra-panel {
    margin: -22px 12px 0;
    padding: 26px 22px 28px;
  }

  .infrastructure-ra-text {
    font-size: 13px;
  }
}

.infrastructure-engineering {
  position: relative;
  padding: 38px 0 55px;
  overflow: hidden;
  background: linear-gradient(90deg, #3d9a8f 0%, #2a6f72 48%, #163a47 100%);
}

.infrastructure-engineering-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.infrastructure-engineering .container {
  position: relative;
  z-index: 1;
}

.infrastructure-engineering-inner {
  display: grid;
  grid-template-columns: minmax(224px, 2fr) minmax(0, 2.4fr);
  gap: 15px 20px;
  align-items: center;
}

.infrastructure-engineering-title {
  margin: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.infrastructure-engineering-title-line {
  display: block;
}

.infrastructure-engineering-text {
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.infrastructure-engineering-text p {
  margin: 0 0 0.75em;
  font-size: 19px;
  font-weight: 500;
    font-family: "Satoshi-Medium", sans-serif;
        line-height: 1.65;
}
.infrastructure-engineering-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .infrastructure-engineering-bg {
        background-position: left;
  }
}
@media (max-width: 767px) {
  .infrastructure-engineering-bg {
        background-position: left;
  }
  .infrastructure-engineering {
    padding: 56px 0 72px;
  }

  .infrastructure-engineering-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .infrastructure-engineering-title,
  .infrastructure-engineering-text,
  .infrastructure-engineering-actions {
    grid-column: 1;
    grid-row: auto;
  }
}

.infrastructure-walkthrough {
  background: #fff;
}

.infrastructure-walkthrough-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infrastructure-walkthrough-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.infrastructure-walkthrough-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 158px 16px;
}

.infrastructure-walkthrough-play {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 9px solid #fff;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.infrastructure-walkthrough-play i {
  font-size: 3rem;
  line-height: 1;
  margin-left: 4px;
}

.infrastructure-walkthrough-play:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.12);
}

.infrastructure-walkthrough-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border: none;
  border-radius: 999px;
  background: #AB0013;
  color: #fff;
  font-size: 14px;
      font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.infrastructure-walkthrough-btn:hover {
  background: #8a0010;
  color: #fff;
  transform: translateY(-1px);
}

.infrastructure-walkthrough-modal .infrastructure-walkthrough-dialog {
  max-width: min(680px, calc(100vw - 2rem));
  margin: 1rem auto;
}

.infrastructure-walkthrough-modal.modal {
  overflow: hidden;
}

.infrastructure-walkthrough-modal .modal-content {
  position: relative;
  border: none;
  border-radius: 14px;
  overflow: hidden;
}

.infrastructure-walkthrough-modal .modal-body {
  padding: 0;
  overflow: hidden;
}

.infrastructure-walkthrough-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: none;
  opacity: 1;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #0B1C30;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.infrastructure-walkthrough-close i {
  font-size: 1.1rem;
  line-height: 1;
}

.infrastructure-walkthrough-close:hover {
  background: #fff;
  color: #AB0013;
  transform: scale(1.05);
}

.infrastructure-walkthrough-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.infrastructure-walkthrough-player iframe,
.infrastructure-walkthrough-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.infrastructure-walkthrough-player.is-geo-blocked {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.site-video-geo-blocked {
  padding: 1.5rem 1.75rem;
  max-width: 28rem;
  text-align: center;
  color: #f5f5f5;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 767px) {
  .infrastructure-walkthrough-shell {
    min-height: 280px;
  }
}

/* Infrastructure page scroll motion */
.page-infrastructure .infrastructure-manufacturing-items.reveal-stagger .infrastructure-manufacturing-item.reveal {
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-infrastructure .infrastructure-qc-panel .reveal,
.page-infrastructure .infrastructure-qa-facilities .reveal {
  will-change: opacity, transform;
}

/* ========== Infrastructure page responsive (tablet/mobile only) ========== */
@media (max-width: 767px) {
  .page-infrastructure .infrastructure-manufacturing-title {
    margin-bottom: 28px;
  }

  .page-infrastructure .infrastructure-manufacturing-diagram {
    aspect-ratio: auto;
    min-height: 0;
    max-width: 640px;
    padding: 0;
  }

  .page-infrastructure .infrastructure-manufacturing-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
    pointer-events: auto;
  }

  .page-infrastructure .infrastructure-manufacturing-item {
    position: relative;
    inset: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f7f8fa;
    text-align: left;
            align-items: center;
  }

  .page-infrastructure .infrastructure-manufacturing-item-media {
    position: relative;
    flex: 0 0 72px;
    width: 72px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .page-infrastructure .infrastructure-manufacturing-item-media:before,
  .page-infrastructure .infrastructure-manufacturing-item-media:after {
    display: none;
  }

  .page-infrastructure .infrastructure-manufacturing-item-media img {
    width: 100%;
    max-width: 72px;
    margin: 0 auto;
  }

  .page-infrastructure .infrastructure-manufacturing-item-copy {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    flex: 1;
    min-width: 0;
    padding-top: 0 !important;
    text-align: left !important;
  }

  .page-infrastructure .infrastructure-engineering-inner {
    text-align: center;
  }

  .page-infrastructure .infrastructure-engineering-actions {
    justify-self: center;
  }

  .page-infrastructure .infrastructure-qa-card {
    padding: 32px 28px;
  }

  .page-infrastructure .infrastructure-walkthrough-shell {
    min-height: 300px;
  }

  .page-infrastructure .infrastructure-walkthrough-btn {
    max-width: calc(100vw - 48px);
    text-align: center;
  }
}

@media (max-width: 767px) {
  .page-infrastructure .infrastructure-manufacturing {
    padding: 24px 0 48px;
  }

  .page-infrastructure .infrastructure-manufacturing-item {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .page-infrastructure .infrastructure-manufacturing-item-media {
    flex-basis: 64px;
    width: 64px !important;
  }

  .page-infrastructure .infrastructure-manufacturing-item-media img {
    max-width: 64px;
  }

  .page-infrastructure .infrastructure-manufacturing-item-title {
    font-size: 1rem;
  }

  .page-infrastructure .infrastructure-manufacturing-item-stat {
    font-size: 0.88rem;
  }

  .page-infrastructure .infrastructure-facilities {
    padding-top: 0;
  }

  .page-infrastructure .infrastructure-ra-panel {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: -28px;
    margin-bottom: 0;
  }

  .page-infrastructure .infrastructure-qc-panel {
    margin-left: 0;
    margin-right: 0;
  }

}

@media (max-width: 575px) {
  .page-infrastructure .infrastructure-strategic {
    padding: 48px 0 56px;
  }

  .page-infrastructure .infrastructure-manufacturing-item-media {
    flex-basis: 56px;
    width: 56px !important;
  }

  .page-infrastructure .infrastructure-manufacturing-item-media img {
    max-width: 56px;
  }

  .page-infrastructure .infrastructure-manufacturing-item-title {
    font-size: 0.95rem;
  }

  .page-infrastructure .infrastructure-manufacturing-item-stat {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .page-infrastructure .infrastructure-qa-card {
    margin-left: 10px;
    margin-right: 10px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .page-infrastructure .infrastructure-qa-btn {
    display: flex;
    width: 100%;
  }

  .page-infrastructure .infrastructure-qa-item {
    padding: 14px 16px;
  }

  .page-infrastructure .infrastructure-qa-item-text {
    font-size: 0.92rem;
  }

  .page-infrastructure .infrastructure-engineering {
    padding: 48px 0 60px;
  }

  .page-infrastructure .infrastructure-engineering-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .page-infrastructure .infrastructure-engineering-gallery-btn,
  .page-infrastructure .infrastructure-video-btn {
    width: 100%;
    max-width: 280px;
  }

  .page-infrastructure .infrastructure-walkthrough-actions {
    gap: 14px;
    padding: 32px 16px;
  }

  .page-infrastructure .infrastructure-walkthrough-btn {
    font-size: 13px;
    padding: 12px 18px;
  }

  .page-infrastructure .infrastructure-ra-panel {
    margin-left: 12px;
    margin-right: 12px;
    margin-top: -22px;
    padding: 24px 20px 26px;
  }

  .page-infrastructure .infrastructure-qc-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .page-infrastructure .infrastructure-qc-list-label {
    font-size: 12px;
  }

  .page-infrastructure .infrastructure-walkthrough-modal .infrastructure-walkthrough-dialog {
    margin: 12px;
    max-width: calc(100vw - 24px);
  }
}

.rnd-intro {
  background: #fff;
  padding: 31px 0 4px;
  text-align: left;
}
.rnd-intro .container {
  max-width: 1085px;
}

.rnd-intro-layout {
    display: grid;
    grid-template-columns: minmax(185px, 285px) minmax(0, 1fr);
    gap: 36px 57px;
    align-items: center;
    padding-left: 11px;
}

.rnd-intro-media {
  justify-self: center;
  width: 100%;
  max-width: 260px;
}

.rnd-intro-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.rnd-intro-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #000;
  text-align: left;
}

.rnd-intro-text p {
  margin: 0;
  line-height: 1.65;
}
.rnd-intro-text p:last-child {
  margin-bottom: 0;
}

.rnd-intro-text:last-child {
  margin-bottom: 0;
}

/* ========== R&D core capabilities ========== */
.rnd-capabilities {
  background: #fff;
  padding: 16px 0 0;
  text-align: center;
  overflow: visible;
}
.rnd-capabilities .container {
  max-width: 1260px;
  overflow: visible;
}

.rnd-capabilities-title {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.rnd-capabilities-title-dark {
  color: #0B1C30;
}

.rnd-capabilities-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.rnd-capabilities-hub {
  position: absolute;
  left: 50%;
  /* Match SVG hub center (100 / 560) — translate keeps reveal from un-centering */
  top: calc(100% * 100 / 560);
  translate: -50% -50%;
  z-index: 5;
}

.rnd-capabilities-hub-ring {
  width: clamp(104px, 15.6cqi, 165px);
  height: clamp(104px, 15.6cqi, 165px);
  border-radius: 50%;
  border: 3px solid #AB0013;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.rnd-capabilities-hub-logo {
  width: 48%;
  height: 48%;
  object-fit: contain;
}

.rnd-capabilities-diagram {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 0;
  /* Must match SVG viewBox (1000×560) so line ends align with node orbs */
  aspect-ratio: 1000 / 560;
  overflow: visible;
  container-type: inline-size;
  /* Trim unused viewBox bottom only — keep a small clear gap before Infrastructure */
  margin-bottom: -8cqi;
}

.rnd-capabilities-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Above node outer disk so the line can cross the ring band; hub stays higher */
  z-index: 3;
  overflow: visible;
}

.rnd-capabilities-line {
  stroke: #1a1a1a;
  stroke-width: 1.15;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* Hub origin: solid chosen-color disk + line-color center pin */
.rnd-capabilities-line-dot-ring,
.rnd-capabilities-line-dot {
  pointer-events: none;
}

.rnd-capabilities-arm.reveal {
  /* SVG groups: fade only — transform can break SVG layout */
  transform: none;
  opacity: 0;
}

.rnd-capabilities-arm.reveal.is-visible {
  opacity: 1;
}

.rnd-capabilities-node {
  position: absolute;
  z-index: 2;
  width: 0;
  height: 0;
}

/*
 * Icon pod (Figma):
 * - solid colored outer disk + soft large exterior shadow
 * - white core with soft solid-color shadow onto the ring (BR), clipped inside outer
 * Connector lines sit above nodes (z-index 3) and stop at the inner core ring
 * so they visually pass through the outer disk.
 */
.rnd-capabilities-node-orb {
  position: absolute;
  top: 0;
  left: 0;
  /* Scale with diagram width so SVG line ends (viewBox 1000) stay on the inner ring */
  width: 10.88cqi;
  height: 10.88cqi;
  margin: -5.44cqi 0 0 -5.44cqi;
}

.rnd-capabilities-node-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cap-color, #42A5F5) 88%, #ffffff);
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.rnd-capabilities-node-core {
  position: absolute;
  inset: 1.275cqi;
  border-radius: 50%;
  background: #ffffff;
  border: 0.425cqi solid var(--cap-color, #42A5F5);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Soft solid-color shadow onto the ring — blur stays inside outer (overflow:hidden) */
  box-shadow:
    2px 3px 5px color-mix(in srgb, var(--cap-color, #42A5F5) 48%, #3a3a3a),
    1px 2px 10px color-mix(in srgb, var(--cap-color, #42A5F5) 28%, #1a1a1a);
}

.rnd-capabilities-node-core img {
  width: 48%;
  height: 48%;
  max-width: 3.4cqi;
  max-height: 3.4cqi;
  object-fit: contain;
  filter: none;
}

.rnd-capabilities-node-label {
  position: absolute;
  margin: 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.01em;
  width: max-content;
  max-width: 15.6cqi;
}

.rnd-capabilities-node--label-left .rnd-capabilities-node-label {
  right: 6.5cqi;
  top: 0;
  transform: translateY(-50%);
  text-align: right;
  max-width: 14cqi;
}

.rnd-capabilities-node--label-right .rnd-capabilities-node-label {
  left: 6.5cqi;
  top: 0;
  transform: translateY(-50%);
  text-align: left;
  max-width: 14cqi;
}

/* Mid/lower side labels sit lower so nearby icons have room */
.rnd-capabilities-node--label-nudge.rnd-capabilities-node--label-left .rnd-capabilities-node-label,
.rnd-capabilities-node--label-nudge.rnd-capabilities-node--label-right .rnd-capabilities-node-label {
  top: 2.2cqi;
  transform: none;
}

.rnd-capabilities-node--label-bottom .rnd-capabilities-node-label,
.rnd-capabilities-node-label--bottom {
  left: 50%;
  top: 6.2cqi;
  transform: translateX(-50%);
  max-width: 27cqi;
  text-align: center;
}

.rnd-capabilities-list {
  display: none;
  margin-top: 8px;
}

.rnd-capabilities-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 28, 48, 0.08);
  text-align: left;
}

.rnd-capabilities-list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rnd-capabilities-list-orb {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}

.rnd-capabilities-list-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cap-color, #42A5F5) 88%, #ffffff);
  overflow: hidden;
}

.rnd-capabilities-list-core {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--cap-color, #42A5F5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    1px 2px 4px color-mix(in srgb, var(--cap-color, #42A5F5) 48%, #3a3a3a),
    1px 2px 7px color-mix(in srgb, var(--cap-color, #42A5F5) 28%, #1a1a1a);
}

.rnd-capabilities-list-core img {
  width: 52%;
  height: 52%;
  object-fit: contain;
  filter: none;
}

.rnd-capabilities-list-text {
  margin: 0;
  font-family: "Satoshi-Medium", "Satoshi-Bold", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #0B1C30;
}

@media (max-width: 1199px) {
  .rnd-capabilities-diagram {
    max-width: 100%;
    min-height: 0;
    margin-bottom: -7cqi;
  }

  .rnd-capabilities-node--label-left .rnd-capabilities-node-label {
    right: 6.2cqi;
    max-width: 12cqi;
    font-size: 12.5px;
  }

  .rnd-capabilities-node--label-right .rnd-capabilities-node-label {
    left: 6.2cqi;
    max-width: 12cqi;
    font-size: 12.5px;
  }

  .rnd-capabilities-node--label-nudge.rnd-capabilities-node--label-left .rnd-capabilities-node-label,
  .rnd-capabilities-node--label-nudge.rnd-capabilities-node--label-right .rnd-capabilities-node-label {
    top: 2cqi;
  }

  .rnd-capabilities-node--label-bottom .rnd-capabilities-node-label,
  .rnd-capabilities-node-label--bottom {
    top: 5.4cqi;
  }
}

@media (max-width: 767px) {
  .rnd-capabilities-diagram {
    display: none;
  }

  .rnd-capabilities-list {
    display: block;
  }

  .rnd-capabilities {
    padding-bottom: 20px;
  }
}

/* ========== R&D infrastructure ========== */
.rnd-infra {
  background: #fff;
  padding: 20px 0 64px;
}

.rnd-infra-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.rnd-infra-title-dark {
  color: #0B1C30;
}

.rnd-infra-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.rnd-infra-rows {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.rnd-infra-row-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.rnd-infra-row--image-left .rnd-infra-row-inner {
  flex-direction: row;
}

.rnd-infra-row--image-right .rnd-infra-row-inner {
  flex-direction: row-reverse;
}

.rnd-infra-media {
  flex: 0 0 64%;
  max-width: 64%;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
}

.rnd-infra-media img {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.rnd-infra-card {
  flex: 0 0 50%;
  max-width: 528px;
  background: #fff;
  border-radius: 24px;
  padding: 47px 48px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
  position: relative;
  z-index: 2;
}

.rnd-infra-row--image-left .rnd-infra-card {
  margin-left: -12%;
}

.rnd-infra-row--image-right .rnd-infra-card {
  margin-right: -12%;
}

.rnd-infra-card-title {
  margin: 0 0 18px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.85rem);
  line-height: 1.25;
  color: #0B1C30;
}

.rnd-infra-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #5D5E61;
}

.rnd-infra-card-text p {
  margin: 0 0 0.75em;
  color: #000000;
}
.rnd-infra-card-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .rnd-infra {
    padding-bottom: 40px;
  }

  .rnd-infra-title {
    margin-bottom: 36px;
  }

  .rnd-infra-rows {
    gap: 40px;
  }

  .rnd-infra-row-inner {
    flex-direction: column !important;
    align-items: stretch;
    gap: 20px;
  }

  .rnd-infra-media,
  .rnd-infra-card {
    flex: 1 1 auto;
    max-width: 100%;
    margin: 0 !important;
  }

  .rnd-infra-media img {
    min-height: 220px;
    max-height: none;
  }

  .rnd-infra-card {
    padding: 28px 24px;
  }
}

/* ========== R&D development achievements ========== */
.rnd-achievements {
  background: #fff;
  padding: 16px 0 50px;
}

.rnd-achievements-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
  text-align: left;
}

.rnd-achievements-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rnd-achievements-icon i {
  font-size: 1.55rem;
  line-height: 1;
}

.rnd-achievements-icon img {
  width: 100%;
  object-fit: contain;
}

.rnd-achievements-copy {
  flex: 1;
  min-width: 0;
}

.rnd-achievements-title {
  margin: 0 0 5px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.2;
  color: #0B1C30;
}

.rnd-achievements-intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5D5E61;
}

.rnd-achievements-intro p {
  margin: 0 0 0.75em;
  color: #000000;
}
.rnd-achievements-intro p:last-child {
  margin-bottom: 0;
}

.rnd-achievements-slider {
  margin-top: 8px;
}

.rnd-achievements-owl {
  margin-top: 0;
}

.rnd-achievements-owl .item {
  padding: 0;
}

.rnd-achievements-chart {
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  max-width: 763px;
  margin: 0 auto;
}

.rnd-achievements-chart img {
  width: 100%;
  height: auto;
  display: block;
}

.rnd-achievements-chart-placeholder {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-size: 14px;
  color: #666;
  background: #f5f7fa;
}

.rnd-achievements-owl .owl-dots {
    margin-top: 30px !important;
  line-height: 1;
}

.rnd-achievements-owl .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: rgba(0, 0, 0, 0.22);
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.rnd-achievements-owl .owl-dots .owl-dot.active span,
.rnd-achievements-owl .owl-dots .owl-dot:hover span {
  background: #000;
}

.rnd-achievements-owl .owl-dots .owl-dot.active span {
  width: 30px;
  border-radius: 999px;
}

@media (max-width: 767px) {

  .rnd-achievements-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .rnd-achievements-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .rnd-achievements-icon i {
    font-size: 1.3rem;
  }

  .rnd-achievements-intro {
    font-size: 0.95rem;
  }
}

/* ========== R&D development to commercialization ========== */
.rnd-commercial {
  background: #fff;
  overflow: hidden;
}

.rnd-commercial-gradient {
  background: linear-gradient(135deg, #6CBF6D 0%, #52A661 38%, #23794D 100%);
  padding: 35px 0 220px;
}

.rnd-commercial-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.rnd-commercial-copy {
  flex: 1;
  min-width: 0;
  max-width: 960px;
}

.rnd-commercial-title {
  margin: 0 0 11px;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  color: #fff;
}

.rnd-commercial-title-regular {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
}

.rnd-commercial-title-bold {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.rnd-commercial-intro {
  margin: 0;
  max-width: 850px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}

.rnd-commercial-body {
  margin-top: -185px;
  padding-bottom: 45px;
  position: relative;
  z-index: 2;
}

.rnd-commercial-slider {
  position: relative;
  padding: 0 52px;
}

/* Prev / Next sit beside the product image cards */
.rnd-commercial-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 380px;
  z-index: 5;
  display: block;
  margin: 0;
  pointer-events: none;
}

.rnd-commercial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.rnd-commercial-nav-btn--prev {
  left: 0;
}

.rnd-commercial-nav-btn--next {
  right: 0;
}

.rnd-commercial-nav-btn i {
  font-size: 1.15rem;
  line-height: 1;
}

.rnd-commercial-nav-btn:hover,
.rnd-commercial-nav-btn:focus-visible {
  background: #111;
  border-color: #111;
  color: #fff;
  outline: none;
}

.rnd-commercial-owl .item {
  padding: 0 10px;
}

.rnd-commercial-product {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rnd-commercial-card {
  background: #fff;
  border: 1px solid #9B9B9B;
  border-radius: 22px;
  min-height: 310px;
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  box-sizing: border-box;
}

.rnd-commercial-card img {
  max-width: 100%;
  max-height: 258px;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.rnd-commercial-card-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: #f2f4f7;
}

.rnd-commercial-meta {
  padding: 0 6px;
}

.rnd-commercial-name {
  margin: 0 0 4px;
  font-family: "Satoshi-Bold", sans-serif;
      font-size: 1.3rem;
    line-height: 1.3;
    color: #0B1C30;
}

.rnd-commercial-category {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #5D5E61;
}

@media (max-width: 767px) {
  .rnd-commercial-gradient {
    padding: 45px 0 130px;
  }

  .rnd-commercial-head {
    flex-direction: column;
  }

  .rnd-commercial-slider {
    padding: 0 44px;
  }

  .rnd-commercial-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 320px;
    width: auto;
    margin: 0;
    pointer-events: none;
  }

  .rnd-commercial-nav-btn {
    width: 42px;
    height: 42px;
    border-color: #111;
    color: #111;
    background: #fff;
  }

  .rnd-commercial-nav-btn:hover,
  .rnd-commercial-nav-btn:focus-visible {
    background: #111;
    border-color: #111;
    color: #fff;
  }

  .rnd-commercial-body {
    margin-top: -100px;
  }

  /* Same centered product framing as desktop */
  .rnd-commercial-card {
    min-height: 300px;
    height: 300px;
    padding: 24px 20px;
    align-items: center;
    justify-content: center;
  }

  .rnd-commercial-card img {
    max-width: 85%;
    max-height: 220px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .rnd-intro {
    padding: 40px 0 40px;
  }

  .rnd-intro-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .rnd-intro-media {
    max-width: 220px;
  }

  .rnd-intro-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

/* ========== R&D page scroll motion ========== */
.page-rnd .rnd-capabilities-list.reveal-stagger .rnd-capabilities-list-item.reveal {
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-rnd .rnd-infra-rows.reveal-stagger .rnd-infra-row.reveal {
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-rnd .rnd-capabilities-hub.reveal-scale,
.page-rnd .rnd-capabilities-node.reveal-scale {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.page-rnd .rnd-capabilities-arm.reveal {
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .page-rnd .rnd-capabilities-arm.reveal {
    transition: none;
  }
}

/* ========== R&D page responsive (tablet/mobile only) ========== */
@media (max-width: 767px) {
  .page-rnd .rnd-capabilities-list {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-rnd .rnd-capabilities-title {
    margin-bottom: 32px;
  }

  .page-rnd .rnd-capabilities-list-item {
    gap: 12px;
  }

  .page-rnd .rnd-commercial-intro {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .page-rnd .rnd-intro-text {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .page-rnd .rnd-capabilities-list-icon {
    width: 50px;
    height: 50px;
  }

  .page-rnd .rnd-capabilities-list-icon i {
    font-size: 1.2rem;
  }

  .page-rnd .rnd-capabilities-list-icon img {
    width: 28px;
    height: 28px;
  }

  .page-rnd .rnd-infra-card-title {
    font-size: 1.35rem;
  }

  .page-rnd .rnd-achievements-chart {
    border-radius: 12px;
  }

  .page-rnd .rnd-commercial-title {
    font-size: 1.65rem;
  }
}

@media (max-width: 575px) {
  .page-rnd .rnd-capabilities {
    padding-bottom: 8px;
  }

  .page-rnd .rnd-capabilities-list-text {
    font-size: 0.9rem;
  }

  .page-rnd .rnd-infra-rows {
    gap: 32px;
  }

  .page-rnd .rnd-infra-media,
  .page-rnd .rnd-infra-media img {
    border-radius: 20px;
  }

  .page-rnd .rnd-infra-card {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .page-rnd .rnd-infra-card-text {
    font-size: 14px;
  }

  .page-rnd .rnd-achievements-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-rnd .rnd-achievements-title {
    font-size: 1.35rem;
  }

  .page-rnd .rnd-commercial-head {
    gap: 16px;
  }

  .page-rnd .rnd-commercial-nav {
    height: 300px;
    margin: 0;
    width: auto;
    justify-content: unset;
  }

  .page-rnd .rnd-commercial-slider {
    padding: 0 40px;
  }

  .page-rnd .rnd-commercial-body {
    margin-top: -80px;
  }

  .page-rnd .rnd-commercial-card {
    min-height: 300px;
    height: 300px;
    padding: 22px 16px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
  }

  .page-rnd .rnd-commercial-card img {
    max-width: 85%;
    max-height: 200px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
  }

  .page-rnd .rnd-commercial-owl .item {
    padding: 0 6px;
  }

  .page-rnd .rnd-commercial-name {
    font-size: 1.1rem;
  }

  .page-rnd .rnd-commercial-category {
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  .page-hero--has-image {
    min-height: 240px;
    height: 240px;
    background-position: center center;
  }

  .page-hero--has-image .page-hero-inner {
    padding: 32px 20px;
  }
}

@media (max-width: 575px) {
  .page-hero--has-image {
    min-height: 200px;
    height: 200px;
  }

  .page-hero--has-image .page-hero-inner {
    padding: 28px 16px;
  }

  .page-hero--has-image h1 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .about-who-title {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    margin-bottom: 18px;
  }

  .about-who-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .about-who-section {
    padding: 56px 0;
  }
}

.section-pad {
  padding: 88px 0;
}

.about-who-section {
  background: #fff;
  padding: 53px 0 0;
}

.about-who-wrap {
  text-align: center;
}

.about-who-title {
  margin: 0 0 30px;
  font-size: clamp(2.2rem, 4vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-who-title-dark {
  color: #1f2937;
  font-weight: 400;
}

.about-who-title-accent {
   font-family: "Satoshi-Bold", sans-serif;
   font-weight: 700;
  color: var(--nem-red-dark, #AB0013);
}

.about-who-text {
  margin: 0 0 20px;
  color: #000000;
  font-size: 14px;
  line-height: 1.75;
}
.about-who-text p {
  margin: 0;
}

.about-who-text p:last-child {
  margin-bottom: 0;
}

.about-who-text:last-of-type {
  margin-bottom: 0;
}

.about-who-video-wrap {
  margin-top: 14px;
  text-align: center;
}

.about-who-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
      min-width: 200px;
    padding: 16px 26px 16px;
  border-radius: 999px;
  background: var(--nem-red, #c8102e);
  color: #FFE9E7 !important;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-who-video-btn:hover {
  background: var(--nem-red-dark, #AB0013);
  color: #fff !important;
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
 .about-who-section {
    padding: 48px 0;
  }
}

@media (max-width: 767px) {
  .about-who-title {
    font-size: clamp(1.9rem, 5vw, 2.6rem);
    margin-bottom: 18px;
  }
}

@media (max-width: 575px) {
  .about-who-section {
    padding: 40px 0;
  }

  .about-who-title {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem);
    margin-bottom: 14px;
  }

  .about-who-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-who-video-wrap {
    margin-top: 22px;
  }

  .about-who-video-btn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 13px 24px 14px;
    font-size: 14px;
  }
}

.about-vision-section {
  position: relative;
  isolation: isolate;
  background-color: #c45a12;
  background-image: var(--vision-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(56px, 8vw, 100px) 0;
  overflow: hidden;
}

.about-vision-inner {
  position: relative;
  z-index: 1;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 0.7vw, 36px);
  align-items: stretch;
}

.about-vision-card {
  padding: clamp(28px, 3.5vw, 42px) clamp(22px, 3vw, 36px);
  border-radius: 18px;
  border: 1px solid #FAB214;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(80, 30, 0, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  text-align: center;
}

.about-vision-card-title {
  margin: 0 0 18px;
  color: #111111;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.about-vision-card-text {
  margin: 0;
  color: #111111;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.75;
}

.about-vision-card-text p {
  margin: 0 0 0.75em;
  font-size: 18px;
}

.about-vision-card-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .about-vision-section {
    padding: 48px 0;
  }

  .about-vision-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .about-vision-card {
    min-height: 0;
    padding: 24px 20px;
        background: rgb(255 255 255 / 39%);
  }
}

.about-history-section {
  position: relative;
  isolation: isolate;
  background-color: #AB0013;
  background-image: var(--history-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(28px, 3.5vw, 48px) 0 0;
  overflow: hidden;
  color: #fff;
}

.about-history-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 22vw) minmax(320px, 1.65fr) minmax(280px, 32vw);
  gap: clamp(10px, 1.8vw, 28px);
  align-items: end;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-history-portrait,
.about-history-collage,
.about-history-copy {
  min-width: 0;
  max-width: 100%;
}

.about-history-portrait,
.about-history-collage {
  margin: 0;
  width: 100%;
}

.about-history-portrait {
  overflow: visible;
  justify-self: start;
  width: 100%;
  max-width: 320px;
  align-self: end;
}

.about-history-portrait img,
.about-history-collage img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.about-history-portrait img {
  object-fit: contain;
  object-position: left bottom;
}

.about-history-copy {
  max-width: none;
  justify-self: stretch;
  align-self: center;
  width: 100%;
  padding: clamp(24px, 3vw, 48px) 0;
}

.about-history-collage {
  overflow: visible;
  justify-self: end;
  align-self: end;
  width: 100%;
  max-width: none;
  margin-right: 0;
  padding-right: 0;
}

.about-history-collage img {
  width: 100%;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.about-history-title {
  margin: 0 0 16px;

  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.about-history-title-light {
  margin-right: 0.28em;
}

.about-history-title-bold {
    font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.about-history-text p {
  margin: 0 0 0.95em;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.7;
  text-align: left;
}

.about-history-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .about-history-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px 0;
  }

  .about-history-copy {
    display: contents;
  }

  /* display:contents removes copy box — keep title/text visible without parent reveal */
  .about-history-copy.reveal,
  .about-history-title,
  .about-history-text {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .about-history-title {
    order: 1;
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .about-history-portrait {
    order: 2;
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    justify-self: center;
    align-self: center;
  }

  .about-history-text {
    order: 3;
    width: 100%;
    max-width: 780px;
  }

  /* Flush cut collage to the right + bottom so the crop edge reads intentional */
  .about-history-collage {
    order: 4;
    grid-column: auto;
    width: calc(100% + 16px);
    max-width: none;
    margin: 8px 0 0 auto;
    margin-right: -16px;
    margin-bottom: -24px;
    align-self: flex-end;
    justify-self: end;
  }

  .about-history-collage img {
    width: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .about-history-section {
    padding: 36px 0 0;
  }

  .about-history-title {
    font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  }

  .about-history-text p {
    text-align: left;
    font-size: 0.95rem;
  }
.about-history-collage {
      max-width: 400px;
    margin: 0 auto;
}
}


@media (max-width: 767px) {
  .about-history-portrait {
    max-width: 200px;
  }

  .about-history-title {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .about-history-text p {
    font-size: 0.9rem;
  }
}

/* ========== About History Timeline ========== */
.about-timeline-section {
  background: #fff;
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 100px);
}

.about-timeline {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 8px 0 0;
  max-width: 965px;
}

/* Line segments between items only — stops at last milestone (keeps left/right layout) */
.about-timeline::before {
  content: none;
}

.about-timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 100%;
  background: #f0c4cb;
  z-index: 0;
}

.about-timeline-item--left:not(:last-child)::before {
  right: 0;
  transform: translateX(50%);
}

.about-timeline-item--right:not(:last-child)::before {
  left: 0;
  transform: translateX(-50%);
}

.about-timeline-item {
  position: relative;
  width: 50%;
  z-index: 1;
  box-sizing: border-box;
}

.about-timeline-item:last-child {
  margin-bottom: 0;
}

.about-timeline-item--left {
  margin-right: auto;
  padding-right: 63px;
}

.about-timeline-item--right {
  margin-left: auto;
  padding-left: 63px;
}

.about-timeline-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-timeline-item--left .about-timeline-inner {
  justify-content: flex-end;
}

.about-timeline-item--right .about-timeline-inner {
  justify-content: flex-start;
  flex-direction: row-reverse;
  text-align: left;
}

.about-timeline-card {
  max-width: 347px;
  min-width: 0;
}

.about-timeline-title {
  margin: 0 0 8px;
  color: #000000;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1rem, 1.75vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
}

.about-timeline-text {
  margin: 0;
  color: #222222;
  font-size: clamp(0.88rem, 1.05vw, 0.96rem);
  line-height: 1.7;
}

.about-timeline-text p {
  margin: 0 0 0.65em;
  font-size: 14px;
  color: #000000;
}

.about-timeline-text p:last-child {
  margin-bottom: 0;
}

.about-timeline-year {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  min-height: 60px;
  padding: 4px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 2;
}

.about-timeline-year-text {
  font-family: "Satoshi-Black", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: #000;
  line-height: 1.15;
  text-align: center;
  border-top: 18px solid #AB0013;
  padding: 18px 12px 20px;
  background: #F8F8F8;
  border-radius: 8px;
  border-left: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  width: 100%;
}

.about-timeline-year::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}

.about-timeline-item--left .about-timeline-year::after {
  right: -24px;
  left: auto;
  transform: translateY(-50%);
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #AB0013;
}

.about-timeline-item--right .about-timeline-year::after {
  left: -24px;
  right: auto;
  transform: translateY(-50%);
  border-width: 10px 12px 10px 0;
  border-color: transparent #AB0013 transparent transparent;
}

.about-timeline-dot {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #AB0013;
  transform: translateY(-50%);
  z-index: 3;
  box-shadow: 0 0 0 4px #fff;
}

.about-timeline-item--left .about-timeline-dot {
  right: -10px;
  left: auto;
}

.about-timeline-item--right .about-timeline-dot {
  left: -10px;
  right: auto;
}

.about-timeline-item--left .about-timeline-card {
  padding-right: 28px;
  padding-left: 0;
}

.about-timeline-item--right .about-timeline-card {
  padding-left: 25px;
  padding-right: 0;
}

@media (max-width: 767px) {
  .about-timeline {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding-left: 8px;
    padding-right: 0;
  }

  .about-timeline::before {
    content: none;
  }

  .about-timeline-item:not(:last-child)::before,
  .about-timeline-item--left:not(:last-child)::before,
  .about-timeline-item--right:not(:last-child)::before {
    top: 34px;
    left: 10px;
    right: auto;
    transform: translateX(-50%);
    height: calc(100% + 32px);
  }

  .about-timeline-item,
  .about-timeline-item--left,
  .about-timeline-item--right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 32px;
    padding-left: 40px;
    padding-right: 0;
  }

  .about-timeline-item:last-child {
    margin-bottom: 0;
  }

  .about-timeline-inner,
  .about-timeline-item--left .about-timeline-inner,
  .about-timeline-item--right .about-timeline-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
  }

  .about-timeline-card {
    max-width: none;
    width: 100%;
    order: 2;
    padding-left: 0;
    padding-right: 0;
  }

  .about-timeline-year {
    order: 1;
    width: 78px;
    min-height: 52px;
  }

  .about-timeline-year-text {
    font-size: 0.82rem;
    padding: 14px 10px 16px;
    border-top-width: 14px;
  }

  .about-timeline-dot,
  .about-timeline-item--left .about-timeline-dot,
  .about-timeline-item--right .about-timeline-dot {
    left: 10px;
    right: auto;
    top: 24px;
    transform: translate(-50%, 0);
  }

  .about-timeline-item--left .about-timeline-year::after,
  .about-timeline-item--right .about-timeline-year::after {
    left: -10px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    border-width: 7px 8px 7px 0;
    border-color: transparent #AB0013 transparent transparent;
  }
}

/* ========== About Allied Business Cards ========== */
.about-allied-section {
  position: relative;
  isolation: isolate;
  background-color: #0a3d42;
  background-image: var(--allied-bg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(56px, 7vw, 100px) 0;
  overflow: hidden;
}

.about-allied-inner {
  position: relative;
  z-index: 1;
}

.about-allied-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 22px);
}

.about-allied-card {
  padding: clamp(28px, 3.85vw, 44px) clamp(24px, 4vw, 41px);
  background: #fff;
  border-radius: 22px;
  padding-right: 60px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-allied-card-title {
  margin: 0 0 8px;
  color: #1a1a1a;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.about-allied-card-text {
  color: #45464D;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.7;
}

.about-allied-card-text p {
  margin: 0 0 0.65em;
}


.about-allied-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-width: 95px;
  padding: 5px 12px 7px;
  border-radius: 6px;
  background: #AB0013;
  color: #fff !important;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-allied-card-btn:hover {
  background: #8b0010;
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .about-allied-section {
    padding: 48px 0;
  }

  .about-allied-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 16px;
  }

  .about-allied-card {
    min-height: 0;
    padding: 24px 22px;
  }
}

/* =========================================================
   ABOUT VALUES — manual edit
   Size knobs: .about-values-stage vars
   Positions: .about-value-node--1 … --9 (below)
   Desktop + tablet (768px+): same circular stage
   Phone (<768px): card grid
   ========================================================= */
.about-values-section {
  background: #fff;
  padding: clamp(12px, 2vw, 28px) 0 clamp(20px, 2.5vw, 40px);
  overflow: visible;
}

.about-values-stage {
  --values-stage-max: 920px;
  --values-stage-pad-y: 0;
  --values-stage-pad-x: 28px;
  --values-circle-size: 52%;
  --values-icon-size: clamp(38px, 4.4vw, 56px);
  --values-label-width: 240px;
  --values-icon-halo: 7px;

  position: relative;
  display: block;
  width: min(100%, var(--values-stage-max));
  max-width: var(--values-stage-max);
  margin: 0 auto;
  /* Wider than tall — cuts empty top/bottom space */
  aspect-ratio: var(--values-aspect, 1.22 / 1);
  overflow: visible;
  color: #000000;
  padding: var(--values-stage-pad-y) var(--values-stage-pad-x);
  box-sizing: border-box;
}

.about-value-node {
  position: absolute;
  inset: 0;
  z-index: 3;
  color: var(--value-color, #c8102e);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--node-delay, 0s);
}

.about-values-stage.is-visible .about-value-node,
.about-value-node.is-visible {
  opacity: 1;
  transform: none;
}

.about-values-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.97);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.08s;
}

.about-values-stage.is-visible .about-values-art {
  opacity: 1;
  transform: none;
}

.about-values-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--values-circle-size, 50%);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.about-values-circle-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--values-conic);
  /* Thick colored ring (like screenshot wedges) */
  -webkit-mask: radial-gradient(farthest-side, transparent 54%, #000 55%);
  mask: radial-gradient(farthest-side, transparent 54%, #000 55%);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.1));
}

/* Thin white arc through the middle of the ring (screenshot detail) */
.about-values-circle-midline {
  position: absolute;
  inset: 3.5%;
  border-radius: 50%;
  /*border: 5px solid rgba(255, 255, 255, 0.95);*/
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  z-index: 1;
}

.about-values-circle-inner {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.03),
    0 10px 26px rgba(0, 0, 0, 0.05);
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-values-circle-inner img {
  display: block;
  width: 58%;
  height: auto;
  max-width: 140px;
  object-fit: contain;
  pointer-events: none;
}

.about-value-node-icon {
  position: absolute;
  left: var(--icon-left, 50%);
  top: var(--icon-top, 50%);
  width: var(--values-icon-size);
  height: var(--values-icon-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  /* Screenshot: white disc → colored ring → white center → icon */
  background: #fff;
  border: 3px solid var(--value-color, #c8102e);
  color: var(--value-color, #c8102e);
  box-shadow:
    0 0 0 var(--values-icon-halo, 7px) #fff,
    0 8px 22px rgba(80, 110, 150, 0.28);
  transform: translate(-50%, -50%);
  z-index: 4;
  overflow: visible;
}

.about-value-node-icon i {
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.about-value-node-icon-img {
  width: 48%;
  height: 48%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.about-value-node-copy {
  position: absolute;
  left: var(--label-left, 50%);
  top: var(--label-top, 50%);
  width: min(var(--values-label-width), 26%);
  max-width: var(--values-label-width);
  z-index: 2;
  box-sizing: border-box;
  overflow: visible;
}

/* Align helpers (also set per-node below if needed) */
.about-value-align--left .about-value-node-copy {
  transform: translate(-100%, -50%);
  text-align: right;
}

.about-value-align--right .about-value-node-copy {
  transform: translate(0, -50%);
  text-align: left;
}

.about-value-align--center .about-value-node-copy {
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(var(--values-label-width), 26%);
  max-width: var(--values-label-width);
}

.about-value-node-title {
  margin: 0 0 6px;
  color: #1a1a1a;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(0.85rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 1.3;
}

.about-value-node-text {
  margin: 0;
  color: #333;
  font-size: clamp(0.8rem, 1vw, 0.92rem);
  line-height: 1.4;
}

/* ---------------------------------------------------------
   DESKTOP POSITIONS — do not change for tablet overrides below
   --icon-left / --icon-top     = icon center (%)
   --label-left / --label-top   = text point (%)
   --------------------------------------------------------- */

/* 1 End to End Process */
.about-value-node--1 {
  --icon-left: 27%;
  --icon-top: 63.9%;
  --label-left: 21.5%;
  --label-top: 67%;
}

/* 2 Quality Value */
.about-value-node--2 {
  --icon-left: 25.5%;
  --icon-top: 42%;
  --label-left: 20.5%;
  --label-top: 42%;
}

/* 3 Regulatory Support */
.about-value-node--3 {
  --icon-left: 35%;
  --icon-top: 24%;
  --label-left: 31%;
  --label-top: 17%;
}

/* 4 Advance Technologies */
.about-value-node--4 {
  --icon-left: 51.8%;
  --icon-top: 18.6%;
  --label-left: 51.7%;
  --label-top: 9.5%;
}

/* 5 Focused Efficacy */
.about-value-node--5 {
  --icon-left: 67.6%;
  --icon-top: 27.3%;
  --label-left: 73%;
  --label-top: 25%;
}

/* 6 Trusted Worldwide */
.about-value-node--6 {
  --icon-left: 75.4%;
  --icon-top: 47%;
  --label-left: 80.5%;
  --label-top: 46.6%;
}

/* 7 Industry Support */
.about-value-node--7 {
  --icon-left: 72%;
  --icon-top: 67.5%;
  --label-left: 78%;
  --label-top: 68%;
}

/* 8 Generic Medicine */
.about-value-node--8 {
  --icon-left: 57.3%;
  --icon-top: 79.9%;
  --label-left: 57.9%;
  --label-top: 90%;
}

/* 9 Affordability */
.about-value-node--9 {
  --icon-left: 39%;
  --icon-top: 78.9%;
  --label-left: 40%;
  --label-top: 90%;
}

.about-values-grid {
  display: none;
}
@media (max-width: 991px) {
.about-value-node--4 {
    --label-top: 7.5%;
}
.about-value-node--8 {
    --label-top: 92%;
}
.about-value-node--9 {
    --label-top: 93%;
}
}
/* Tablet: same desktop layout/positions; inset so side text is not clipped */
@media (min-width: 768px) and (max-width: 991px) {
  /* Allow label overhang; stage is inset so page should not scroll sideways */
  .page-about main {
    overflow-x: visible;
  }

  .page-about .about-values-section {
    overflow: visible;
    padding: 28px 0 40px;
  }

  .page-about .about-values-section .container {
    overflow: visible;
    max-width: 100%;
  }

  .about-values-stage {
    /* Same desktop settings — only width inset so labels stay on-screen */
    --values-stage-max: 920px;
    --values-stage-pad-y: 0;
    --values-stage-pad-x: 28px;
    --values-circle-size: 52%;
    --values-icon-size: clamp(38px, 4.4vw, 56px);
    --values-label-width: 240px;
    --values-icon-halo: 7px;

    /* Side gutters ≈ label overhang outside the ring */
    width: 90%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: var(--values-aspect, 1.22 / 1);
    overflow: visible;
  }

  /* Keep desktop icon + label placement */
  .about-value-node-icon {
    left: var(--icon-left, 50%);
    top: var(--icon-top, 50%);
    border-width: 3px;
  }

  .about-value-node-copy {
    left: var(--label-left, 50%);
    top: var(--label-top, 50%);
    width: min(var(--values-label-width), 26%);
    max-width: var(--values-label-width);
    overflow: visible;
  }

  .about-value-align--left .about-value-node-copy {
    transform: translate(-100%, -50%);
    text-align: right;
  }

  .about-value-align--right .about-value-node-copy {
    transform: translate(0, -50%);
    text-align: left;
  }

  .about-value-align--center .about-value-node-copy {
    transform: translate(-50%, -50%);
    text-align: center;
    width: min(var(--values-label-width), 26%);
    max-width: var(--values-label-width);
  }

  .about-value-node-title {
    margin-bottom: 6px;
    font-size: clamp(0.85rem, 1.15vw, 1.05rem);
    line-height: 1.3;
  }

  .about-value-node-text {
    font-size: clamp(0.8rem, 1vw, 0.92rem);
    line-height: 1.4;
  }
}

/* Phone: card grid (768px+ keeps desktop circle + manual positions) */
@media (max-width: 767px) {
  .about-values-section {
    padding: 8px 0 48px;
  }

  .about-values-stage {
    display: none;
  }

  .about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-value-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 12px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fff;
    min-width: 0;
  }

  .about-value-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--value-color, #c8102e);
    color: var(--value-color, #c8102e);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .about-value-icon i {
    font-size: 1.1rem;
  }

  .about-value-icon-img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    display: block;
  }

  .about-value-copy {
    min-width: 0;
    flex: 1;
  }

  .about-value-title {
    margin: 0 0 4px;
    color: #111;
    font-family: "Satoshi-Bold", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .about-value-text {
    margin: 0;
    color: #444;
    font-size: 0.84rem;
    line-height: 1.45;
  }
}

@media (max-width: 479px) {
  .about-values-section {
    padding: 4px 0 40px;
  }

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

  .about-value-card {
    padding: 14px 12px;
    gap: 12px;
  }

  .about-value-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .about-value-title {
    font-size: 0.95rem;
  }

  .about-value-text {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-value-node,
  .about-values-art {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* About page — shared tablet/mobile polish (desktop rules above stay as-is) */
@media (max-width: 767px) {
  .about-vision-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .about-vision-card-text {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-history-title {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin-bottom: 14px;
  }

  .about-history-text p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-timeline-section {
    padding: 40px 0 56px;
  }

  .about-timeline-item--left .about-timeline-card,
  .about-timeline-item--right .about-timeline-card {
    padding-left: 0;
    padding-right: 0;
  }

  .about-allied-card-title {
    font-size: 1.2rem;
  }

  .about-allied-card-text {
    font-size: 0.92rem;
  }
}

@media (max-width: 767px) {
  .about-vision-card-title {
    font-size: 1.25rem;
  }

  .about-history-copy {
    text-align: left;
  }

  .about-history-text p {
    font-size: 0.88rem;
  }

  .about-history-collage {
    width: calc(100% + 16px);
    max-width: none;
    margin: 8px 0 0 auto;
    margin-right: -16px;
    padding: 0;
  }

  .about-timeline-title {
    font-size: 0.98rem;
  }

  .about-timeline-text {
    font-size: 0.86rem;
    line-height: 1.6;
  }


  .about-timeline-year-text {
    font-size: 0.75rem;
  }

  .about-timeline-item--left .about-timeline-card,
  .about-timeline-item--right .about-timeline-card {
    padding-left: 0;
    padding-right: 0;
  }

  .about-allied-card-btn {
    min-width: 108px;
    padding: 9px 18px;
    font-size: 0.88rem;
  }
}

@media (max-width: 575px) {
  .about-vision-section {
    padding: 36px 0;
  }

  .about-vision-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

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

  .about-history-layout {
    padding: 0 12px 0;
    gap: 18px;
  }

  .about-history-portrait {
    max-width: 180px;
  }

  .about-history-collage {
    width: calc(100% + 12px);
    margin-right: -12px;
  }

  .about-timeline-section {
    padding: 32px 0 44px;
  }

  .about-timeline {
    padding-left: 4px;
  }

  .about-timeline-item,
  .about-timeline-item--left,
  .about-timeline-item--right {
    padding-left: 34px;
  }

  .about-timeline-item:not(:last-child)::before,
  .about-timeline-item--left:not(:last-child)::before,
  .about-timeline-item--right:not(:last-child)::before {
    left: 8px;
  }

  .about-timeline-dot,
  .about-timeline-item--left .about-timeline-dot,
  .about-timeline-item--right .about-timeline-dot {
    left: 8px;
  }

  .about-allied-section {
    padding: 36px 0;
  }

  .about-allied-grid {
    max-width: none;
  }

  .about-allied-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--nem-text);
}

.section-lead {
  color: var(--nem-muted);
  margin-bottom: 28px;
}

.product-card {
  border: 1px solid var(--nem-border);
  border-radius: 4px;
  padding: 18px;
  height: 100%;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-precision-owl .product-card {
  padding: 28px 18px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: #f0c0c8;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.08);
}

.product-card h3 {
  font-size: 1.13rem;
  color: #000000;
  margin: 0 0 12px;
}

.product-card p {
  margin: 0;
  color: var(--nem-muted);
  font-size: 0.95rem;
}

.product-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 4px;
  background: #f3f3f3;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-nem,
.btn-nem-outline,
.btn-nem-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-nem {
  background: var(--nem-red);
  color: #fff !important;
  border: none;
}

.btn-nem:hover {
  background: var(--nem-red-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-nem-outline {
  background: transparent;
  color: var(--nem-red) !important;
  border: 1.5px solid var(--nem-red);
}

.btn-nem-outline:hover {
  background: var(--nem-red);
  color: #fff !important;
}

.btn-nem-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.btn-nem-light:hover {
  background: #fff;
  color: var(--nem-red) !important;
}

.btn-nem-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* ========== Reveal motion (home / about / contact / allied / career / products) ========== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
.reveal-delay-4 { transition-delay: 0.8s; }
.reveal-delay-5 { transition-delay: 1s; }
.reveal-delay-6 { transition-delay: 1.2s; }

.reveal-from-left {
  transform: translate3d(-56px, 0, 0);
}

.reveal-from-right {
  transform: translate3d(56px, 0, 0);
}

.reveal-from-left.is-visible,
.reveal-from-right.is-visible {
  transform: none;
}

.reveal-scale {
  transform: translate3d(0, 28px, 0) scale(0.94);
}

.reveal-scale.is-visible {
  transform: none;
}

.reveal-fade {
  transform: none;
}

/* Banner / hero titles that are above the fold */
.page-hero-anim {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  animation: pageHeroIn 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.page-hero-anim-delay {
  animation-delay: 0.5s;
}

@keyframes pageHeroIn {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-from-left,
  .reveal-from-right,
  .reveal-scale,
  .reveal-fade,
  .page-hero-anim {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .reveal-from-left,
  .reveal-from-right {
    transform: none;
  }
}

.home-kicker {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--nem-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-kicker.kicker-light {
  color: var(--nem-yellow);
}

.home-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--nem-ink);
  margin: 0 0 12px;
}

.home-section-lead {
  max-width: 560px;
  margin: 0;
  color: var(--nem-muted);
  font-size: 1.02rem;
}

.section-head {
  margin-bottom: 40px;
}

.section-head-light .home-section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--nem-red);
  font-weight: 700;
}

.text-link:hover {
  gap: 12px;
  color: var(--nem-red-dark);
}

/* ========== Home hero ========== */
.home-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #1a0508;
  /* Reserve banner space before photo loads — prevents below-fold sections
     from sitting in-view, animating early, then getting pushed down (CLS). */
  min-height: min(100vh, 640px);
}

.home-hero-owl,
.home-hero-owl .owl-stage-outer,
.home-hero-owl .owl-stage,
.home-hero-owl .owl-item,
.home-hero-slide {
  min-height: min(100vh, 640px);
}

/* Owl is collapsed / measuring until .owl-loaded — keep reserved height */
.home-hero-owl:not(.owl-loaded) {
  display: block;
  min-height: min(100vh, 640px);
}

.home-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2a050c 0%, #6d0c1c 50%, #c8102e 100%);
}

.home-hero-slide.has-photo {
  background: #140408;
}

.home-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
}

/*.home-hero-slide.has-photo .home-hero-overlay {
  background: linear-gradient(90deg, rgba(8, 0, 2, 0.92) 0%, rgba(8, 0, 2, 0.72) 30%, rgba(8, 0, 2, 0.28) 52%, rgba(8, 0, 2, 0.04) 100%);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 0, 2, 0.9) 0%, rgba(8, 0, 2, 0.72) 34%, rgba(8, 0, 2, 0.35) 58%, rgba(8, 0, 2, 0.1) 100%);
  pointer-events: none;
}*/

.home-hero-copy .hero-anim {
  opacity: 0;
  transform: translateY(28px);
}

.home-hero-owl:not(.owl-loaded) .home-hero-copy .hero-anim {
  opacity: 1;
  transform: none;
}

.owl-item.active .home-hero-copy .hero-anim {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.owl-item:not(.active) .home-hero-copy .hero-anim {
  animation: none;
  opacity: 0;
  transform: translateY(28px);
}

.owl-item.active .hero-anim-1 { animation-delay: 0.12s; }
.owl-item.active .hero-anim-2 { animation-delay: 0.26s; }
.owl-item.active .hero-anim-3 { animation-delay: 0.4s; }
.owl-item.active .hero-anim-4 { animation-delay: 0.54s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-copy .hero-anim,
  .owl-item.active .home-hero-copy .hero-anim,
  .owl-item:not(.active) .home-hero-copy .hero-anim {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 32px;
  padding-bottom: 72px;
  width: 100%;
}

.home-hero-copy {
  max-width: 560px;
}
.home-hero-copy.home-hero-copy-4 {
    max-width: 620px;
}

.home-hero-title {
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 700;
}

.home-hero-title-line,
.home-hero-title-accent {
  display: block;
  color: #fff;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}
.home-hero-title-line.hero-anim-1 {
  font-family: "Satoshi-Regular", sans-serif;
  font-weight: 400;
}
.home-hero-title-accent {
  font-size: inherit;
  line-height: inherit;
}
.home-hero-text {
  max-width: 415px;
  margin: 0 0 28px;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.home-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px 12px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  background: #D31E24;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.home-hero-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 160, 70, 0.75);
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
  display: none;
}

.home-hero-cta:hover {
  color: #fff;
  background: rgba(200, 16, 46, 0.35);
  border-color: rgba(255, 190, 90, 0.95);
  box-shadow: 0 0 22px rgba(255, 120, 40, 0.35);
  transform: translateY(-1px);
}

/* Owl nav / dots */
.home-hero-owl .owl-nav {
  margin: 0;
}

.home-hero-owl .owl-nav button.owl-prev,
.home-hero-owl .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-hero-owl .owl-nav button.owl-prev { left: 12px; }
.home-hero-owl .owl-nav button.owl-next { right: 12px; }

.home-hero-owl .owl-nav button:hover {
  background: rgba(200, 16, 46, 0.85) !important;
  color: #fff !important;
}

.home-hero-owl .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.home-hero-owl .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.25s ease, background 0.2s ease;
}

.home-hero-owl .owl-dots .owl-dot.active span,
.home-hero-owl .owl-dots .owl-dot:hover span {
  width: 28px;
  background: #fff;
  transform: none;
}

/* Mobile / tablet: image on top, copy below with banner background */
@media (max-width: 767px) {
  .home-hero {
    min-height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0508 0%, #4a0a14 48%, #8f0f22 100%);
    border-bottom: 0;
  }

  .home-hero-owl {
    position: relative;
  }

  .home-hero-owl,
  .home-hero-owl .owl-stage-outer,
  .home-hero-owl .owl-stage,
  .home-hero-owl .owl-item,
  .home-hero-slide,
  .home-hero-owl:not(.owl-loaded) {
    min-height: 0 !important;
    height: auto !important;
  }

  .home-hero-owl .owl-stage-outer,
  .home-hero-owl .owl-stage,
  .home-hero-owl .owl-item {
    height: auto !important;
  }

  .home-hero-slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    background: transparent;
  }

  .home-hero-slide.has-photo {
    background: transparent;
  }

  .home-hero-photo {
            position: relative;
        inset: auto;
        left: auto;
        right: auto;
        z-index: 0;
        display: block;
        width: 200%;
        max-width: none;
        min-width: 150%;
        height: auto;
        min-height: 0;
        margin-left: -45%;
        aspect-ratio: 13 / 7;
        object-fit: cover;
        object-position: right center;
  }

  .home-hero-overlay {
    display: none !important;
  }

  .home-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 0 52px;
    background-color: transparent;
    background-image: none;
    border-bottom: 0;
  }

  .home-hero-copy,
  .home-hero-copy.home-hero-copy-4 {
    max-width: none;
  }

  .home-hero-text {
    max-width: none;
  }

  .home-hero-owl .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    top: auto;
    margin: 0 !important;
    padding: 0;
    background: transparent;
    z-index: 6;
  }

  .home-hero-owl .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: none;
  }

  .home-hero-owl .owl-dots .owl-dot.active span,
  .home-hero-owl .owl-dots .owl-dot:hover span {
    background: #FFD400;
  }
}

/* Tablet + desktop: show full banner image (no crop). Mobile ≤767 unchanged above. */
@media (min-width: 768px) {
  .home-hero {
    min-height: 0;
    height: auto;
  }

  .home-hero-owl,
  .home-hero-owl .owl-stage-outer,
  .home-hero-owl .owl-stage,
  .home-hero-owl .owl-item,
  .home-hero-slide,
  .home-hero-owl:not(.owl-loaded) {
    min-height: 0 !important;
    height: auto !important;
  }

  .home-hero-owl .owl-stage-outer,
  .home-hero-owl .owl-stage,
  .home-hero-owl .owl-item {
    height: auto !important;
  }

  .home-hero-slide {
    display: block;
    overflow: hidden;
  }

  .home-hero-slide:not(.has-photo) {
    display: flex;
    align-items: center;
    min-height: min(56vh, 480px);
  }

  .home-hero-photo {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }

  .home-hero-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .home-hero-slide:not(.has-photo) .home-hero-inner {
    position: relative;
    inset: auto;
  }
}

.home-kicker-link {
  color: inherit;
  text-decoration: none;
}

.home-kicker-link:hover {
  color: #fff;
}

/* ========== Stats bar (below hero) ========== */
.home-stats-bar {
  --stats-yellow: #FFD400;
  --stats-yellow-soft: #FFF3A0;
  --stats-accent: #AB0013;
  background: var(--stats-yellow);
  color: #000;
  padding: 0;
  overflow: hidden;
}

.home-stats-inner {
  display: flex;
  align-items: stretch;
  min-height: 87px;
  width: 100%;
}

.home-stats-intro {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFE877;
  padding: 11px 61px 13px clamp(20px, 4vw, 56px);
  clip-path: polygon(0 0, calc(100% - 55px) 0, 100% 50%, calc(100% - 55px) 100%, 0 100%);
}

.home-stats-intro-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.home-stats-intro-copy {
  min-width: 0;
}

.home-stats-intro-line {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
}

.home-stats-intro-accent {
  margin: 4px 0 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: 28px;
  color: var(--stats-accent);
}

.home-stats-grid {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-evenly;
  padding: 8px clamp(16px, 3vw, 40px) 8px clamp(28px, 4vw, 56px);
  column-gap: 0;
  padding-left: 0;
  padding-right: 131px;
}

.home-stats-item {
  position: relative;
  flex: 1 1 0;
  text-align: center;
  padding: 4px 20px;
}
.home-stats-item:first-child {
  padding-left: 0;
}
.home-stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background: #111;
}

.home-stats-value {
  display: block;
  font-family: "Satoshi-Black", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000;
}

.home-stats-label {
  display: block;
  margin-top: 6px;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 500;
  color: #010101;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .home-stats-inner {
    flex-direction: column;
    min-height: 0;
  }

  .home-stats-intro {
    flex: none;
    width: 100%;
    clip-path: none;
    padding: 22px clamp(20px, 4vw, 40px);
    justify-content: center;
  }

  .home-stats-grid {
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 22px 16px;
  }

  .home-stats-item {
    padding: 4px 12px;
  }
}

@media (max-width: 767px) {
  .home-stats-intro {
    gap: 12px;
    padding: 20px 18px;
  }

  .home-stats-intro-icon {
    width: 36px;
    height: 36px;
  }

  .home-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
    column-gap: 0;
    padding: 20px 10px;
  }

  .home-stats-item {
    padding: 4px 8px;
  }
  .home-stats-value {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
  }

  .home-stats-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .home-stats-intro {
    flex-direction: column;
    text-align: center;
  }

  .home-stats-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .home-stats-item::after {
    display: none !important;
  }
}

/* ========== About / Who We Are ========== */
.home-about {
  position: relative;
  background-color: #fff;
  background-image: var(--who-we-are-bg, url('../../images/bg-pattern.webp'));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: visible;
  border-bottom: none;
  padding: 37px 0 56px;
  text-align: center;
}

.home-about-inner {
  position: relative;
  z-index: 1;
}

.home-about-title {
  margin: 0 0 15px;
  font-family: var(--font-display, sans-serif);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.home-about-title-light {
  color: #111;
  font-weight: 500;
      font-family: "Satoshi-Medium", sans-serif;
}

.home-about-title-accent {
  color: var(--nem-red-dark, #AB0013);
   font-family: var(--font-display, "Satoshi-Bold", sans-serif);
  font-weight: 700;
}

.home-about-copy {
  margin-bottom: 36px;
}

.home-about-copy p,
.home-about-copy-p {
  margin: 0 0 23px;
  font-size: 15px;
  line-height: 1.75;
  color: #000000;
}

.home-about-copy p:last-child,
.home-about-copy-p:last-of-type {
  margin-bottom: 36px;
}

/* Stronger entrance for Who We Are — avoid skipped / invisible transitions */
.page-home .home-about .reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
}

.page-home .home-about .reveal-scale:not(.is-visible) {
  transform: translate3d(0, 36px, 0) scale(0.92);
}

.page-home .home-about .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.home-about-categories {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 30px;
  margin: 0 auto 20px;
  padding: 0;
  max-width: 920px;
}

.home-about-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--nem-red-dark, #AB0013);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.3;
  font-family: "Satoshi-Medium", sans-serif;
}

.home-about-category img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.home-about-logos {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px ;
  padding-block: 1rem;
  touch-action: pan-y;
}

.home-about-logos-track {
  display: flex;
  width: max-content;
  animation: home-about-marquee 42s linear infinite;
  will-change: transform;
}

.home-about-logos.is-paused .home-about-logos-track {
  animation-play-state: paused;
}

.home-about-logos-group {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 15px;
}

.home-about-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.home-about-logo.is-clickable {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-about-logo.is-clickable:hover,
.home-about-logo.is-clickable:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home-about-logo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.home-about-logo-btn img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.home-about-logo img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

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

.home-about-cta-wrap {
  text-align: center;
}

.home-about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
      min-width: 140px;
    padding: 15px 27px 17px;
  border-radius: 999px;
  background: #D31E24;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-about-cta:hover {
  background: var(--nem-red-dark, #AB0013);
  color: #fff !important;
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .home-about {
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 767px) {
  .home-about {
    padding: 35px 0 48px;
    background-size: cover;
    background-position: center center;
  }

  .home-about-categories {
    gap: 18px 24px;
    margin-bottom: 32px;
  }

  .home-about-category {
    flex: 1 1 100%;
    justify-content: center;
  }

  .home-about-logo {
    width: 140px;
    height: 90px;
  }

  .home-about-logos-track {
    animation-duration: 32s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-about-logos-track {
    animation: none;
  }
}

/* ========== Health First ========== */
.home-health-first {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 140px 0;
  background-color: #70bf6e;
  background-image: url('../../images/health-firstbg.webp');
  background-size: cover;
  background-position: 162px;
  background-repeat: no-repeat;
}

.home-health-first-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.home-health-first-inner {
  position: relative;
  z-index: 1;
}


.home-health-first-kicker {
  margin: 0 0 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.home-health-first-title {
  margin: 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.home-health-first-quote {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
      font-family: "Satoshi-Medium", sans-serif;
  line-height: 1.7;
}

.home-health-first-text {
  margin: 0;
  max-width: 560px;
  color: #fff;

  line-height: 1.7;
}

.home-health-first-text p {
  margin: 0 0 0.75em;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
      font-family: "Satoshi-Medium", sans-serif;
  line-height: 1.5;
}

.home-health-first-text p:last-child {
  margin-bottom: 0;
}

.home-health-first-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-health-first-copy-right {
  padding-left: 120px;
}
@media (max-width: 1910px) {
.home-health-first {
    background-position: 152px;
}
}
@media (max-width: 1839px) {
.home-health-first {
    background-position: 132px;
}
}
@media (max-width: 1739px) {
.home-health-first {
    background-position: 90px;
}
}
@media (max-width: 1639px) {
.home-health-first {
    background-position: 40px;
}
}
@media (max-width: 1539px) {
.home-health-first {
    background-position: -22px;
}
}
@media (max-width: 1439px) {
.home-health-first {
  padding: 100px 0;
}
  .home-health-first {
        background-position: 28px;
    }
    .home-health-first-copy-right {
    padding-left: 65px;
}
}
@media (max-width: 1399px) {
    .home-health-first {
        background-position: 15px;
    }
}
@media (max-width: 1300px) {
    .home-health-first {
        background-position: -38px;
    }
    .home-health-first-copy-right {
    padding-left: 65px;
}
}
@media (max-width: 1279px) {
    .home-health-first {
        background-position: -86px;
    }
  }
  @media (max-width: 1210px) {
      .home-health-first {
        background-position: -84px;
    }
  }
    @media (max-width: 1199px) {
      .home-health-first {
        background-position: -98px;
    }
  }
@media (max-width: 1179px) {
      .home-health-first {
        padding: 70px 0;
    }
    .home-health-first {
        background-position: -50px;
    }
    .home-health-first-copy-right {
        padding-left: 30px;
    }
  }
@media (max-width: 1100px) {
  .home-health-first {
        background-position: -85px;
    }
    .home-health-first-copy-right {
        padding-left: 22px;
    }
  }
@media (max-width: 1079px) {
      .home-health-first {
        background-position: -108px;
    }
  }
@media (max-width: 991px) {
  .home-health-first {
    padding: 56px 0;
    text-align: center;
  }
.home-health-first {
        background-position: center;
    }
  .home-health-first-copy-left,
  .home-health-first-copy-right {
    text-align: center;
  }

  .home-health-first-text {
    max-width: none;
    margin-inline: auto;
  }
 .home-health-first-quote, .home-health-first-text p {
    font-size: 18px;
  }
  .home-health-first-title {
    font-size: clamp(1.8rem, 3.1vw, 3.1rem);
  }
  .home-health-first-inner .row{
  max-width: 450px;
  margin-left: auto;
}
.home-health-first-copy-left, .home-health-first-copy-right , .home-health-first-text,
.home-health-first-text p{
        text-align: left;
    }
    .home-health-first-copy-left {
      padding-left: 0;
    }
    .page-home .home-health-first-copy-right {
      padding-left: 0;
    }
}
@media (max-width: 991px) {
    .home-health-first-inner .row {
        max-width: 386px;
    }
  }
@media (max-width: 639px) {
    .home-health-first-inner .row {
        max-width: 355px;
    }
  }
@media (max-width: 574px) {
      .home-health-first-inner .row {
        max-width: 315px;
    }
  }
@media (max-width: 479px) {
.home-health-first-inner .row {
        max-width: 275px;
    }
  }
/* ========== Precision Manufacturing ========== */

.home-precision {
  color: #111;
  padding: 48px 0 20px;
  overflow: visible;
      max-width: 100vw;
    overflow: hidden;
}

.home-precision-head {
  text-align: center;
  margin-bottom: 36px;
}

.home-precision-title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  line-height: 1.15;
}

.home-precision-title-light {
  color: #111111;
  font-weight: 500;
      font-family: "Satoshi-Medium", sans-serif;
}

.home-precision-title-accent {
  color: #AB0013;
  font-weight: 700;
      font-family: "Satoshi-Bold", sans-serif;
}

.home-precision-subtitle {
  margin: 0 auto 8px;
  max-width: 1070px;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}

.home-precision-subtitle p {
  margin: 0 0 0.55em;
  color: #000000;
  font-size: 16px;
}

.home-precision-subtitle p:last-child {
  margin-bottom: 0;
}

.home-precision-subtitle a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-precision-all {
  display: inline-block;
  color: #111111;
  font-size: 0.98rem;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: none;
}

.home-precision-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  overflow: visible;
}

.home-precision-owl {
  overflow: visible;
  width: 100%;
  padding-bottom: 0;
}

.home-precision-owl .owl-stage-outer {
  overflow: visible !important;
  padding: 28px 0 16px;
}

.home-precision-owl .owl-stage {
  display: flex;
  align-items: center;
}

.home-precision-owl .owl-item {
  float: left;
  width: auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-precision-owl .owl-item.center {
  z-index: 5;
}

.home-precision-owl .owl-item.active:not(.center) {
  z-index: 2;
}

.precision-card-wrap {
  width: 330px;
  max-width: 330px;
  padding: 8px 0 6px;
  height: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  opacity: 0.82;
  transform: scale(0.9) translateY(8px);
  transition: transform 0.45s ease, opacity 0.45s ease;
  transform-origin: center center;
}

.home-precision-owl .owl-item.center .precision-card-wrap {
  opacity: 1;
  transform: scale(1.12) translateY(0);
}

.home-precision-owl .owl-item.center .precision-card {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* Keep slider width/animation; reuse products-page card UI inside */
.precision-card.product-card {
  position: relative;
  width: 330px;
  max-width: 330px;
  margin: 0;
  height: auto;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.precision-card.product-card:hover,
.precision-card.product-card:focus,
.precision-card.product-card:focus-visible {
  color: inherit;
  text-decoration: none;
}

.precision-card .product-card-media {
  height: 150px;
}

.precision-card .product-card-body {
  padding: 0;
  flex: 1;
}

.precision-card .product-card-title {
  font-size: 17px;
  margin-bottom: 10px;
}

.precision-card .product-card-meta {
  margin-bottom: 0;
}

.precision-card .product-card-meta h4 {
  font-size: 15px;
}

.precision-card.product-card .product-card-meta p {
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.precision-card .product-card-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 34px;
  font-size: 0.78rem;
  margin-top: 8px;
  text-decoration: none;
  cursor: pointer;
}

.precision-card .product-card-quote:hover,
.precision-card .product-card-quote:focus,
.precision-card .product-card-quote:focus-visible {
  border-color: #c8102e;
  color: #c8102e;
  background: #fff8f9;
  text-decoration: none;
}

.home-precision-owl .owl-nav {
  margin: 0;
  position: static;
}

.home-precision-owl .owl-nav button.owl-prev,
.home-precision-owl .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  color: #111 !important;
  font-size: 1.15rem !important;
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.08),
    0 10px 28px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  z-index: 20;
  opacity: 1 !important;
}

.home-precision-owl .owl-nav button.owl-prev { left: -8px; }
.home-precision-owl .owl-nav button.owl-next { right: -8px; }

.home-precision-owl .owl-nav button:hover {
  background: #fff !important;
  border-color: #AB0013 !important;
  color: #AB0013 !important;
  box-shadow:
    0 4px 10px rgba(171, 0, 19, 0.12),
    0 14px 32px rgba(15, 23, 42, 0.22);
}

.home-precision-owl .owl-nav button span,
.precision-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.home-precision-owl .owl-nav button i {
  font-size: 1.2rem;
  line-height: 1;
}

.home-precision-owl .owl-dots {
  margin-top: 35px !important;
  line-height: 1;
}
.home-precision-owl .owl-dots .owl-dot.active span {
    width: 30px;
    border-radius: 999px;
}
.home-precision-owl .owl-dots .owl-dot.active span, .home-precision-owl .owl-dots .owl-dot:hover span {
    background: #000;
}
.home-precision-owl .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background:rgba(18, 18, 18, 0.3) !important;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.home-precision-owl .owl-dots .owl-dot.active span,
.home-precision-owl .owl-dots .owl-dot:hover span {
  background: #111111 !important;
}

.home-precision-owl .owl-dots .owl-dot.active span {
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 991px) {
  .home-precision-owl .product-card,
  .precision-card.product-card {
    min-height: 0;
    height: auto;
    padding: 18px 16px 20px;
  }

  .precision-card-wrap {
    padding: 6px 0;
  }

  .precision-card .product-card-media {
    height: 128px;
  }

  .precision-card .product-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .precision-card .product-card-meta h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .precision-card.product-card .product-card-meta p {
    font-size: 13px;
    line-height: 1.45;
  }

  .home-precision-owl .owl-item.center .precision-card-wrap {
    transform: scale(1.09) translateY(0);
  }
}

@media (max-width: 767px) {
  .home-precision-owl .owl-nav button.owl-prev,
  .home-precision-owl .owl-nav button.owl-next {
    display: none !important;
  }

  .home-precision-slider {
    padding: 0 4px;
  }

  .home-precision-owl .owl-stage-outer {
    padding: 20px 0 12px;
  }

  .home-precision-title {
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .home-precision {
    padding: 40px 0 35px;
  }

  .home-precision-head {
    margin-bottom: 24px;
  }

  .home-precision-owl .product-card,
  .precision-card.product-card {
    min-height: 0;
    height: auto;
    padding: 12px 12px 14px;
    width: 220px;
    max-width: 220px;
  }
.home-precision-slider .active.center .product-card.precision-card {
  padding: 28px 12px;
}
  .precision-card-wrap {
    width: 220px;
    max-width: 220px;
    padding: 2px 0;
    opacity: 0.88;
    transform: scale(0.94) translateY(4px);
  }

  .precision-card .product-card-media {
    height: 96px;
  }

  .precision-card .product-card-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .precision-card .product-card-meta h4 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .precision-card .product-card-quote {
    min-width: 100%;
    height: 30px;
    margin-top: 6px;
  }

  .precision-card.product-card .product-card-meta p {
    font-size: 12px;
    line-height: 1.35;
  }

  .home-precision-owl .owl-item.center .precision-card-wrap,
  .page-home .home-precision-owl .owl-item.center .precision-card-wrap {
    transform: scale(1.05) translateY(0);
  }
}

/* ========== Precision pillars ========== */
.home-precision-pillars {
  position: relative;
  padding: 40px 0 60px;
  color: #111;
  background: #fff;
  overflow: hidden;
}

.home-pillars-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.home-pillars-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  line-height: 1.15;
}

.home-pillars-title-light {
  color: #111111;
  font-weight: 500;
  font-family: "Satoshi-Medium", sans-serif;
}

.home-pillars-title-accent {
  color: #AB0013;
  font-weight: 700;
  font-family: "Satoshi-Bold", sans-serif;
}

.home-pillars-subtitle {
  margin: 0 auto 20px;
  max-width: 625px;
  line-height: 1.65;
  color: #222;
}

.home-pillars-subtitle p {
  margin: 0 0 0.55em;
  color: inherit;
  line-height: inherit;
}

.home-pillars-subtitle p:last-child {
  margin-bottom: 0;
}

.home-pillars-subtitle a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-pillars-link {
  display: inline-block;
  margin-top: 4px;
  color: #111 !important;
  font-size: 0.98rem;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.home-pillars-link:hover {
  opacity: 0.85;
  color: #111 !important;
}

.home-pillars-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
}

.home-pillar-card {
  --pillar-accent: #FFD400;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  min-width: 0;
  height: auto;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.home-pillar-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.home-pillar-card.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.home-pillar-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #1b4d28;
  overflow: hidden;
  flex-shrink: 0;
}

.home-pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-pillar-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2f7a3a, #145028);
}

.home-pillar-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 64px;
  padding: 25px 29px;
  background: #F3F3F3;
  text-align: center;
  color: #111;
  text-decoration: none;
  transition: background 0.2s ease;
}

.home-pillar-card-link:hover .home-pillar-footer,
.home-pillar-card-link:focus-visible .home-pillar-footer {
  background: #EBEBEB;
}

.home-pillar-card-link:hover .home-pillar-title,
.home-pillar-card-link:focus-visible .home-pillar-title {
  color: #111;
}

.home-pillar-title {
  margin: 0;
  font-family: "Satoshi-Black", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.home-pillar-accent {
  display: block;
  height: 17px;
  width: 100%;
  margin-top: auto;
  background: var(--pillar-accent);
  flex-shrink: 0;
}
@media (max-width: 992px) {
.home-pillar-title {
    font-size: 20px;
}
}

/* Phone only: compact row, accent on the side. Tablet keeps 3-col like landscape/desktop. */
@media (max-width: 767px) {
  .home-precision-pillars {
    padding: 0 0 40px;
  }

  .home-pillars-head {
    margin-bottom: 24px;
  }

  .home-pillars-grid,
  .page-home .home-pillars-grid {
    max-width: none;
    margin-inline: 0;
    gap: 10px;
    padding: 0;
  }

  .home-pillar-card,
  .page-home .home-pillar-card {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .home-pillar-card-link {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .home-pillar-media {
    flex: 0 0 72px;
    width: 72px;
    max-width: 72px;
    aspect-ratio: 1 / 1;
    max-height: none;
  }

  .home-pillar-media img {
    object-fit: cover;
  }

  .home-pillar-footer {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 8px 12px;
    justify-content: flex-start;
    text-align: left;
  }

  .home-pillar-title,
  .page-home .home-pillar-title {
    font-size: 0.88rem;
    line-height: 1.25;
    text-align: left;
  }

  .home-pillar-accent {
    flex: 0 0 8px;
    width: 8px;
    height: auto;
    align-self: stretch;
    margin-top: 0;
  }
}

/* ========== Global Presence ========== */
.home-global-presence {
  background: #FAFAFA;
  padding: 55px 0 50px;
  overflow: hidden;
}

.home-global-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 36px;
}

.home-global-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.55rem);
  font-weight: 500;
  line-height: 1.25;
  color: #333;
}
.home-global-title-prefix {
  display: block;
}
.home-global-title-prefix,
.home-global-title-suffix {
  color: #333;
  font-weight: 500;
}

.home-global-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold",sans-serif;
  font-weight: 700;
}

.home-global-title-suffix {
  color: #333;
  font-family: "Satoshi-Bold",sans-serif;
  font-weight: 700;
}

.home-global-subtitle {
  line-height: 1.65;
  color:#000000;
}

.home-global-subtitle p {
  margin: 0 0 0.55em;
  color: inherit;
  line-height: inherit;
}

.home-global-subtitle p:last-child {
  margin-bottom: 0;
}

.home-global-subtitle a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-global-map-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 20px 16px 16px;
  margin: 0 auto 30px;
  max-width: 1100px;
  overflow: visible;
}

.home-global-map-stage {
  position: relative;
  width: 100%;
  overflow: visible;
}

.home-global-map {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  pointer-events: none;
  user-select: none;
}

.home-global-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.home-global-marker.is-active {
  z-index: 5;
  opacity: 1;
  visibility: visible;
}

.home-global-marker-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #AB0013;
  box-shadow: 0 0 0 4px rgba(171, 0, 19, 0.2);
  transform: scale(0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.home-global-marker.is-active .home-global-marker-dot {
  transform: scale(1.45);
  box-shadow: 0 0 0 7px rgba(171, 0, 19, 0.28);
  animation: home-global-marker-pulse 1.15s ease-out infinite;
}

.home-global-marker.is-active::before,
.home-global-marker.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(171, 0, 19, 0.55);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.8;
  pointer-events: none;
  animation: home-global-marker-ring 1.15s ease-out infinite;
}

.home-global-marker.is-active::after {
  animation-delay: 0.35s;
}

@keyframes home-global-marker-pulse {
  0%, 100% {
    transform: scale(1.35);
  }
  50% {
    transform: scale(1.55);
  }
}

@keyframes home-global-marker-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.4);
    opacity: 0;
  }
}

.home-global-callout {
  position: absolute;
  left: 0;
  top: 0;
  width: min(300px, 78vw);
  padding: 14px 16px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  text-align: left;
  z-index: 40;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-100% - 16px));
  transition: opacity 0.15s ease, visibility 0.15s ease;
  color: inherit;
  cursor: default;
  display: block;
}

.home-global-callout.is-visible {
  opacity: 1;
  visibility: visible;
}

.home-global-callout::after {
  content: '';
  position: absolute;
  left: calc(50% + var(--arrow-shift, 0px));
  top: 100%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: #fff;
}

.home-global-callout-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.home-global-callout-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.home-global-callout-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.home-global-callout-divider {
  height: 1px;
  background: #e6e6e6;
  margin: 0 0 10px;
}

.home-global-callout-row {
  margin: 0 0 6px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #333;
}

.home-global-callout-row:last-child {
  margin-bottom: 0;
}

.home-global-callout-row--products {
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  color: #333;
  transition: color 0.2s ease;
  cursor: pointer;
}

.home-global-callout-row--products:hover,
.home-global-callout-row--products:focus {
  color: var(--nem-red-dark, #AB0013);
}

.home-global-callout-row span {
  font-weight: 700;
}

.home-global-flags {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 0;
  display: block;
  overflow: visible;
}

.home-global-flags-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0 6px;
  overflow: visible;
}

.home-global-flags-viewport {
  flex: 1;
  min-width: 0;
  padding: 0px 2px 0 12px;
  overflow: hidden;
 }

.home-global-flags-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  will-change: transform;
}

.home-global-flags-group {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding-right: 36px;
  flex: 0 0 auto;
}

.home-global-flags-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.08),
    0 8px 20px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  z-index: 3;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-global-flags-nav:hover,
.home-global-flags-nav:focus-visible {
  border-color: #AB0013;
  color: #AB0013;
  outline: none;
}

.home-global-flags-nav i {
  font-size: 1.1rem;
  line-height: 1;
}

.home-global-flag-item {
  width: 90px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  filter: none;
}

.home-global-flag-item:disabled {
  cursor: default;
  opacity: 0.85;
}

.home-global-flag-item.is-active .home-global-flag-img,
.home-global-flag-item:hover .home-global-flag-img {
  box-shadow: 0 0 0 2px #AB0013;
}

.home-global-flag-img {
  display: block;
  width: 90px;
  height: 55px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  background: #f3f3f3;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  filter: none;
}

.home-global-flag-item:hover .home-global-flag-img,
.home-global-flag-item.is-active .home-global-flag-img {
  transform: translateY(-2px);
}

.home-global-flag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}

.home-global-flag-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  .home-global-flags-track {
    transition: none !important;
  }
}
@media (max-width: 1365px) {
.home-hero-title {
    font-size: clamp(2.1rem, 4.6vw, 3rem);
}
}

@media (max-width: 767px) {
  .home-global-presence {
    padding: 40px 0 40px;
  }

  .home-global-map-card {
    border-radius: 20px;
    padding: 28px 12px 16px;
    margin-bottom: 28px;
  }

  .home-global-flags {
    gap: 14px;
  }

  .home-global-flags-row {
    padding: 8px 0 4px;
    gap: 6px;
  }

  .home-global-flags-nav {
    width: 36px;
    height: 36px;
  }

  .home-global-flags-group {
    gap: 22px;
    padding-right: 22px;
  }

  .home-global-flag-item {
    width: 64px;
  }

  .home-global-flag-img {
    width: 48px;
    height: 32px;
  }
}

/* ========== Brands ========== */
.home-brands {
  background: #faf7f2;
}

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

.brand-tile {
  background: #fff;
  border: 1px solid #eee4d8;
  padding: 22px 18px;
  min-height: 150px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-tile:hover {
  transform: translateY(-4px);
  border-color: #f0c0c8;
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.08);
}

.brand-tile-image {
  width: 100%;
  height: 120px;
  margin-bottom: 14px;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}

.brand-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-tile-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--nem-yellow);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 14px;
}

.brand-tile h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0 0 8px;
  color: var(--nem-ink);
}

.brand-tile p {
  margin: 0;
  color: var(--nem-muted);
  font-size: 0.9rem;
}

/* ========== Services ========== */
.home-services {
  background:
    linear-gradient(160deg, #7a0d1d 0%, #c8102e 55%, #9a1024 100%);
  color: #fff;
}

.service-card {
  display: block;
  height: 100%;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  color: #fff !important;
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--nem-yellow);
  color: #1a1a1a;
  font-size: 1.25rem;
}

.service-icon img,
.fact-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.home-about-image {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.home-about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 280px;
}

.news-card-image {
  width: 100%;
  height: 140px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #f3f3f3;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.service-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nem-yellow);
}

/* ========== Facts ========== */
.home-facts {
  background: #fff;
}

.fact-card {
  height: 100%;
  padding: 24px 20px;
  border-top: 3px solid var(--nem-yellow);
  background: #fff;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
}

.fact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.fact-top i {
  font-size: 1.35rem;
  color: var(--nem-red);
}

.fact-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--nem-ink);
  letter-spacing: -0.03em;
}

.fact-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== Journey ========== */
.home-journey {
  background: #111;
  color: #fff;
}

.home-journey .home-section-title {
  color: #fff;
}

.home-journey .home-kicker {
  color: var(--nem-yellow);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.journey-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--nem-yellow), var(--nem-red));
  opacity: 0.55;
}

.journey-step {
  position: relative;
  padding-top: 42px;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--nem-yellow);
  box-shadow: 0 0 0 6px rgba(245, 197, 24, 0.2);
}

.journey-year {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--nem-yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.journey-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ========== News ========== */
.home-news {
  background: #faf7f2;
}

.news-card {
  height: 100%;
  padding: 22px 20px;
  background: #fff;
  border-left: 3px solid var(--nem-red);
}

.news-meta {
  margin: 0 0 10px;
  color: var(--nem-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: var(--nem-ink);
}

.news-card p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ========== CTA ========== */
.home-cta {
  background: var(--nem-yellow);
  padding: 40px 0;
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.home-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin: 0 0 6px;
  color: #1a1a1a;
}

.home-cta p {
  margin: 0;
  color: #333;
}


/* ========== Footer ========== */
.site-footer {
  position: relative;
  color: #fff;
  padding: 64px 0 0;
  background-color: #3a0a12;
  background-image: url('../../images/footer-bg.png');
  background-image: image-set(
    url('../../images/footer-bg.webp') type('image/webp'),
    url('../../images/footer-bg.png') type('image/png')
  );
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  border-top: 10px solid #FFD400;
}

/* Back to top — brand red (logo) + white arrow */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 1040;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--nem-red-dark, #AB0013);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(171, 0, 19, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--nem-red, AB0013);
  color: #fff;
  outline: none;
  box-shadow: 0 10px 28px rgba(171, 0, 19, 0.45);
}

.back-to-top .bi {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}

@media (max-width: 767px) {
  .back-to-top {
    right: 16px;
    bottom: 20px;
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #31041073;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  grid-template-areas:
    "brand about quality infra rnd"
    "brand products careers contact contact";
  column-gap: 38px;
  row-gap: 36px;
  padding-bottom: 42px;
  align-items: start;
}

.footer-brand { grid-area: brand; padding-right: 12px;    width: 280px; }
.footer-col-about { grid-area: about; }
.footer-col-quality { grid-area: quality; }
.footer-col-infra { grid-area: infra; }
.footer-col-rnd { grid-area: rnd; }
.footer-col-products { grid-area: products; }
.footer-col-careers { grid-area: careers; }
.footer-col-contact { grid-area: contact; min-width: 0; }

.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 28px;
  align-items: start;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact li:last-child {
  grid-column: 1 / -1;
  max-width: 420px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 79px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Same light logo file as header; render white on dark footer */
  filter: brightness(0) invert(1);
}

.footer-blurb {
      margin: 0 0 19px;
    font-size: 1.01rem;
    line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-social-btn {
      width: 33px;
    height: 33px;
    border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #AB0013;
  border: none;
  font-size: 17px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-btn:hover {
  color: #fff;
  background: #a00d25;
  transform: translateY(-1px);
}

.footer-heading {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.footer-heading-spaced {
  margin-top: 0;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0 0 8px;
  line-height: 1.45;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  opacity: 0.8;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
  opacity: 0.85;
}

.footer-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.footer-contact-phone-line {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.45;
}

.footer-contact-phone-line:hover {
  color: #fff;
  opacity: 0.85;
}

.footer-contact-text {
  display: block;
}

.footer-contact-address:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-icon-wrap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
      width: 27px;
}

.footer-contact-icon {
  flex-shrink: 0;
  display: block;
  object-fit: contain;
      width: 30px;
}

.footer-bottom {
  margin-top: 4px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.35em;
  display: inline-block;
}

.footer-bottom a:hover {
  color: #fff;
  opacity: 0.85;
}

@media (max-width: 1199px) {
  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    grid-template-areas:
      "brand about quality infra"
      "brand products careers contact"
      "brand rnd rnd contact";
    column-gap: 28px;
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "about quality"
      "infra rnd"
      "products careers"
      "contact contact";
    column-gap: 32px;
    row-gap: 28px;
  }

  .footer-brand {
    padding-right: 0;
  }

}

@media (max-width: 576px) {
  .footer-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "about"
      "quality"
      "infra"
      "rnd"
      "products"
      "careers"
      "contact";
    row-gap: 15px;
        padding-bottom: 12px;
  }

  .footer-blurb {
    max-width: none;
  }
}

/* ========== Forms ========== */
.contact-form .form-control {
  border-radius: 6px;
  border-color: #ddd;
  padding: 10px 12px;
}

.contact-form .form-control:focus {
  border-color: var(--nem-red);
  box-shadow: 0 0 0 0.2rem rgba(200, 16, 46, 0.15);
}

/* ========== Allied Business page ========== */

.page-allied-business #allied-businesses,
.page-allied-business #neel-arts {
  scroll-margin-top: var(--site-header-offset-full, var(--site-header-offset, 122px));
}

.allied-section {
  background: #fff;
  padding: 60px 0;
}

.allied-section-head {
  text-align: center;
  margin-bottom: 64px;
}

.allied-section-title {
  margin: 0 0 22px;
  
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.allied-section-title-light {
  color: #000;
  font-weight: 400;
}

.allied-section-title-accent {
  color: var(--nem-red-dark, #AB0013);
  font-weight: 700;
  font-family: "Satoshi-Bold", sans-serif;
}

.allied-section-intro {
  color: #000000;
  font-size: 15px;
  line-height: 1.75;
}

.allied-section-intro p {
  margin: 0 0 0.75em;
}

.allied-section-intro p:last-child {
  margin-bottom: 0;
}

.allied-items {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.allied-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: center;
}

.allied-item-media {
  min-width: 0;
}

.allied-item-media img,
.allied-item-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 28px;
  background: #e8eef3;
}

.allied-item-placeholder {
  background:
    linear-gradient(135deg, rgba(0, 160, 200, 0.18), rgba(0, 80, 140, 0.08)),
    linear-gradient(180deg, #d7e6ef 0%, #c5d6e2 100%);
}

.allied-item-copy {
  min-width: 0;
}

.allied-item-title {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.allied-item-title-accent {
  color: var(--nem-red-dark, #AB0013);
  font-family: "Satoshi-Bold", sans-serif;
}

.allied-item-title-rest {
  color: #000;
}

.allied-item-subtitle {
  margin: 0 0 14px;
  color: #000;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.allied-item-text {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.75;
}

.allied-item-text p {
  margin: 0 0 0.75em;
}

.allied-item-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .allied-section {
    padding: 56px 0 64px;
  }

  .allied-section-head {
    margin-bottom: 40px;
  }

  .allied-section-title {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem);
    margin-bottom: 16px;
  }

  .allied-section-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .allied-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .allied-item-title {
    font-size: clamp(1.65rem, 4vw, 2.1rem);
  }

  .allied-item-subtitle {
    font-size: 1.05rem;
  }

  .allied-items {
    gap: 44px;
  }
}

@media (max-width: 575px) {
  .allied-section {
    padding: 40px 0 0;
  }

  .allied-section-head {
    margin-bottom: 28px;
  }

  .allied-item-media img,
  .allied-item-placeholder {
    border-radius: 20px;
  }

  .allied-item-title {
    font-size: clamp(1.45rem, 6.5vw, 1.75rem);
    margin-bottom: 8px;
  }

  .allied-item-subtitle {
    font-size: 0.98rem;
    margin-bottom: 10px;
  }

  .allied-item-text {
    font-size: 13px;
    line-height: 1.65;
  }

  .allied-items {
    gap: 36px;
  }
}

/* ========== Our Expertise (Allied Business) ========== */

.expertise-section {
  background: #fff;
  padding: 35px 0 60px;
  overflow: visible;
}

.expertise-section-title {
  position: relative;
  z-index: 3;
  margin: 0 0 16px;
  text-align: center;
  color: #111;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.expertise-honeycomb {
  --hex-w: 200px;
  --hex-h: 226px;
  --hex-gap: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0 56px;
  overflow: visible;
}

.expertise-fills {
  position: absolute;
     left: 48%;
    top: 48%;
    z-index: 0;
    width: 93%;
  max-width: 100%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.expertise-fills-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.expertise-fills.reveal.is-visible,
.expertise-fills.reveal {
  transform: translate(-50%, -50%);
}

.expertise-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
      gap: 15px;
    margin: 20px 0;
}

.expertise-row--bottom {
  margin-top: calc(var(--hex-h) * -0.27);
}

.expertise-hex {
  flex: 0 0 var(--hex-w);
  width: var(--hex-w);
  height: var(--hex-h);
  filter: none;
  background-image: url('../../images/expertise/newsquare.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
}

.expertise-hex-face {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 20px 44px;
  text-align: center;
  background: transparent;
  
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.expertise-hex::before {
  content: '';
    position: absolute;
    left: -30px;
    top: 8px;
    width: 100%;
    height: 100%;
    background: url(../../images/expertise/square-shadow.png);
    z-index: -1;
    background-size: 100% 100%;
}
.expertise-hex-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.expertise-hex-icon-font {
  font-size: 1.9rem;
  color: #111;
  line-height: 1;
}

.expertise-hex-text {
  margin: 0;
  max-width: 11em;
  color: #111;
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .expertise-honeycomb {
    --hex-w: 168px;
    --hex-h: 194px;
    --hex-gap: 8px;
  }

  .expertise-hex::before {
    left: -22px;
  }

  .expertise-hex-face {
    padding: 40px 22px 36px;
    gap: 10px;
  }

  .expertise-hex-icon {
    width: 34px;
    height: 34px;
  }

  .expertise-hex-text {
    font-size: 0.76rem;
  }
}

@media (max-width: 767px) {
  .expertise-section {
    padding: 52px 0 64px;
  }

  .expertise-section-title {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem);
    margin-bottom: 12px;
  }

  .expertise-honeycomb {
    --hex-w: 136px;
    --hex-h: 157px;
    --hex-gap: 6px;
    padding: 12px 0 20px;
  }

  .expertise-fills {
    top: 52%;
    width: 100%;
  }

  .expertise-hex::before {
    display: none;
  }

  .expertise-row {
    gap: 10px;
    margin: 12px 0;
  }

  .expertise-hex-face {
    padding: 32px 14px 28px;
    gap: 8px;
  }

  .expertise-hex-icon {
    width: 28px;
    height: 28px;
  }

  .expertise-hex-icon-font {
    font-size: 1.35rem;
  }

  .expertise-hex-text {
    font-size: 0.66rem;
  }
}

@media (max-width: 767px) {
  .expertise-section {
    padding: 40px 0 0;
    overflow: hidden;
  }

  .expertise-section-title {
    margin-bottom: 12px;
  }

  .expertise-honeycomb {
    --hex-w: min(150px, 43vw);
    --hex-h: calc(var(--hex-w) * 1.15);
    --hex-gap: 10px;
    /* Full-bleed so rotated fill can reach screen edges */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    /* Bottom space stays inside the fills box; top spacing is on the section */
    padding: 8px 0 48px;
    overflow: hidden;
  }

  /* Rotated fill, edge-to-edge, clipped — no page overflow */
  .expertise-fills {
    display: block;
    left: 50%;
    top: 50%;
    /* After -90deg, width maps to visual height; size so visual width = 100vw */
    width: calc(100vw * 1024 / 522);
    max-width: none;
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .expertise-fills.reveal.is-visible,
  .expertise-fills.reveal {
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .expertise-hex::before {
    display: none;
  }

  .expertise-row {
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0;
  }

  .expertise-row--bottom {
    margin-top: 12px;
  }

  .expertise-hex-face {
    padding: 34px 16px 30px;
  }

  .expertise-hex-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .expertise-honeycomb {
    --hex-w: min(138px, 45vw);
    --hex-gap: 8px;
  }

  .expertise-row {
    gap: 8px;
  }

  .expertise-hex-face {
    padding: 28px 12px 26px;
    gap: 6px;
  }

  .expertise-hex-icon {
    width: 24px;
    height: 24px;
  }

  .expertise-hex-icon-font {
    font-size: 1.15rem;
  }

  .expertise-hex-text {
    font-size: 0.64rem;
  }
}

/* ========== Raw & Packaging Materials ========== */

.raw-packaging-section {
  position: relative;
  background-color: #8b0a1a;
  background-image: var(--raw-pack-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 72px 0;
  overflow: hidden;
}

.raw-packaging-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.raw-packaging-title {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.raw-packaging-text {
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  line-height: 1.75;
max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.raw-packaging-text p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.raw-packaging-text p:last-child {
  margin-bottom: 0;
}

.raw-packaging-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
     min-width: 160px;
    padding: 18px 32px;
  border: 1px solid #fff;
  border-radius: 28px;
  background: transparent;
  color: #fff;
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.raw-packaging-btn:hover {
  background: #fff;
  color: #8b0a1a;
  text-decoration: none;
}

@media (max-width: 767px) {
  .raw-packaging-section {
    padding: 64px 0;
    background-position: center center;
  }

  .raw-packaging-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .raw-packaging-title {
    font-size: 24px;
  }

  .raw-packaging-text {
    margin-bottom: 28px;
  }

  .raw-packaging-text p {
    margin-bottom: 14px;
  }
}

@media (max-width: 575px) {
  .raw-packaging-section {
    padding: 48px 0;
  }

  .raw-packaging-title {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .raw-packaging-text {
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.65;
  }

  .raw-packaging-text p {
    margin-bottom: 12px;
  }

  .raw-packaging-btn {
    min-width: 148px;
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 18px;
  }
}

/* ========== Neel Arts ========== */

.neel-arts-section {
  background: #fff;
  padding: 60px 0px;
}

.neel-arts-inner {
  text-align: center;
}

.neel-arts-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.neel-arts-title-light {
  color: #111;
}

.neel-arts-title-accent {
  color: var(--nem-red-dark, #AB0013);
  font-weight: 700;
  font-family: "Satoshi-Bold", sans-serif;
}

.neel-arts-subtitle {
  margin: 0 0 22px;
  color: #111;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.neel-arts-text {
  color: #222;
  font-size: 14px;
  line-height: 1.75;
}

.neel-arts-text p {
  margin: 0 0 0.75em;
}

.neel-arts-text p:last-child {
  margin-bottom: 0;
}

.neel-arts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-width: 168px;
  padding: 18px 34px 19px;
  border-radius: 999px;
  background: #A30018;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
      font-family: "Satoshi-Medium", sans-serif;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.neel-arts-btn:hover {
  background: var(--nem-red-dark, #AB0013);
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .neel-arts-section {
    padding: 56px 0 48px;
  }

  .neel-arts-title {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  }

  .neel-arts-subtitle {
    font-size: 16px;
  }

}

@media (max-width: 575px) {
  .neel-arts-section {
    padding: 40px 0 0;
  }

  .neel-arts-title {
    margin-bottom: 14px;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .neel-arts-subtitle {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .neel-arts-text {
    font-size: 13px;
    line-height: 1.65;
  }
}

/* ========== Our Services (Neel Arts) ========== */

.our-services-section {
  --svc-lime: #a4d234;
  --svc-teal: #006d5b;
  position: relative;
  padding: 10px 0 22px ;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.our-services-container {
  position: relative;
  z-index: 1;
}

.our-services-title {
  margin: 0 0 clamp(36px, 5vw, 56px);
  text-align: center;
  color: #000;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.svc-flow {
  position: relative;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.svc-node {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
}

.svc-node + .svc-node {
  margin-top: -40px
}
.svc-node + .svc-node.svc-node--md {
    margin-top: -95px;
}
.svc-node-inner {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 100%;
}

.svc-node--left {
  padding-right: clamp(4%, 8vw, 14%);
}

.svc-node--left .svc-node-inner {
  flex-direction: row;
      position: relative;
    z-index: 9;
}

.svc-node--right {
  justify-content: flex-end;
  padding-left: clamp(2%, 5vw, 10%);
}

.svc-node--right .svc-node-inner {
  flex-direction: row;
}

.svc-node--teal {
  padding-left: clamp(0%, 2vw, 4%);
}

.svc-node-circle {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;

}

.svc-node--sm .svc-node-circle {
  width: 190px;
    height: 190px;
    border-width: 6px;
    border: 13px solid #4FC42C;
}

.svc-node--md .svc-node-circle {
      width: 250px;
    height: 250px;
    border-width: 7px;
    border: 18px solid #008065;
}
.svc-node--md .svc-node-inner {
    align-items: flex-end;
}
.svc-node--lg .svc-node-circle {
  width: 380px;
  height: 380px;
  border-width: 8px;
  border: 20px solid #ADD925;
}

.svc-node-circle img {
  width: 46%;
  height: 46%;
  object-fit: contain;
  display: block;
}

.svc-node-circle i {
  font-size: 1.5rem;
  color: #111;
  line-height: 1;
}

.svc-node-pill {
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

.svc-node--sm .svc-node-pill {
  max-width: 245px ;
  font-size: 13px;
      line-height: 1.5;
  background: #4FC42C;
}

.svc-node--left.svc-node--sm .svc-node-pill {
    justify-content: flex-end;
    padding: 30px 40px 30px 23px;
    margin-right: -40px;
    border-radius: 80px 0 0 80px;
}

.svc-node--md .svc-node-pill {
max-width: 245px;
    min-height: 100px;
    padding: 12px 30px 12px 58px;
    font-size: 13px;
    line-height: 1.5;
    margin-left: -42px;
    background: #008065;
    border-radius: 0 80px 80px 0;
    margin-bottom: 38px;
}
.svc-node--md {
  justify-content: center;
}

.svc-node--lg .svc-node-pill {
  max-width: 250px;
  padding: 34px 34px 34px 68px;
  border-radius: 0 80px 80px 0;
    font-size: 13px;
        line-height: 1.5;
    margin-left: -52px;
        min-height: 155px;
    background: #ADD925;
}

.svc-node--left .svc-node-trails,
.svc-node--md .svc-node-trails,
.svc-node--lg .svc-node-trails,
.svc-node--right .svc-node-trails {
  position: absolute;
  left: -8px;
  bottom: 6px;
  width: 100%;
  height: 28px;
  pointer-events: none;
  z-index: 1;
}

.svc-node--left .svc-node-trails::before,
.svc-node--left .svc-node-trails::after,
.svc-node--md .svc-node-trails::before,
.svc-node--md .svc-node-trails::after,
.svc-node--lg .svc-node-trails::before,
.svc-node--lg .svc-node-trails::after,
.svc-node--right .svc-node-trails::before,
.svc-node--right .svc-node-trails::after {
  content: "";
  position: absolute;
  background: #4FC42C;
  border-radius: 999px;
}

.svc-node--md .svc-node-trails::before,
.svc-node--md .svc-node-trails::after {
  background: #008065;
}

.svc-node--lg .svc-node-trails::before,
.svc-node--lg .svc-node-trails::after {
  background: #ADD925;
}

.svc-node--left.svc-node--sm .svc-node-trails::before {
  left: 100px;
  top: 8px;
  width: 105px;
  height: 15px;
}

.svc-node--left.svc-node--sm .svc-node-trails::after {
  left: 81px;
  bottom: 5px;
  width: 15px;
  height: 15px;
}

.svc-node--md .svc-node-trails::before,
.svc-node--left.svc-node--md .svc-node-trails::before {
  left: auto;
  right: 0;
  top: 8px;
  width: 130px;
  height: 15px;
}

.svc-node--md .svc-node-trails::after,
.svc-node--left.svc-node--md .svc-node-trails::after {
  left: auto;
  right: -20px;
  bottom: 5px;
  width: 15px;
  height: 15px;
}

.svc-node--lg .svc-node-trails {
    bottom: auto;
    top: 0;
}
.svc-node--lg .svc-node-inner::before {
      content: "";
    position: absolute;
    border-radius: 999px;
    right: 70px;
    top: -10px;
    width: 160px;
    height: 12px;
    bottom: auto;
    background: #ADD925;
            
}
.svc-node--right.svc-node--lg .svc-node-trails::before,
.svc-node--lg .svc-node-trails::before {
      left: 252px;
    top: 10px;
    width: 200px;
    height: 20px;
    bottom: auto;
}

.svc-node--right.svc-node--lg .svc-node-trails::after,
.svc-node--lg .svc-node-trails::after {
      left: auto;
    right: 100px;
    bottom: -2px;
    width: 20px;
    height: 20px;
}

.svc-node--right.svc-node--md .svc-node-trails::before {
  left: auto;
  right: 0;
  top: 8px;
  width: 130px;
  height: 15px;
}

.svc-node--right.svc-node--md .svc-node-trails::after {
  left: auto;
  right: -20px;
  bottom: 5px;
  width: 15px;
  height: 15px;
}
@media (max-width: 767px) {
  .svc-flow {
    max-width: 675px;
  }
  .svc-node--right.svc-node--lg .svc-node-trails::before, .svc-node--lg .svc-node-trails::before {
    width: 100px;
  }
  .svc-node--left.svc-node--sm .svc-node-trails::before ,
  .svc-node--left.svc-node--sm .svc-node-trails::after{
    top: 24px;
  }
}
@media (max-width: 767px) {
  .our-services-section {
    padding: 36px 0 52px;
  }

  .our-services-title {
    margin-bottom: 28px;
    font-size: clamp(1.75rem, 4.5vw, 2.4rem);
  }

  .svc-flow {
    max-width: 560px;
  }

  .svc-node + .svc-node {
    margin-top: -14px;
  }

  .svc-node--left,
  .svc-node--right,
  .svc-node--teal {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }

  .svc-node--left .svc-node-inner,
  .svc-node--right .svc-node-inner {
    margin-left: 0;
  }

  .svc-node--sm .svc-node-pill,
  .svc-node--md .svc-node-pill,
  .svc-node--lg .svc-node-pill {
    max-width: min(300px, 58vw);
  }
  .svc-node--lg .svc-node-inner::before {
    display: none; 
  }
  .svc-node--md .svc-node-pill {
    margin-bottom: 0;
  }
  .svc-node--md .svc-node-inner {
    align-items: center;
  }
  .our-services-section {
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .our-services-section {
    padding: 28px 0 0;
  }

  .our-services-title {
    margin-bottom: 22px;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .svc-flow {
    gap: 12px;
  }

  .svc-node + .svc-node {
    margin-top: 0;
  }

  .svc-node--left .svc-node-inner,
  .svc-node--right .svc-node-inner {
    width: 100%;
  }

  .svc-node--left .svc-node-inner {
    flex-direction: row;

  }

  .svc-node--right .svc-node-inner {
    flex-direction: row;
  }

  .svc-node-pill {
    flex: 1 1 auto;
  }

  .svc-node--sm .svc-node-pill,
  .svc-node--md .svc-node-pill,
  .svc-node--lg .svc-node-pill {
    max-width: none;
    min-height: 56px;
    margin-left: -28px;
    margin-right: 0;
    padding: 10px 16px 10px 36px;
    font-size: 0.84rem;
    text-align: left;
    justify-content: flex-start;
  }

  .svc-node--left .svc-node-pill {
    order: 2;
    margin-left: -28px;
    margin-right: 0;
    padding: 10px 16px 10px 36px;
    text-align: left;
    justify-content: flex-start;
  }

  .svc-node--left .svc-node-circle {
    order: 1;
  }

  .svc-node--sm .svc-node-circle,
  .svc-node--md .svc-node-circle,
  .svc-node--lg .svc-node-circle {
    width: 64px;
    height: 64px;
    border-width: 5px;
  }

  .svc-node-trails {
    display: none;
  }
}

/* ========== End-To-End CDMO Solutions ========== */

.cdmo-section {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.cdmo-grid {
  display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.08fr);
    gap: clamp(32px, 4.2vw, 72px);
  align-items: center;
}

.cdmo-copy {
  max-width: 640px;
}

.cdmo-title {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
      max-width: 513px;
}


.cdmo-title-dark {
  color: #000000;
}

.cdmo-title-accent {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: var(--nem-red-dark, #AB0013);
}

.cdmo-intro {
  margin: 0 0 28px;
  color: #000000;
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.75;
}

.cdmo-intro p {
  margin: 0 0 0.75em;
}

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

.cdmo-approach-title {
  margin: 0 0 30px;
  color: #000000;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.cdmo-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: cdmo;
}

.cdmo-list li {
  position: relative;
  padding-left: 1.6rem;
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  counter-increment: cdmo;
}

.cdmo-list li::before {
  content: counter(cdmo) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
}

.cdmo-footer {
  margin: 0 0 28px;
  max-width: 560px;
  text-align: left;
  color: #000000;
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.75;
}

.cdmo-footer p {
  margin: 0 0 0.75em;
}

.cdmo-footer p:last-child {
  margin-bottom: 0;
}

.cdmo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 20px 34px 21px;
  border-radius: 999px;
  background: #A30018;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cdmo-btn:hover {
  background: var(--nem-red-dark, #AB0013);
  color: #fff !important;
  transform: translateY(-1px);
}

.cdmo-media {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.cdmo-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: clamp(420px, 52vw, 620px);
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
}

@media (max-width: 767px) {
  .cdmo-section {
    padding: 52px 0 60px;
  }

  .cdmo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cdmo-copy {
    max-width: none;
  }

  .cdmo-media {
    justify-content: center;
    order: 2;
  }

  .cdmo-image {
    max-width: 420px;
    min-height: 460px;
    border-radius: 28px;
  }
}

@media (max-width: 575px) {
  .cdmo-section {
    padding: 40px 0 48px;
  }

  .cdmo-title {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem);
    margin-bottom: 14px;
  }

  .cdmo-intro {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .cdmo-approach-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .cdmo-list {
    margin-bottom: 22px;
  }

  .cdmo-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .cdmo-footer {
    margin-bottom: 22px;
    font-size: 0.88rem;
  }

  .cdmo-btn {
    width: 100%;
    max-width: 168px;
  }

  .cdmo-image {
    min-height: 380px;
    border-radius: 22px;
  }
}

/* ========== Career culture ========== */
.career-culture {
  --career-respect: #148a8c;
  --career-responsibility: #6aaa3e;
  --career-red: #AB0013;
  background: #fff;
  padding: 50px 0 0;
}

.career-culture-head {
  margin: 0 auto 36px;
}

.career-culture-title {
  margin: 0 0 17px;
  font-size: clamp(1.55rem, 4.4vw, 2.85rem);
  
  line-height: 1.25;
  color: #222;
}

.career-culture-title-line {
  display: block;
}

.career-culture-title-dark {
  color: #222;
}

.career-culture-title-accent {
  color: var(--career-red);
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.career-culture-title-line--2 {
  margin-top: 2px;
  color: #222;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.career-culture-intro {
      margin: 0 0 16px;
    color: #000000;
    font-size: 14px;
    line-height: 1.75;
}

.career-culture-intro p {
  margin: 0 0 0.75em;
}

.career-culture-intro p:last-child {
  margin-bottom: 0;
}

.career-culture-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 40px;
}

.career-culture-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
      padding-bottom: 4px;
  color: #fff;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.career-culture-label--respect {
  background: #0B8892;
}

.career-culture-label--responsibility {
  background: #64B769;
}

/* Mobile/tablet section headers (inside each column) — hidden on desktop */
.career-culture-label--stacked {
  display: none;
  margin: 0 0 14px;
  width: 100%;
  border: 0;
  border-radius: 0;
}

.career-culture-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 230px) minmax(0, 1.15fr);
  gap: 8px 0;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  min-height: 560px;
  padding: 8px 0;
  overflow: visible;
}

.career-culture-board.reveal-stagger .career-culture-item.reveal,
.career-culture-board.reveal-stagger .career-culture-hub.reveal {
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.career-culture-board.reveal-stagger .career-culture-lines.reveal {
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.career-culture-lines {
  position: absolute;
  inset: 0;
  width: 98%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  object-fit: fill;
  display: block;
  margin-top: -20px;
}

.career-culture-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-height: 520px;
  padding: 8px 0;
}

.career-culture-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 90px;
    margin-bottom: 50px;
}

.career-culture-item--respect {
  flex-direction: row;
  text-align: left;
  padding-right: 28px;
  color: var(--career-respect);
}

.career-culture-item--responsibility {
  flex-direction: row;
  text-align: left;
  justify-content: flex-end;
  padding-left: 28px;
  color: var(--career-responsibility);
}

.career-culture-icon {
  flex-shrink: 0;
  width: 99px;
  height: 99px;
  border-radius: 50%;
  border: 4px solid #0B8892;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}
.career-culture-item--responsibility .career-culture-icon {
  border: 4px solid #64B769;
}
.career-culture-icon i {
  font-size: 1.55rem;
  line-height: 1;
  color: inherit;
}

.career-culture-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.career-culture-copy {
  flex: 1;
  min-width: 0;
  max-width: 230px;
}
.career-culture-item--respect-1 .career-culture-copy {
      max-width: 200px;
}
.career-culture-item--respect-2 .career-culture-copy {
    max-width: 225px;
}
.career-culture-item--respect-3 .career-culture-item-desc {
  max-width: 200px;
}
.career-culture-item--respect-4 .career-culture-copy {
  max-width: 262px;
}
.career-culture-item--responsibility .career-culture-copy {
  margin-left: 0;
      max-width: 215px;
}
.career-culture-item--responsibility-1 .career-culture-item-title {
  max-width: 100px;
}

.career-culture-item-title {
margin: 0 0 11px;
    font-family: "Satoshi-Bold", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #0B8892;
}
.career-culture-item--responsibility .career-culture-item-title {
    color: #64B769;
}
.career-culture-item-desc {
  margin: 0;
  font-size: 0.9rem;
  font-family: "Satoshi-Medium", sans-serif;
  line-height: 1.45;
  color: #111111;
  font-weight: 500;
}

.career-culture-hub {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
      margin-top: -52px;
      margin-left: -10px;
}
.career-culture-hub::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: #fff;
  margin: 0 auto;
    z-index: 9;
}
.career-culture-hub-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    var(--career-respect) 0%,
    var(--career-respect) 50%,
    var(--career-responsibility) 50%,
    var(--career-responsibility) 100%
  );
  z-index: 0;
}

.career-culture-hub-inner {
  position: absolute;
  inset: 6px;
  z-index: 1;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  z-index: 9;
}

.career-culture-hub-icon {
  margin-bottom: 4px;
  color: var(--career-respect);
  line-height: 0;
}

.career-culture-hub-icon i {
  font-size: 2.5rem;
  line-height: 1;
}

.career-culture-hub-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.career-culture-hub-svg {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.career-culture-hub-title {
  margin: 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0B8892;
  line-height: 1.15;
      margin-top: -18px;
}

.career-culture-hub-sub {
  margin: 3px 0 0;
  font-size: 0.9rem;
  line-height: 1.25;
  color: #64B769;
  font-weight: 600;
}

@media (max-width: 767px) {
  .career-culture {
    padding: 40px 0 56px;
  }

  .career-culture-intro {
    text-align: left;
    font-size: 0.9rem;
  }

  /* Top dual labels → hide; each column shows its own header */
  .career-culture-labels {
    display: none;
  }

  .career-culture-label--stacked {
    display: flex;
  }

  .career-culture-lines,
  .career-culture-hub-ring {
    display: none;
  }

  .career-culture-hub-inner {
    inset: 0;
    width: auto;
    height: auto;
    border: 5px solid var(--career-responsibility);
    margin: 0;
  }

  .career-culture-item--respect,
  .career-culture-item--responsibility {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }

  .career-culture-item--responsibility .career-culture-copy {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 575px) {
  .career-culture-icon {
    width: 58px;
    height: 58px;
  }

  .career-culture-item-title {
    font-size: 0.88rem;
  }

  .career-culture-copy {
    max-width: none;
  }
}

/* ========== Career team ========== */
.career-team {
  background: #fff;
  padding: 0 0 40px;
}

.career-team-title {
  margin: 0 0 51px;
  text-align: center;
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  line-height: 1.2;
}

.career-team-title-dark {
  color: #0B1C30;
}

.career-team-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.career-team-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.career-team-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 18px;
}

.career-team-card {
  width: calc((100% - 54px) / 4); /* same width as 4-col slot */
  max-width: calc((100% - 54px) / 4);
  min-width: 0;
  flex: 0 0 calc((100% - 54px) / 4);
  text-align: center;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s ease;
}

.career-team-card:hover {
  transform: translateY(-4px);
  color: inherit;
}

.career-team-photo {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  border-radius: 24px;
  overflow: hidden;
  background: #ececec;
  margin-bottom: 14px;
}

.career-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.career-team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  color: #b0b0b0;
  font-size: 3rem;
  background: #e8e8e8;
}

.career-team-name {
  margin: 0 0 4px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.3;
}

.career-team-role {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #5D5E61;
  font-weight: 400;
}

.career-team-modal .modal-dialog {
  max-width: 720px;
}

.career-team-modal .modal-content {
  position: relative;
  border: 0;
  border-radius: 0;
  background: #f2f2f2;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  max-height: min(92vh, 720px);
}

.career-team-modal.modal .modal-body.career-team-modal-body,
.career-team-modal-body {
  display: block;
  padding: 28px 28px 28px 24px;
  overflow-y: auto;
  max-height: min(92vh, 720px);
  background: #fff;
}

.career-team-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.career-team-modal-close:hover {
  background: #fff;
  color: #AB0013;
}

.career-team-modal-photo {
  float: left;
  width: 180px;
  max-width: 180px;
  /* Keep ~6 bio lines beside the photo, then wrap underneath */
  height: calc(
    (1.35rem * 1.25) + 6px +
    (0.95rem * 1.35) + 14px +
    (0.95rem * 1.7 * 6)
  );
  aspect-ratio: auto;
  border-radius: 14px;
  overflow: hidden;
  background: #e4e4e4;
  margin: 0 24px 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  shape-outside: margin-box;
}

.career-team-modal-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.career-team-modal-placeholder {
  width: 100%;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #bbb;
}

.career-team-modal-copy {
  padding: 4px 5px 0 0;
  min-width: 0;
  overflow: visible;
}

.career-team-modal-copy::after {
  content: '';
  display: table;
  clear: both;
}

.career-team-modal-name {
  margin: 0 0 6px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.25;
  text-align: left;
}

.career-team-modal-role {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: #8a8a8a;
  line-height: 1.35;
  text-align: left;
}

.career-team-modal-bio {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  text-align: left;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.career-team-modal-bio p {
  margin: 0 0 0.75em;
}

.career-team-modal-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .career-team-card {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .career-team {
    padding: 12px 0 56px;
  }

  .career-team-grid {
    gap: 24px 16px;
  }

  .career-team-card {
    min-width: 0;
  }

  .career-team-modal .modal-dialog {
    max-width: calc(100% - 24px);
    margin: 12px auto;
  }

  .career-team-modal.modal .modal-body.career-team-modal-body,
  .career-team-modal-body {
    padding: 22px 18px 24px;
  }

  .career-team-modal-photo {
    float: none;
    width: 140px;
    max-width: 140px;
    height: 140px;
    margin: 0 auto 16px;
  }

  .career-team-modal-copy {
    padding: 0;
    text-align: left;
    width: 100%;
  }

  .career-team-modal-name,
  .career-team-modal-role {
    text-align: center;
  }

  .career-team-modal-bio {
    text-align: left;
  }
}

/* ========== Career jobs ========== */
.career-jobs {
  background: #fff;
  padding: 20px 0 88px;
}

/* ========== Quality objective ========== */
.quality-objective {
  background: #fff;
  padding: 25px 0 5px;
  text-align: center;
}

.quality-objective-title {
  margin: 0 0 20px;
  font-family: "Satoshi-Bold", sans-serif;
      font-size: clamp(2.2rem, 3.5vw, 3.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: #AB0013;
}

.quality-objective-text {
  margin: 0 auto 10px;
  line-height: 1.75;
  color: #000000;
}

.quality-objective-text p {
  margin: 0 0 0.75em;
}
.quality-objective-text p:last-child {
  margin-bottom: 0;
}

.quality-objective-points {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 48px;
  max-width: 980px;
}

.quality-objective-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #222;
}

.quality-objective-points i {
  color: #00BA00;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.quality-logos {
  background: #fff;
  overflow: hidden;
  padding-block: 1rem;
  padding-top: 0;
}

.quality-logos-wrap {
  width: 100%;
  margin: 0 auto;
  padding-block: 0.5rem;
}

.quality-logos-owl {
  width: 100%;
}

.quality-logos-owl .owl-stage-outer {
  padding-block: 0.75rem;
  margin-block: -0.25rem;
}

.quality-logos-owl .item {
  display: flex;
  justify-content: center;
  padding-block: 0.25rem;
}

.quality-logos-owl .home-about-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  flex-shrink: 0;
}

.quality-logos-owl .owl-dots {
  margin-top: 25px !important;
  line-height: 1;
}

.quality-logos-owl .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: rgba(0, 0, 0, 0.25);
  transition: width 0.25s ease, background 0.25s ease;
}

.quality-logos-owl .owl-dots .owl-dot.active span,
.quality-logos-owl .owl-dots .owl-dot:hover span {
  background: #000;
}

.quality-logos-owl .owl-dots .owl-dot.active span {
  width: 30px;
  border-radius: 999px;
}

@media (max-width: 767px) {

  .quality-logos-owl .home-about-logo {
    width: 128px;
    height: 96px;
  }
}

.fancybox__container.is-certificate-view,
.fancybox__container.is-certificate-view .fancybox__content,
.fancybox__container.is-certificate-view .fancybox__content img,
.fancybox__container.is-certificate-view .cert-protect-shield {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

.fancybox__container.is-certificate-view .fancybox__content img {
  pointer-events: none;
}

.fancybox__container.is-certificate-view [data-fancybox-download],
.fancybox__container.is-certificate-view [data-fancybox-fullscreen] {
  display: none !important;
}

.fancybox__container.is-certificate-view .fancybox__slide,
.fancybox__container.is-certificate-view .fancybox__carousel {
  position: relative;
}

.cert-protect-shield {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  pointer-events: none;
}

body.cert-protect-hidden .fancybox__content {
  visibility: hidden !important;
}

.fancybox__container.is-certificate-view.is-capture-locked .fancybox__content img,
.fancybox__container.is-certificate-view.is-capture-locked .fancybox__content canvas {
  visibility: hidden !important;
  opacity: 0 !important;
}

.fancybox__container.is-certificate-view.is-capture-flash .fancybox__content img,
.fancybox__container.is-certificate-view.is-capture-flash .fancybox__content canvas {
  visibility: hidden !important;
  opacity: 0 !important;
}

.cert-protect-lock {
  position: absolute;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0b1220;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.cert-protect-lock-msg {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cert-protect-restore-btn {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0b1220;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  cursor: pointer;
}

.cert-protect-restore-btn:hover,
.cert-protect-restore-btn:focus-visible {
  background: #f3f4f6;
}

@media print {
  .fancybox__container.is-certificate-view,
  .cert-protect-modal {
    display: none !important;
  }
}

.page-quality {
  overflow-x: hidden;
}

/* ========== Quality commitment ========== */
.quality-commitment {
  background: #fff;
  padding: 0 0 20px;
  text-align: center;
}

.quality-commitment-title {
  margin: 0 0 10px;
  font-family: "Satoshi-Bold", sans-serif;
      font-size: clamp(2.2rem, 3.5vw, 3.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: #AB0013;
}

.quality-commitment-text {
  margin: 0 auto 55px;
  font-size: 14px;
  line-height: 1.75;
  color: #000;
}

.quality-commitment-text p {
  margin: 0 0 0.75em;
}
.quality-commitment-text p:last-child {
  margin-bottom: 0;
}

.quality-commitment-grid-wrap {
  width: 100%;
}

.quality-commitment-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
}

.quality-commitment-card {
  --commitment-color: #5eb8e8;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 0;
  min-width: 0;
  max-width: 200px;
  overflow: visible;
}

/* Top: card color + thin white line + number badge */
.quality-commitment-card-head {
  position: relative;
  flex-shrink: 0;
  height: 80px;
  background: var(--commitment-color);
  overflow: visible;
  z-index: 3;
  margin-bottom: 20px;
}
.quality-commitment-card-head::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 62px;
    background: #72BBE8;
}
.quality-commitment-card--02 .quality-commitment-card-head::before {
    background: #F48B21;
}
.quality-commitment-card--03 .quality-commitment-card-head::before {
    background: #4AA94B;
}
.quality-commitment-card--04 .quality-commitment-card-head::before {
    background: #5349A0;
}
.quality-commitment-card--05 .quality-commitment-card-head::before {
    background: #0B8892;
}
.quality-commitment-card--06 .quality-commitment-card-head::before {
    background: #AB0013;
}
.quality-commitment-card-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  height: 12px;
  background: #fff;
  transform: translateY(-50%);
}

.quality-commitment-card-num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Satoshi-Black", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #000000;
  z-index: 4;
      box-shadow: 0 0 0 1px #72BBE8;
}

/* Middle: always white */
.quality-commitment-card-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75px;
  padding: 12px 10px;
  background: #fff;
}

.quality-commitment-card-icon i {
  font-size: 2.75rem;
  line-height: 1;
  color: var(--commitment-color);
}

.quality-commitment-card-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Bottom: card color + chevron */
.quality-commitment-card-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 14px 10px 30px;
  background: var(--commitment-color);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 50% 100%, 0 calc(100% - 18px));
}

.quality-commitment-card-label p {
  margin: 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Manual overrides per pillar (01–06) */
.page-quality .quality-commitment-card--01 {}
.page-quality .quality-commitment-card-head--01 {}
.page-quality .quality-commitment-card-line--01 {}
.page-quality .quality-commitment-card-num--01 {}
.page-quality .quality-commitment-card-icon--01 { background: #D4EEFB ; }
.page-quality .quality-commitment-card-img--01 {}
.page-quality .quality-commitment-card-bi--01 {}
.page-quality .quality-commitment-card-label--01 { background: #93D1F0; }
.page-quality .quality-commitment-card-text--01 {}

.page-quality .quality-commitment-card--02 {}
.page-quality .quality-commitment-card-head--02 {}
.page-quality .quality-commitment-card-line--02 {}
.page-quality .quality-commitment-card-num--02 {}
.page-quality .quality-commitment-card-icon--02 { background: #FDEDD1;}
.page-quality .quality-commitment-card-img--02 {}
.page-quality .quality-commitment-card-bi--02 {}
.page-quality .quality-commitment-card-label--02 {background: #F7A733; }
.page-quality .quality-commitment-card-text--02 {}

.page-quality .quality-commitment-card--03 {}
.page-quality .quality-commitment-card-head--03 {}
.page-quality .quality-commitment-card-line--03 {}
.page-quality .quality-commitment-card-num--03 {}
.page-quality .quality-commitment-card-icon--03 { background: #DCEEE2;}
.page-quality .quality-commitment-card-img--03 {}
.page-quality .quality-commitment-card-bi--03 {}
.page-quality .quality-commitment-card-label--03 { background: #85C966; }
.page-quality .quality-commitment-card-text--03 {}

.page-quality .quality-commitment-card--04 {}
.page-quality .quality-commitment-card-head--04 {}
.page-quality .quality-commitment-card-line--04 {}
.page-quality .quality-commitment-card-num--04 {}
.page-quality .quality-commitment-card-icon--04 { background: #E0E2F8;}
.page-quality .quality-commitment-card-img--04 {}
.page-quality .quality-commitment-card-bi--04 {}
.page-quality .quality-commitment-card-label--04 { background: #7068BD; }
.page-quality .quality-commitment-card-text--04 {}

.page-quality .quality-commitment-card--05 {}
.page-quality .quality-commitment-card-head--05 {}
.page-quality .quality-commitment-card-line--05 {}
.page-quality .quality-commitment-card-num--05 {}
.page-quality .quality-commitment-card-icon--05 { background: #BBE3EB;}
.page-quality .quality-commitment-card-img--05 {}
.page-quality .quality-commitment-card-bi--05 {}
.page-quality .quality-commitment-card-label--05 { background: #0B8A93; }
.page-quality .quality-commitment-card-text--05 {}

.page-quality .quality-commitment-card--06 {}
.page-quality .quality-commitment-card-head--06 {}
.page-quality .quality-commitment-card-line--06 {}
.page-quality .quality-commitment-card-num--06 {}
.page-quality .quality-commitment-card-icon--06 { background: #FFE0E4;}
.page-quality .quality-commitment-card-img--06 {}
.page-quality .quality-commitment-card-bi--06 {}
.page-quality .quality-commitment-card-label--06 { background: #E11A38;  }
.page-quality .quality-commitment-card-text--06 {}

@media (max-width: 767px) {
  .quality-commitment-grid-wrap {
    padding-inline: 4px;
  }

  .quality-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    align-items: stretch;
    gap: 22px 16px;
    max-width: 720px;
    width: 100%;
  }

  .quality-commitment-card {
    width: 100%;
    max-width: none;
    flex: none;
    height: 100%;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }

  .quality-commitment-card-head {
    height: 64px;
    margin-bottom: 14px;
  }

  .quality-commitment-card-head::before {
    bottom: -14px;
    height: 48px;
  }

  .quality-commitment-card-line {
    height: 8px;
  }

  .quality-commitment-card-num {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }

  .quality-commitment-card-icon {
    min-height: 72px;
    padding: 10px 8px 8px;
  }

  .quality-commitment-card-icon i {
    font-size: 2.1rem;
  }

  .quality-commitment-card-icon img {
    width: 40px;
    height: 40px;
  }

  .quality-commitment-card-label {
    flex: 1 1 auto;
    min-height: 92px;
    padding: 12px 10px 28px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
  }

  .quality-commitment-card-label p {
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: center;
    word-break: break-word;
  }
}

@media (max-width: 767px) {
  .quality-commitment {
    padding: 36px 0 14px;
  }

  .quality-commitment-text {
    margin-bottom: 28px;
    padding-inline: 4px;
  }

  .quality-commitment-grid {
    gap: 18px 12px;
    max-width: 100%;
  }

  .quality-commitment-card-head {
    height: 56px;
    margin-bottom: 12px;
  }

  .quality-commitment-card-head::before {
    bottom: -12px;
    height: 42px;
  }

  .quality-commitment-card-line {
    height: 7px;
  }

  .quality-commitment-card-num {
    width: 42px;
    height: 42px;
    font-size: 0.88rem;
  }

  .quality-commitment-card-icon {
    min-height: 64px;
    padding: 8px 6px 6px;
  }

  .quality-commitment-card-icon i {
    font-size: 1.85rem;
  }

  .quality-commitment-card-icon img {
    width: 36px;
    height: 36px;
  }

  .quality-commitment-card-label {
    min-height: 84px;
    padding: 10px 8px 26px;
  }

  .quality-commitment-card-label p {
    font-size: 0.72rem;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .quality-commitment-grid {
    gap: 14px 10px;
  }

  .quality-commitment-card-head {
    height: 50px;
    margin-bottom: 10px;
  }

  .quality-commitment-card-head::before {
    bottom: -10px;
    height: 36px;
  }

  .quality-commitment-card-num {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .quality-commitment-card-icon {
    min-height: 58px;
  }

  .quality-commitment-card-icon img {
    width: 32px;
    height: 32px;
  }

  .quality-commitment-card-label {
    min-height: 78px;
    padding: 8px 6px 24px;
  }

  .quality-commitment-card-label p {
    font-size: 0.68rem;
  }
}

@media (max-width: 767px) {
  .page-quality .quality-logos {
    overflow-x: hidden;
    max-width: 100%;
    padding-bottom: 0;
  }
}

/* ========== Quality management system ========== */
.quality-qms {
  background: #fff;
  padding: 33px 0 10px;
  text-align: center;
}

.quality-qms-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4.5vw, 2.94rem);
  
  line-height: 1.2;
}

.quality-qms-title-dark {
  color: #0B1C30;
}

.quality-qms-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.quality-qms-text {
  font-size: 14px;
  line-height: 1.75;
  color: #000;
      max-width: 1200px;
    margin: 0 auto;
}

.quality-qms-text p {
  margin: 0;
  line-height: 1.6;
}
.quality-qms-text p:last-child {
  margin-bottom: 0;
}

.quality-qms-text:last-child {
  margin-bottom: 0;
}

/* ========== Quality governance hub ========== */
.quality-governance{
    padding: 30px 0 60px;
    background:#fff;
}

.quality-governance-board{
    display:grid;
    grid-template-columns: 1fr 335px 1fr;
    grid-template-rows: repeat(var(--gov-rows),120px);
    gap: 5px 30px;
    align-items:center;
}

/* Center Box */

.quality-governance-hub{
    grid-column:2;
    grid-row: 3 / span 1;
    background:#E8F9E2;
    border-radius:30px;
    padding:30px;
    transition: box-shadow .35s ease;
}

.quality-governance-hub-body{
    display:grid;
    grid-template:1fr / 1fr;
    align-items:start;
}

.quality-governance-hub-pane{
    grid-area:1 / 1;
    transition:opacity .45s ease, transform .45s ease, visibility .45s ease;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    pointer-events:none;
}

.quality-governance-hub-pane.is-active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

@media (prefers-reduced-motion: reduce) {
  .quality-governance-hub-pane{
    transition:none;
  }
}

.quality-governance-hub.is-active{
    box-shadow:0 12px 32px rgba(76, 175, 80, 0.18);
}

.quality-governance-hub-title{
    margin: 0 0 15px;
    font-size: 16px;
    line-height:1.65;
    font-weight:700;
        font-family: "Satoshi-Bold", sans-serif;
    color:#111;
}

.quality-governance-hub-list{
    margin:0;
}

.quality-governance-hub-item{
    margin-bottom:20px;
}

.quality-governance-hub-item:last-child{
    margin-bottom:0;
}

.quality-governance-hub-item dt{
    font-size: 16px;
    font-weight: 900;
        font-family: "Satoshi-Black", sans-serif;
    color:#111;
    margin-bottom: 5px;
}

.quality-governance-hub-item dd{
    margin:0;
    font-size: 15px;
    line-height:1.7;
    color: #111111;
}
/* Left Right Cards */

.quality-governance-card{
    position:relative;
    background:#F9F9F9;
    min-height: 90px;
    border-radius:0 60px 60px 0;
    box-shadow: 8px 8px 0 rgba(0,0,0,.05);
    transition:transform .35s ease, box-shadow .35s ease;
    overflow:hidden;
}

.quality-governance-card-trigger{
    position:relative;
    width:100%;
    min-height: 90px;
    display:flex;
    align-items:center;
    border:0;
    background:transparent;
    padding: 25px 110px 32px 40px;
    cursor:pointer;
    text-align:inherit;
    color:inherit;
    font:inherit;
}

.quality-governance-card-panel{
    display:none;
}

.quality-governance-card:hover,
.quality-governance-card.is-active{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.quality-governance-card.reveal:not(.is-visible){
    /* Keep entrance motion until revealed; ignore hover translate while hidden */
    pointer-events:none;
}

.quality-governance-card.reveal.is-visible:hover,
.quality-governance-card.reveal.is-visible.is-active{
    transform:translateY(-4px);
}

.quality-governance-card.is-active{
    outline:none;
}

.quality-governance-card-trigger:focus-visible{
    outline:none;
}

.quality-governance-card:focus-within .quality-governance-card-trigger:focus-visible{
    box-shadow:inset 0 0 0 2px rgba(33, 150, 243, 0.35);
}

/* Left */

.quality-governance-card--left{
    grid-column:1;
    justify-content:flex-start;
   border-radius: 0 60px 0 60px;
   box-shadow: -8px 8px 0 rgba(0,0,0,.05);
}

.quality-governance-card--left .quality-governance-badge{
    right: 7px;
}

/* Right */

.quality-governance-card--right{
    grid-column:3;
    justify-content:flex-end;
    border-radius: 60px 0 60px 0;
}

.quality-governance-card--right .quality-governance-card-trigger{
    justify-content:flex-end;
    padding: 25px 25px 32px 120px;
    text-align:right;
}

.quality-governance-card--right .quality-governance-badge{
    left:0;
}

/* Title */

.quality-governance-card-title{
    margin:0;
    font-size: 17px;
    font-weight:700;
     font-family: "Satoshi-Bold", sans-serif;
    line-height:1.45;
    color:#111;
    text-align: center;
    flex:1 1 auto;
    min-width: 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.quality-governance-panel-title{
    margin:0 0 12px;
    font-size:16px;
    line-height:1.55;
    font-weight:700;
    color:#111;
}

.quality-governance-panel-list{
    margin:0;
}

.quality-governance-panel-item{
    margin-bottom:14px;
}

.quality-governance-panel-item:last-child{
    margin-bottom:0;
}

.quality-governance-panel-item dt{
    font-size:15px;
    font-weight:700;
    font-family:"Satoshi-Bold", sans-serif;
    color:#111;
    margin-bottom:4px;
}

.quality-governance-panel-item dd{
    margin:0;
    font-size:14px;
    line-height:1.65;
    color:#333;
}

/* Badge */

.quality-governance-badge{
    position:absolute;
    top: 9px;
    width: 88px;
    height: 78%;
    background:var(--badge-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 26px;
    font-weight:700;
    font-family: "Satoshi-Bold", sans-serif;
    box-shadow: -8px 8px 0 rgba(0,0,0,.05);
}

/* Left Badge */

.quality-governance-card--left .quality-governance-badge{
    border-radius:0 60px 0 60px;
}

/* Right Badge */

.quality-governance-card--right .quality-governance-badge{
    border-radius:60px 0 60px 0;
        left: 13px;
            top: 6px;
            box-shadow: 8px 8px 0 rgba(0,0,0,.05);
}

/* Tablet landscape / large tablet: same desktop board, hub fills center column */
@media (min-width: 992px) and (max-width: 1199px) {
  .quality-governance-board {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px) minmax(0, 1fr);
    grid-template-rows: repeat(var(--gov-rows), minmax(110px, auto));
    gap: 8px 22px;
    align-items: center;
  }

  .quality-governance-hub {
    grid-row: 1 / -1;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 28px 24px;
  }

  .quality-governance-hub-body {
    width: 100%;
  }
}

/* Tablet portrait: desktop-style hub in the center, not stretched / not cramped */
@media (min-width: 768px) and (max-width: 991.98px) {
  .quality-governance .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quality-governance-board {
    grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1fr);
    grid-template-rows: repeat(var(--gov-rows), 120px);
    gap: 5px 16px;
    align-items: center;
  }

  .quality-governance-hub,
  .quality-governance-card {
    min-width: 0;
    max-width: 100%;
  }

  .quality-governance-hub {
    grid-row: 3 / span 1;
    align-self: center;
    display: block;
    padding: 28px 24px;
    border-radius: 30px;
    overflow: visible;
  }

  .quality-governance-hub-body {
    width: 100%;
    min-width: 0;
  }

  .quality-governance-hub-pane {
    min-width: 0;
  }

  .quality-governance-hub-title {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.65;
  }

  .quality-governance-hub-item {
    margin-bottom: 18px;
  }

  .quality-governance-hub-item dt {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .quality-governance-hub-item dd {
    font-size: 15px;
    line-height: 1.7;
  }

  .quality-governance-card {
    min-height: 90px;
    overflow: hidden;
  }

  .quality-governance-card-trigger {
    min-height: 90px;
    padding: 18px 86px 22px 16px;
  }

  .quality-governance-card--right .quality-governance-card-trigger {
    padding: 18px 16px 22px 90px;
  }

  .quality-governance-card-title {
    font-size: 15px;
    line-height: 1.4;
  }

  .quality-governance-badge {
    width: 72px;
    font-size: 22px;
    top: 8px;
    height: calc(100% - 16px);
  }

  .quality-governance-card--left .quality-governance-badge {
    right: 6px;
  }

  .quality-governance-card--right .quality-governance-badge {
    left: 8px;
    top: 8px;
  }
}

/* Phone only: accordion — keep in sync with JS desktop mq min-width: 768px */
@media (max-width: 767px) {
  .quality-governance-board {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
  }

  .quality-governance-hub {
    display: none;
  }

  .quality-governance-card {
    width: 100%;
    max-width: none;
    grid-column: unset !important;
    grid-row: auto !important;
    min-height: auto;
    border-radius: 16px !important;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .page-quality .quality-governance-card.reveal-from-left:not(.is-visible),
  .page-quality .quality-governance-card.reveal-from-right:not(.is-visible),
  .page-quality .quality-governance-card.reveal:not(.is-visible) {
    transform: translate3d(0, 40px, 0) !important;
  }

  .page-quality .quality-governance-card.reveal.is-visible {
    transform: none !important;
  }

  .quality-governance-card-trigger {
    min-height: auto;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 18px 96px 18px 18px !important;
  }

  .quality-governance-card--left .quality-governance-badge,
  .quality-governance-card--right .quality-governance-badge {
    position: absolute;
    right: 8px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    min-height: 56px;
    max-height: 72px;
    border-radius: 0 16px 16px 0 !important;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .quality-governance-card-title {
    text-align: left;
    font-size: 16px;
    padding-right: 8px;
  }

  .quality-governance-card-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 18px;
    border-top: 1px solid transparent;
    transition: max-height .45s ease, opacity .35s ease, padding .35s ease, border-color .35s ease;
  }

  .quality-governance-card.is-open .quality-governance-card-panel {
    max-height: 520px;
    opacity: 1;
    padding: 18px 18px;
    border-top-color: rgba(0, 0, 0, 0.08);
  }

  .quality-governance-card.is-open {
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.35), 6px 6px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .quality-governance-card:hover {
    transform: none !important;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .quality-objective {
    padding: 36px 0 44px;
  }

  .quality-objective-title {
    margin-bottom: 20px;
  }

  .quality-objective-text {
    margin-bottom: 28px;
    font-size: 0.95rem;
    padding-inline: 4px;
  }

  .quality-objective-points {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .quality-qms {
    padding: 32px 0 0;
  }

  .quality-qms-title {
    margin-bottom: 22px;
  }

  .quality-qms-text {
    font-size: 0.95rem;
    padding-inline: 4px;
  }

  .quality-governance {
    padding: 36px 0 44px;
  }

  .quality-governance-board {
    gap: 10px;
  }

  .quality-governance-card-trigger {
    padding: 16px 84px 16px 16px !important;
  }

  .quality-governance-card--left .quality-governance-badge,
  .quality-governance-card--right .quality-governance-badge {
    width: 68px;
    min-height: 52px;
    font-size: 22px;
  }

  .quality-governance-card-title {
    font-size: 15px;
    line-height: 1.4;
  }

  .quality-governance-panel-title {
    font-size: 15px;
  }
  .home-about-cta {
    min-width: 145px;
    padding: 13px 31px 15px;
    font-size: 14px;
  }
}

.career-jobs-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.career-jobs-title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  line-height: 1.25;
}

.career-jobs-title-dark {
  color: #0B1C30;
}

.career-jobs-title-accent {
  color: #AB0013;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}

.career-jobs-subtitle {
  margin: 0 0 16px;
    color: #000000;
    font-size: 14px;
    line-height: 1.75;
}

.career-jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.career-jobs-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 86px 22px 26px;
  border: 1px solid #E4BEBA;
  border-radius: 14px;
  background: #fff;
}

.career-jobs-card-logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.career-jobs-card-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.career-jobs-card-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0A66C2;
  color: #fff;
  font-size: 1.6rem;
}

.career-jobs-card-body {
  min-width: 0;
  flex: 1;
}

.career-jobs-card-title {
  margin: 0 0 8px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0B1C30;
  line-height: 1.35;
}

.career-jobs-card-link {
  display: inline-block;
  color: #AB0013 !important;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.career-jobs-card-link:hover {
  color: #c8102e !important;
}

@media (max-width: 767px) {
  .career-jobs {
    padding: 8px 0 56px;
  }

  .career-jobs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-jobs-card {
    padding: 18px 16px;
    gap: 16px;
  }

  .career-jobs-card-logo,
  .career-jobs-card-logo img,
  .career-jobs-card-logo-fallback {
    width: 60px;
    height: 60px;
  }
}

/* ========== Contact page ========== */

.contact-banner {
  position: relative;
  min-height: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  background-image: var(--contact-banner);
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  border-bottom: 10px solid #FFD400;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}

.contact-banner-inner {
  position: relative;
  z-index: 1;
  padding: 50px 16px 40px;
}

.contact-banner-title {
 margin: 0;
    color: var(--inner-banner-title-color);
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    font-family: "Satoshi-Bold", sans-serif;
    letter-spacing: -0.023em;
    line-height: 1.1;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    max-width: 756px;
}

.contact-main {
  position: relative;
  z-index: 2;
  padding: 36px 0 50px;
}

#contact-main {
  scroll-margin-top: calc(var(--site-header-offset, 84px) + 10px);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.35fr);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E7CCCC;
  box-shadow: 0 12px 36px rgba(22, 62, 110, 0.08);
}

.contact-card-aside {
  display: flex;
  flex-direction: column;
  padding: 65px 52px 10px 65px;
  color: #fff;
  background-image: linear-gradient(to right, #0B9D86CC,#163E6E);
}

.contact-aside-title {
  margin: 0 0 21px;
  font-size: clamp(2.5rem, 2.2vw, 3rem);
  font-family: "Satoshi-Bold",sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.contact-aside-text {
  margin: 0 0 21px;
  font-size: 0.91rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
      padding-right: 5px;
}

.contact-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.contact-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.contact-aside-list i {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
  flex-shrink: 0;
}

.contact-aside-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.contact-aside-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
      font-size: 0.85rem;
  line-height: 1.55;
  color: #fff;
}

.contact-aside-contact a {
  color: #fff;
  text-decoration: none;
}

.contact-aside-contact a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.contact-aside-contact .footer-contact-icon-wrap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
}

.contact-aside-contact .footer-contact-icon {
  display: block;
  width: 27px;
  height: auto;
  object-fit: contain;
}

.contact-aside-contact .footer-contact-text {
  display: block;
  color: #fff;
}

.contact-aside-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.contact-aside-phone-line {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.45;
}

.contact-aside-phone-line:hover {
  color: rgba(255, 255, 255, 0.85);
}

.contact-aside-foot {
  margin-top: auto;
    margin-top: 47px;
    padding-top: 47px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-aside-foot span {
  display: block;
  padding-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.contact-card-form {
  padding: 65px 83px 65px 60px;
  border: 0;
  background: #fff;
}

.contact-form-modern .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 24px;
  margin-bottom: 18px;
}

.contact-form-modern .contact-field {
  margin-bottom: 18px;
}

.contact-form-modern .contact-form-grid .contact-field {
  margin-bottom: 0;
}

.contact-form-modern .contact-field-full {
  grid-column: 1 / -1;
}

.contact-form-modern .contact-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #6b6b6b;
}

.contact-product-selected {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.04);
}

.contact-product-selected-label {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.contact-product-selected-name {
  font-size: 1rem;
  color: #163E6E;
  font-family: "Satoshi-Bold", sans-serif;
}

.contact-product-selected-purpose {
  font-size: 0.88rem;
  color: #6b6b6b;
}

.contact-form-modern label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 400;
  color: #5D5E61;
}

.contact-form-modern .form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fff;
  padding: 16px 14px;
  font-size: 0.95rem;
  color: var(--nem-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-modern select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.1 1.1 6 6l4.9-4.9L12 2.2 6 8 0 2.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form-modern textarea.form-control {
  height: 124px;
  resize: vertical;
}

.contact-form-modern .form-control::placeholder {
  color: #a0a0a0;
}

.contact-form-modern .form-control:focus {
  outline: none;
  border-color: var(--nem-red);
  box-shadow: 0 0 0 3px rgba(171, 0, 19, 0.1);
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 36px 0 22px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
}

.contact-consent input {
  margin-top: 0;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  position: relative;
  top: 3px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #E4BEBA;
  border-radius: 6px;
  background: #fff;
  accent-color: var(--nem-red-dark);
  cursor: pointer;
}

.contact-consent input:checked {
  background: var(--nem-red-dark);
  border-color: var(--nem-red-dark);
}

.contact-consent input:checked::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-form-modern label.contact-consent {
  margin-bottom: 19px;
}
.contact-consent span{
  padding-left: 7px;
}
.contact-consent a {
  color: var(--nem-red-dark);
  text-decoration: underline;
  font-weight: 400;
}

.contact-consent a:hover {
  color: var(--nem-red);
}

.contact-captcha {
  margin: 0 0 22px;
  max-width: 320px;
}

.contact-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-captcha-question {
  flex: 0 0 auto;
  min-width: 5.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid #E4BEBA;
  border-radius: 8px;
  background: #faf7f6;
  color: #111;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.contact-captcha .form-control {
  flex: 1 1 auto;
  max-width: 7rem;
}

.contact-form-modern .contact-captcha .req {
  color: var(--nem-red-dark);
}

.contact-submit {
      display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: var(--nem-red-dark);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 19px 20px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: var(--nem-red);
  color: #fff;
  transform: translateY(-1px);
}

.contact-map {
  padding: 0 0 60px;
  background: #fff;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E7CCCC;
  background: #fff;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

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

@media (max-width: 767px) {
  .contact-banner {
    min-height: 240px;
    height: 240px;
    background-position: center center;
  }

  .contact-banner-inner {
    padding: 32px 0;
  }

  .contact-main {
    padding: 32px 0 50px;
  }

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

  .contact-card-aside {
    padding: 36px 28px 28px;
  }

  .contact-aside-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }

  .contact-aside-foot {
    margin-top: 28px;
    padding-top: 28px;
  }

  .contact-card-form {
    padding: 28px 24px 28px;
  }

  .contact-map {
    padding: 0 0 56px;
  }

  .contact-map-frame {
    height: 360px;
    border-radius: 14px;
  }
}

@media (max-width: 575px) {
  .contact-banner {
    min-height: 200px;
    height: 200px;
  }

  .contact-banner-inner {
    padding: 28px 0;
  }

  .contact-banner-title {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }

  .contact-main {
    padding: 28px 0 40px;
  }

  .contact-card {
    border-radius: 14px;
  }

  .contact-card-aside {
    padding: 28px 20px 24px;
  }

  .contact-aside-text,
  .contact-aside-list li,
  .contact-aside-contact li {
    font-size: 0.92rem;
  }

  .contact-card-form {
    padding: 24px 18px 24px;
  }

  .contact-form-modern .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .contact-form-modern .form-control {
    min-height: 46px;
    padding: 12px 12px;
    font-size: 0.92rem;
  }

  .contact-consent {
    font-size: 0.85rem;
  }

  .contact-submit {
    padding: 13px 16px;
    font-size: 0.95rem;
  }

  .contact-map {
    padding: 0 0 40px;
  }

  .contact-map-frame {
    height: 280px;
  }
}

/* Adverse Events reporting form */
.page-adverse-events .contact-main {
  padding-bottom: 40px;
}

.contact-card--adverse {
  align-items: stretch;
}

.contact-aside-note {
  margin-top: 18px;
  font-size: 0.82rem;
  opacity: 0.92;
}

.contact-aside-foot a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-aside-foot a:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 992px) {
  .page-adverse-events .contact-card--adverse {
    height: calc(100dvh - var(--site-header-offset, 84px) - 28px);
    max-height: calc(100dvh - var(--site-header-offset, 84px) - 28px);
    overflow: hidden;
    align-items: stretch;
  }

  .page-adverse-events .contact-card--adverse .contact-card-aside {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 36px 32px 40px;
  }

  .page-adverse-events .contact-card--adverse .contact-aside-title {
    font-size: clamp(1.85rem, 2vw, 2.35rem);
    margin-bottom: 14px;
  }

  .page-adverse-events .contact-card--adverse .contact-aside-text {
    margin-bottom: 16px;
  }

  .page-adverse-events .contact-card--adverse .contact-aside-list {
    gap: 12px;
  }

  .page-adverse-events .contact-card--adverse .contact-aside-note {
    margin-top: 14px;
  }

  .page-adverse-events .contact-card--adverse .contact-aside-foot {
    margin-top: auto;
    padding-top: 20px;
  }

  .page-adverse-events .contact-card--adverse .contact-card-form {
    height: 100%;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 32px 36px 36px 32px;
  }
}

.contact-form-adverse .adverse-fieldset {
  border: 0;
  margin: 0 0 16px;
  padding: 0;
}

.contact-form-adverse .adverse-fieldset:last-of-type {
  margin-bottom: 8px;
}

.contact-form-adverse .adverse-fieldset legend {
  margin: 0 0 10px;
  padding: 0 0 6px;
  width: 100%;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #163E6E;
  border-bottom: 1px solid rgba(22, 62, 110, 0.12);
}

.contact-form-adverse .contact-form-grid {
  gap: 14px 16px;
  margin-bottom: 0;
}

.contact-form-adverse .contact-field {
  min-width: 0;
}

.contact-form-adverse .req {
  color: #CE1728;
}

.contact-form-adverse label,
.contact-form-adverse .adverse-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.contact-form-adverse .form-control {
  min-height: 46px;
}

.contact-form-adverse textarea.form-control {
  min-height: 108px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form-adverse .adverse-choice-row,
.contact-form-adverse .adverse-check-grid {
  display: grid;
  gap: 8px;
}

.contact-form-adverse .adverse-choice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fafafa;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
  cursor: pointer;
}

.contact-form-adverse .adverse-choice input {
  margin: 2px 0 0;
  flex-shrink: 0;
}

.contact-form-adverse .adverse-choice--inline {
  margin-top: 8px;
  padding: 8px 10px;
}

.contact-form-adverse .contact-consent {
  margin: 12px 0 16px;
  gap: 10px;
  line-height: 1.5;
}

.contact-form-adverse .contact-submit {
  margin-top: 0;
}

.contact-form-adverse .contact-field.is-disabled,
.contact-form-adverse .ae-seriousness-section.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.contact-form-adverse .contact-field.is-disabled .form-control,
.contact-form-adverse .contact-field.is-disabled .adverse-choice,
.contact-form-adverse .ae-seriousness-section.is-disabled .adverse-choice {
  background: #f3f4f6;
  border-color: #e5e7eb;
  cursor: not-allowed;
}

.contact-form-adverse .contact-field.is-disabled label,
.contact-form-adverse .contact-field.is-disabled .adverse-label,
.contact-form-adverse .ae-seriousness-section.is-disabled .adverse-label {
  color: #9ca3af;
}

@media (min-width: 768px) {
  .contact-form-adverse .adverse-choice-row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .contact-form-adverse .adverse-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
}

@media (max-width: 767px) {
  .contact-form-adverse .adverse-fieldset {
    margin-bottom: 16px;
  }

  .contact-form-adverse .contact-form-grid {
    gap: 14px;
  }

  .contact-form-adverse .adverse-choice {
    padding: 8px 10px;
  }
}

.alert-site {
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.alert-site.success {
  background: #e8f7ee;
  color: #146c43;
  border: 1px solid #b7e4c7;
}

.alert-site.error {
  background: #fde8ec;
  color: #a00d25;
  border: 1px solid #f5c2c7;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  :root {
    --site-header-offset: 72px;
  }

  .site-header.is-pinned .main-header-inner {
    min-height: 52px;
  }

  .site-header.is-pinned .logo-img {
    height: 38px;
    max-width: 142px;
  }

  .header-nav {
    display: none;
  }

  .nav-dropdown {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .main-header-inner {
    min-height: 60px;
  }

  .logo-img {
    height: 48px;
    max-width: 160px;
  }
}

@media (max-width: 767px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-track {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }

  .journey-track::before {
    display: none;
  }

  .section-pad {
    padding: 56px 0;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero-owl,
  .home-hero-owl .owl-stage-outer,
  .home-hero-owl .owl-stage,
  .home-hero-owl .owl-item,
  .home-hero-slide,
  .home-hero-owl:not(.owl-loaded) {
    min-height: 0;
  }

  .home-hero-inner {
    padding: 24px 20px 48px;
  }

  .home-hero-owl .owl-nav button.owl-prev,
  .home-hero-owl .owl-nav button.owl-next {
    display: none !important;
  }

  .home-global-map-card {
    padding: 20px 14px 16px;
  }

  .home-global-marker {
    width: 32px;
    height: 32px;
  }

  .home-global-marker-dot {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 4px rgba(171, 0, 19, 0.22);
  }

  .home-global-callout {
    width: min(180px, 70vw);
    padding: 10px 12px;
  }

  .home-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.3rem);
  }

  .home-hero-text {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .home-hero-cta {
    padding: 10px 18px;
    font-size: 0.88rem;
  }

  .home-section-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .precision-card .product-card-media {
    height: 118px;
  }

  .precision-card .product-card-body {
    padding: 0;
  }

  .home-pillars-subtitle {
    font-size: 0.92rem;
  }

  .home-global-flags {
    gap: 12px;
  }

  .home-global-flags-row {
    padding: 8px 0 4px;
  }

  .home-global-flags-group {
    gap: 18px;
    padding-right: 18px;
  }

  .home-global-flag-item {
    width: 56px;
  }

  .home-global-flag-img {
    width: 44px;
    height: 30px;
  }

  .home-global-flag-name {
    font-size: 0.6rem;
  }

  .home-global-callout {
    width: min(160px, 62vw);
  }
}

@media (max-width: 576px) {
  .top-bar-email span {
    font-size: 12px;
  }

  .social-circle {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .brands-grid,
  .journey-track {
    grid-template-columns: 1fr;
  }

  .home-hero-owl,
  .home-hero-owl .owl-stage-outer,
  .home-hero-owl .owl-stage,
  .home-hero-owl .owl-item,
  .home-hero-slide {
    min-height: 0;
  }

  .home-hero-inner {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .home-hero-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
    min-height: 42px;
  }

  .section-pad {
    padding: 44px 0;
  }

  .home-health-first {
    padding: 48px 0;
  }

  .home-precision-title,
  .home-pillars-title,
  .home-global-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .precision-card {
    margin: 0;
  }

  .precision-card-wrap {
    padding: 6px 0 12px;
  }
}

/* Prevent horizontal scroll on home / contact content (not on ancestors of sticky header) */
.page-home main,
.page-contact main {
  overflow-x: clip;
}
/* ==========================================================================
   Responsive overrides ONLY (home / about / allied)
   Desktop rules above are intentionally left untouched.
   ========================================================================== */

html {
  max-width: 100%;
}

body {
  max-width: 100%;
}

#root {
  max-width: 100%;
  overflow: visible;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

.page-about main,
.page-allied-business main {
  overflow-x: clip;
}

@media (max-width: 1199px) {
  .page-home .home-stats-grid {
    padding-right: 40px;
  }

  .page-allied-business .expertise-hex::before {
    left: 0;
  }

  .page-allied-business .expertise-section,
  .page-allied-business .our-services-section {
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  .page-home .home-about-logos,
  .page-home .home-global-presence,
  .page-about .about-history-section,
  .page-about .about-values-section,
  .page-allied-business .expertise-section,
  .page-allied-business .our-services-section,
  .page-allied-business .allied-section {
    overflow-x: hidden;
    max-width: 100%;
  }

  .page-allied-business .expertise-honeycomb {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .page-allied-business .expertise-hex::before {
    display: none !important;
  }

  /* Our Services: keep desktop layout, slightly smaller circles */
  .page-allied-business .svc-node--sm .svc-node-circle {
    width: 130px;
    height: 130px;
    border-width: 10px;
  }

  .page-allied-business .svc-node--md .svc-node-circle {
    width: 190px;
    height: 190px;
    border-width: 14px;
  }

  .page-allied-business .svc-node--lg .svc-node-circle {
    width: 280px;
    height: 280px;
    border-width: 16px;
  }

  .page-allied-business .svc-node + .svc-node.svc-node--md {
    margin-top: -70px;
  }

  /* ---- Home ---- */
  .page-home .home-hero-title-accent {
    font-size: clamp(1.75rem, 5vw, 2.4rem);
  }

  .page-home .home-stats-intro-line {
    font-size: 1rem;
  }

  .page-home .home-stats-intro-accent {
    font-size: clamp(1.25rem, 3.2vw, 1.6rem);
  }

  .page-home .home-stats-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 22px 16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-home .home-stats-value {
    font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  }

  .page-home .home-precision {
    max-width: 100%;
    overflow-x: clip;
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .home-precision-slider {
    padding: 0 8px;
    max-width: 100%;
  }

  .page-home .home-precision-owl .owl-item.center .precision-card-wrap {
    transform: scale(1.04);
  }

  .page-home .home-pillars-grid {
    max-width: none;
    margin-inline: 0;
    grid-template-columns: unset;
    gap: 16px;
  }

  .page-home .home-pillars-link {
    display: inline-block;
  }

  .page-home .home-pillar-title {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
  }

  .page-home .home-global-presence {
    overflow: visible;
  }

  .page-home .home-global-callout {
    width: min(180px, 70vw);
    font-size: 0.85rem;
    z-index: 50;
  }

  .page-home .home-global-map-card,
  .page-home .home-global-map-stage {
    overflow: visible;
  }

  .page-home .home-global-flags {
    overflow: visible;
  }

  /* ---- About ---- */
  .page-about .about-history-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px 0;
  }

  .page-about .about-history-copy {
    display: contents;
  }

  .page-about .about-history-copy.reveal,
  .page-about .about-history-title,
  .page-about .about-history-text {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .page-about .about-history-title {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .page-about .about-history-portrait {
    order: 2;
    max-width: 220px;
    margin: 0 auto;
    justify-self: center;
    padding-left: 0;
  }

  .page-about .about-history-text {
    order: 3;
    width: 100%;
  }

  .page-about .about-history-collage {
    order: 4;
    grid-column: auto;
    width: calc(100% + 16px);
    max-width: none;
    margin: 8px 0 0 auto;
    margin-right: -16px;
    align-self: flex-end;
    justify-self: end;
    margin-bottom: -24px;
  }

  .page-about .about-timeline {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding-left: 8px;
    padding-right: 0;
  }

  .page-about .about-timeline::before {
    content: none;
  }

  .page-about .about-timeline-item:not(:last-child)::before,
  .page-about .about-timeline-item--left:not(:last-child)::before,
  .page-about .about-timeline-item--right:not(:last-child)::before {
    top: 34px;
    left: 10px;
    right: auto;
    transform: translateX(-50%);
    height: calc(100% + 32px);
  }

  .page-about .about-timeline-item,
  .page-about .about-timeline-item--left,
  .page-about .about-timeline-item--right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 32px;
    padding-left: 40px;
    padding-right: 0;
  }

  .page-about .about-timeline-item:last-child {
    margin-bottom: 0;
  }

  .page-about .about-timeline-inner,
  .page-about .about-timeline-item--left .about-timeline-inner,
  .page-about .about-timeline-item--right .about-timeline-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
  }

  .page-about .about-timeline-card {
    max-width: none;
    width: 100%;
    order: 2;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-about .about-timeline-year {
    order: 1;
    width: 78px;
    min-height: 52px;
  }

  .page-about .about-timeline-year-text {
    font-size: 0.82rem;
    padding: 14px 10px 16px;
    border-top-width: 14px;
  }

  .page-about .about-timeline-dot,
  .page-about .about-timeline-item--left .about-timeline-dot,
  .page-about .about-timeline-item--right .about-timeline-dot {
    left: 10px;
    right: auto;
    top: 24px;
    transform: translate(-50%, 0);
  }

  .page-about .about-timeline-item--left .about-timeline-year::after,
  .page-about .about-timeline-item--right .about-timeline-year::after {
    left: -10px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    border-width: 7px 8px 7px 0;
    border-color: transparent #AB0013 transparent transparent;
  }

  /* ---- Allied: expertise ---- */
  .page-allied-business .expertise-section {
    overflow-x: hidden;
  }

  .page-allied-business .expertise-honeycomb {
    width: 100%;
    max-width: 100%;
    padding: 12px 0 0;
  }

  .page-allied-business .expertise-hex-text {
    font-size: clamp(0.78rem, 2.4vw, 0.82rem);
    line-height: 1.35;
  }

  .page-allied-business .expertise-hex::before {
    display: none !important;
  }

  .page-allied-business .cdmo-image {
    min-height: 360px;
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  /* ---- Home ---- */
  .page-home .home-hero-title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .page-home .home-hero-title-accent {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
  }

  .page-home .home-hero-text {
    max-width: none;
    font-size: 0.9rem;
  }

  .page-home .home-stats-intro-line {
    font-size: 0.95rem;
  }

  .page-home .home-stats-intro-accent {
    font-size: 1.25rem;
  }

  .page-home .home-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
    flex-wrap: unset;
    row-gap: 12px;
    padding: 18px 12px;
  }

  .page-home .home-stats-item {
    flex: unset;
    padding: 4px 8px;
    min-width: 0;
  }

  .page-home .home-stats-item:not(:last-child)::after {
    display: none;
  }

  .page-home .home-stats-value {
    font-size: 1.35rem;
  }

  .page-home .home-stats-label {
    font-size: 0.85rem;
  }

  .page-home .home-about-logo {
    width: 150px;
    height: 100px;
    overflow: hidden;
  }

  .page-home .home-about-logo img {
    max-height: 85px;
    max-width: 90%;
  }

  .page-home .home-precision-owl .owl-item.center .precision-card-wrap {
    transform: none;
  }

  .page-home .precision-card.product-card,
  .page-home .precision-card-wrap {
    width: min(230px, 74vw);
    max-width: min(230px, 74vw);
  }

  .page-home .home-pillar-title {
    font-size: 0.88rem;
  }

  .page-home .home-pillars-grid {
    max-width: none;
    margin-inline: 0;
  }

  .page-home .home-global-callout {
    width: min(160px, 68vw);
    font-size: 0.82rem;
    z-index: 50;
  }

  .page-home .home-global-map-card,
  .page-home .home-global-map-stage {
    overflow: visible;
  }

  .page-home .home-global-flags {
    overflow: visible;
  }

  /* ---- About ---- */
  .page-about .about-who-title {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  }

  .page-about .about-who-video-btn {
    width: 100%;
    max-width: 220px;
  }

  .page-about .about-history-portrait {
    max-width: 240px;
  }

  .page-about .about-history-text p {
    text-align: left;
    font-size: 0.88rem;
  }

  /* ---- Allied: Our Services (mobile only, below 768) ---- */
  .page-allied-business .svc-flow {
    max-width: 100%;
    overflow: hidden;
    padding: 0 4px;
  }

  .page-allied-business .svc-node + .svc-node,
  .page-allied-business .svc-node + .svc-node.svc-node--md {
    margin-top: 8px;
  }

  .page-allied-business .svc-node--left,
  .page-allied-business .svc-node--right,
  .page-allied-business .svc-node--teal {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }

  .page-allied-business .svc-node-trails {
    display: none !important;
  }

  .page-allied-business .svc-node--sm .svc-node-circle,
  .page-allied-business .svc-node--md .svc-node-circle,
  .page-allied-business .svc-node--lg .svc-node-circle {
    width: 88px;
    height: 88px;
    border-width: 6px;
  }

  .page-allied-business .svc-node--sm .svc-node-pill,
  .page-allied-business .svc-node--md .svc-node-pill,
  .page-allied-business .svc-node--lg .svc-node-pill,
  .page-allied-business .svc-node--left.svc-node--sm .svc-node-pill {
    max-width: none;
    min-height: 64px;
    margin-left: -28px;
    margin-right: 0;
    padding: 12px 18px 12px 40px;
    font-size: 0.88rem;
    line-height: 1.4;
    border-radius: 999px;
    text-align: left;
    justify-content: flex-start;
  }

  .page-allied-business .svc-node--left .svc-node-pill {
    order: 2;
  }

  .page-allied-business .svc-node--left .svc-node-circle {
    order: 1;
  }

  .page-allied-business .cdmo-image {
    min-height: 300px;
  }

  .page-allied-business .neel-arts-btn,
  .page-allied-business .cdmo-btn,
  .page-allied-business .raw-packaging-btn {
    width: 100%;
    max-width: 168px;
  }
}

@media (max-width: 575px) {
  .page-home .home-hero,
  .page-home .home-hero-owl,
  .page-home .home-hero-owl .owl-stage-outer,
  .page-home .home-hero-owl .owl-stage,
  .page-home .home-hero-owl .owl-item,
  .page-home .home-hero-slide {
    min-height: 0;
  }


  .page-home .home-hero-inner {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .page-home .home-hero-title-accent {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .page-home .home-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 12px;
  }

  .page-home .home-stats-item {
    padding: 8px 0;
  }

  .page-home .home-pillars-grid {
    max-width: none;
    padding: 0;
  }

  .page-allied-business .svc-node + .svc-node,
  .page-allied-business .svc-node + .svc-node.svc-node--md {
    margin-top: 10px;
  }

  .page-allied-business .svc-node--sm .svc-node-circle,
  .page-allied-business .svc-node--md .svc-node-circle,
  .page-allied-business .svc-node--lg .svc-node-circle {
    width: 68px;
    height: 68px;
    border-width: 5px;
  }

  .page-allied-business .svc-node--sm .svc-node-pill,
  .page-allied-business .svc-node--md .svc-node-pill,
  .page-allied-business .svc-node--lg .svc-node-pill,
  .page-allied-business .svc-node--left.svc-node--sm .svc-node-pill {
    min-height: 56px;
    padding: 10px 14px 10px 34px;
    font-size: 0.8rem;
    margin-left: -22px;
  }

  .page-allied-business .expertise-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-allied-business .expertise-row--bottom {
    margin-top: 10px;
  }

  .page-allied-business .expertise-section {
    overflow: hidden;
  }

  .page-allied-business .expertise-honeycomb {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 8px 0 48px;
    overflow: hidden;
  }
}

/* —— Advanced Manufacturing Technology —— */
.amt-lead {
  padding: 51px 0 20px;
  background: #fff;
}

.amt-lead-copy {
  text-align: center;
}

.amt-lead-text {
  margin: 0 0 1.35em;
  color: #000000;
    font-size: 14px;
    line-height: 1.75;
}

.amt-lead-text p {
  margin: 0;
      line-height: 1.65;
}

.amt-lead-text p:last-child {
  margin-bottom: 0;
}

.amt-lead-text:last-child {
  margin-bottom: 0;
}

.amt-tech {
  background: #fff;
}

.amt-tech-head {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.page-advanced-manufacturing,
.page-advanced-manufacturing #root,
.page-advanced-manufacturing main {
  overflow: visible;
  transform: none;
  filter: none;
  perspective: none;
}

.page-advanced-manufacturing .amt-tech {
  background: transparent;
  overflow: visible;
}

.amt-feature {
  --amt-panel: rgba(171, 0, 19, 0.88);
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 700;
  min-height: 320px;
  background-color: transparent;
  line-height: normal;
}

/* CodePen parallax — same on desktop, mobile and tablet */
.amt-feature-parallax {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Mobile / tablet: shorter image window */
@media (max-width: 991px), (hover: none), (pointer: coarse), (any-pointer: coarse) {
  .amt-feature {
    aspect-ratio: auto;
    width: 100%;
    min-height: 42vh;
    min-height: 42lvh;
  }

  .amt-feature--empty {
    min-height: 42vh;
    min-height: 42lvh;
  }
}

@media (min-width: 768px) and (max-width: 1366px) {
  .amt-feature {
    min-height: 40vh;
    min-height: 40lvh;
  }

  .amt-feature--empty {
    min-height: 40vh;
    min-height: 40lvh;
  }
}

.amt-feature--empty {
  min-height: 280px;
  background-color: #111;
}

.amt-feature-shell {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  line-height: normal;
  padding: clamp(28px, 4vw, 48px) 16px;
}

.amt-feature--left .amt-feature-shell {
  justify-content: flex-start;
}

.amt-feature-panel {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: min(42%, 340px);
  max-width: 460px;
  height: auto;
  margin: 0;
  padding: clamp(22px, 3vw, 30px) clamp(20px, 2.8vw, 22px);
  background: var(--amt-panel, rgba(50, 0, 8, 0.6));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  line-height: normal;
  overflow: visible;
  pointer-events: auto;
  transition: padding 0.3s ease;
}

.amt-feature-panel.is-expanded {
  align-self: flex-start;
  height: auto;
  max-height: none;
  min-height: 0;
  justify-content: flex-start;
  overflow: visible;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
  box-sizing: border-box;
}

.amt-feature-shell:has(.amt-feature-panel.is-expanded) {
  align-items: flex-start;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.amt-feature-title {
  margin: 0 0 14px;
  flex-shrink: 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.amt-feature-body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amt-feature-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.amt-feature-text p {
  margin: 0 0 0.75em;
}

.amt-feature-text p:last-child {
  margin-bottom: 0;
}

.amt-feature-body.is-collapsed .amt-feature-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.amt-feature-body.is-expanded {
  overflow: visible;
  flex: 0 1 auto;
  min-height: 0;
}

.amt-feature-body.is-expanded .amt-feature-text {
  display: block !important;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: normal;
}

.amt-feature-body.is-expanded .amt-feature-text p {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.amt-feature-more {
  display: inline-block;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.amt-feature-more:hover,
.amt-feature-more:focus-visible {
  color: #ffd4da;
}

.page-advanced-manufacturing .amt-feature-panel.reveal,
.page-advanced-manufacturing .amt-feature-panel.reveal-from-left,
.page-advanced-manufacturing .amt-feature-panel.reveal-from-right {
  transform: none;
  opacity: 0;
}

.page-advanced-manufacturing .amt-feature-panel.reveal.is-visible,
.page-advanced-manufacturing .amt-feature-panel.reveal-from-left.is-visible,
.page-advanced-manufacturing .amt-feature-panel.reveal-from-right.is-visible {
  transform: none;
  opacity: 1;
}

/* Mobile / tablet: disable reveal / hero animation classes in this section */
@media (max-width: 991px), (hover: none), (pointer: coarse), (any-pointer: coarse) {
  .page-advanced-manufacturing .reveal,
  .page-advanced-manufacturing .reveal-from-left,
  .page-advanced-manufacturing .reveal-from-right,
  .page-advanced-manufacturing .reveal-scale,
  .page-advanced-manufacturing .reveal-fade,
  .page-advanced-manufacturing .page-hero-anim,
  .page-advanced-manufacturing .amt-feature-panel.reveal,
  .page-advanced-manufacturing .amt-feature-panel.reveal-from-left,
  .page-advanced-manufacturing .amt-feature-panel.reveal-from-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .amt-feature-parallax {
    background-attachment: scroll;
  }
}

.amt-section {
  --amt-gold: #e8921a;
  --amt-maroon: #7a0010;
  padding: 56px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(200, 16, 46, 0.06), transparent 55%),
    linear-gradient(180deg, #fff 0%, #faf7f5 100%);
}

.amt-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.amt-title {
  margin: 0 0 16px;
      font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.amt-title-dark {
  color: #111111;
}

.amt-title-accent {
  font-family: "Satoshi-Bold", sans-serif;
  color: #AB0013;
  font-weight: 700;
}

.amt-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
}

.amt-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  position: relative;
}

.amt-pillars::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 48px;
  height: 0;
  border-top: 2px dashed rgba(232, 146, 26, 0.45);
  pointer-events: none;
  z-index: 0;
}

.amt-pillar {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.amt-pillar-hex {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 12px rgba(240, 160, 32, 0.35));
}

.amt-pillar-hex-face {
  width: 86px;
  height: 96px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, #fff8eb 0%, #fff 45%, #fff3d6 100%);
  box-shadow: inset 0 0 0 2.5px var(--amt-gold);
  color: var(--amt-gold);
}

.amt-pillar-hex-face i {
  font-size: 1.85rem;
  line-height: 1;
  color: inherit;
}

.amt-pillar-hex-face img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.amt-pillar-title {
  margin: 0 0 8px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amt-maroon);
  line-height: 1.3;
}

.amt-pillar-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #555;
}

.amt-visual {
  padding: 0 0 72px;
  background: #faf7f5;
}

.amt-visual-frame {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.amt-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border-bottom: 6px solid var(--nem-yellow);
  box-shadow: 0 18px 40px rgba(80, 0, 12, 0.12);
}

@media (max-width: 991px) {
  .amt-lead {
    padding: 25px 0 20px;
  }
  .amt-feature--empty {
    min-height: 280px;
  }

  .amt-feature-shell {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    padding: clamp(20px, 4vw, 36px) 16px;
    line-height: normal;
  }

  .amt-feature--left .amt-feature-shell {
    justify-content: flex-start;
  }

  .amt-feature-panel {
    width: min(72%, 340px);
    max-width: 400px;
    padding: 22px 18px 24px;
    overflow: visible;
    box-sizing: border-box;
  }

  .amt-feature-panel.is-expanded {
    height: auto;
    max-height: none;
    min-height: 0;
    align-self: flex-start;
    overflow: visible;
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .amt-feature-shell:has(.amt-feature-panel.is-expanded) {
    align-items: flex-start;
    padding-top: clamp(20px, 4vw, 36px);
    padding-bottom: clamp(20px, 4vw, 36px);
  }

  .amt-feature-body.is-expanded .amt-feature-text {
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .amt-feature-title {
    margin: 0 0 12px;
    font-size: clamp(1.05rem, 3.6vw, 1.25rem);
  }

  .amt-feature-body {
    gap: 12px;
    min-width: 0;
  }

  .amt-feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .amt-feature-body.is-collapsed .amt-feature-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    max-height: none;
  }

  .amt-feature-more {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 4px 0 0;
    line-height: 1.3;
    white-space: nowrap;
  }

  .amt-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }

  .amt-pillars::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .amt-feature-shell {
    padding: clamp(16px, 4vw, 28px) 12px;
    justify-content: center;
  }

  .amt-feature--left .amt-feature-shell {
    justify-content: center;
  }

  .amt-section {
    padding: 52px 0 56px;
  }

  .amt-feature-panel {
    width: min(78%, 300px);
    padding: 18px 14px 20px;
  }

  .amt-feature-body.is-collapsed .amt-feature-text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .amt-pillars {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .amt-pillar-hex {
    width: 84px;
    height: 84px;
  }

  .amt-pillar-hex-face {
    width: 74px;
    height: 84px;
  }
}

/* ------------------------------------------------------------------ */
/* Our Products catalog                                               */
/* ------------------------------------------------------------------ */

.products-catalog {
  padding: 73px 0 72px;
  background: #fff;
  scroll-margin-top: calc(var(--site-header-offset-full, var(--site-header-offset, 122px)) + var(--anchor-scroll-gap, 20px));
}

.products-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.products-filters {
  align-self: start;
}

.products-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 27px;
}

.products-filters-title {
  margin: 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1.53rem;
  color: #0B1C30;
}

.products-filters-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #c8102e;
  border-radius: 8px;
  padding: 0;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.88rem;
  cursor: default;
  pointer-events: none;
}

.products-filters-toggle-text {
  display: none;
}

.products-filters-toggle-icon {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.products-filters-body {
  display: block;
}

.products-search {
  position: relative;
      margin-bottom: 16px;
    padding-bottom: 22px;
  border-bottom: 1px solid #E4BEBA33;
}

.products-search input {
      width: 100%;
    height: 50px;
    border: 1px solid #E4BEBA80;
    border-radius: 6px;
    padding: 0 42px 0 17px;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #fff;
}
.products-search-btn i.bi-search {
  font-size: 12px;
}

.products-search input:focus {
  outline: none;
  border-color: #c8102e;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

.products-search-btn {
  position: absolute;
  right: 4px;
  top: 22px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #9aa3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.products-filter-group {
  margin-bottom: 0;
}

.products-filter-collapse {
  border-bottom: 1px solid #E4BEBA33;
}

.products-filter-collapse-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 18px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.products-filter-collapse-btn .products-filter-label {
  flex: 1;
  margin: 0;
}

.products-filter-collapse-btn .bi {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #5D5E61;
  transition: transform 0.32s ease;
}

.products-filter-collapse.is-open .products-filter-collapse-btn .bi {
  transform: rotate(180deg);
}

.products-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #c8102e;
  color: #fff;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.products-filter-collapse-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding-bottom: 0;
  opacity: 0;
  transition: grid-template-rows 0.34s ease, opacity 0.28s ease, padding-bottom 0.34s ease;
}

.products-filter-collapse-panel > .products-filter-list {
  overflow: hidden;
  min-height: 0;
  transform: translateY(-6px);
  transition: transform 0.34s ease;
}

.products-filter-collapse.is-open .products-filter-collapse-panel {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
  opacity: 1;
}

.products-filter-collapse.is-open .products-filter-collapse-panel > .products-filter-list {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .products-filter-collapse-panel,
  .products-filter-collapse-panel > .products-filter-list,
  .products-filter-collapse-btn .bi {
    transition: none;
  }
}

.products-filter-label {
  margin: 0 0 15px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5D5E61;
}

.products-filter-collapse-panel .products-filter-list {
  margin-top: 0;
}

.products-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.products-check {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 1rem;
    color: #0B1C30;
    line-height: 1.35;
}

.products-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #E4BEBA;
  border-radius: 3px;
  background: #fff;
  accent-color: #c8102e;
  cursor: pointer;
  position: relative;
}

.products-check input:checked {
  background: #c8102e;
  border-color: #c8102e;
}

.products-check input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.products-check--country {
  align-items: center;
}

.products-check--country input {
  margin-top: 0;
}

.products-check-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(11, 28, 48, 0.12);
}

.products-clear {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: #c8102e;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}
.products-filters-body .products-clear {
  display: block;
  margin: 28px auto 0;
  padding-top: 4px;
}
.products-clear:hover {
  text-decoration: underline;
  color: #ab0013;
}

.products-clear--disabled {
  color: #c4c9d1;
  cursor: default;
  text-decoration: none;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.products-count {
  margin: 0;
  color: #5D5E61;
  font-size: 17px;
}

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

.product-card {
  border: 1px solid #45AAB1;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
      box-shadow: 0 10px 24px rgba(26, 40, 60, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card-media {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3f5f8;
  color: #9aa3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.product-card-media .product-card-placeholder-img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
}

.product-card-body {
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.product-card-title {
  margin: 0 0 14px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 1.15rem;
  color: #111827;
  line-height: 1.3;
}

.product-card-meta {
  margin-bottom: 12px;
  min-width: 0;
}

.product-card-meta h4 {
  margin: 0 0 6px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 0.99rem;
  color: #AB0013;
}

.product-card-meta p {
  margin: 0;
  color:#000000;
  font-size: 15px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.product-card .product-card-meta p {
    font-size: 15px;
    line-height: 1.58;
}

/* Products page only: show full composition / packing text */
.page-products .product-card-meta p {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card-quote {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 38px;
    padding: 8px 10px 11px;
    border: 1px solid #767676;
    border-radius: 12px;
    background: #fff;
    color: #767676;
    font-family: "Satoshi-Bold", sans-serif;
    font-size: 0.82rem;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

/* Keep Request Quote pinned to card bottom when text height differs */
.page-products .products-grid {
  align-items: stretch;
}

.page-products .product-card {
  height: 100%;
  min-width: 0;
}

.page-products .product-card-body {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-products .product-card-quote {
  margin-top: auto;
}

.product-card-quote:hover {
  border-color: #c8102e;
  color: #c8102e;
  background: #fff8f9;
  text-decoration: none;
}

.products-empty {
  padding: 48px 20px;
  text-align: center;
  border: 1px dashed #d7dde5;
  border-radius: 12px;
  color: #6b7280;
}

.products-empty a {
  color: #c8102e;
  font-family: "Satoshi-Bold", sans-serif;
}

.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.products-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #E4BEBA4D;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5D5E61;
  text-decoration: none;
  background: #fff;
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 0.92rem;
}

.products-page-btn:hover {
  border-color: #c8102e;
  color: #c8102e;
}

.products-page-btn.is-active {
  background: #c8102e;
  border-color: #c8102e;
  color: #fff;
}

.products-page-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.products-page-ellipsis {
  color: #9aa3af;
  min-width: 24px;
  text-align: center;
}

.product-quote-modal .modal-title {
  font-family: "Satoshi-Bold", sans-serif;
}

.product-quote-for {
  margin-bottom: 16px;
  color: #4b5563;
}

.product-quote-submit {
  background: #c8102e;
  border-color: #c8102e;
  color: #fff;
}

.product-quote-submit:hover {
  background: #ab0013;
  border-color: #ab0013;
  color: #fff;
}

.page-products,
.page-career {
  overflow-x: clip;
}

@media (max-width: 1199px) {
  .products-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
  }

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

@media (max-width: 767px) {
  .products-catalog {
    padding: 32px 0 64px;
  }

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

  .products-filters {
    border: 1px solid #E4BEBA66;
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
  }

  .products-filters-head {
    margin-bottom: 0;
  }

  .products-filters-title {
    font-size: 1.15rem;
  }

  .products-filters-toggle {
    border: 1px solid #E4BEBA80;
    background: #fff;
    padding: 8px 12px;
    cursor: pointer;
    pointer-events: auto;
  }

  .products-filters-toggle-text {
    display: inline;
  }

  .products-filters-body {
    display: none;
    margin-top: 16px;
    padding-top: 4px;
  }

  .products-filters-body.is-open {
    display: block;
  }

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

  .product-card-media {
    height: 160px;
  }

  .product-card-body {
    padding: 8px 0 18px;
  }

  .product-card-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .products-toolbar {
    gap: 10px;
  }

  .products-count {
    font-size: 0.88rem;
    width: 100%;
  }

  .products-pagination {
    gap: 6px;
    margin-top: 28px;
  }

  .products-page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .product-quote-modal .modal-dialog {
    margin: 12px;
  }
}

@media (max-width: 575px) {
  .products-catalog {
    padding: 24px 0 48px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card-media {
    height: 180px;
  }

  .product-card-quote {
    width: 100%;
  }

  .products-filters {
    padding: 6px 12px;
  }
}

/* Career team: slightly tighter cards on tablet */
@media (max-width: 1199px) {
  .career-team-grid {
    gap: 28px;
  }

  .career-team-row {
    gap: 20px;
  }

  .career-team-card {
    width: calc((100% - 60px) / 4); /* 4 cols, 3 × 20px gaps */
    max-width: calc((100% - 60px) / 4);
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
  }
}
@media (max-width: 1365px) {
.nav-link, .nav-links > .nav-item > .nav-link {
    font-size: 14px;
}
    .nav-links {
        gap: 4px 11px;
    }
}
@media (max-width: 1279px) {
.logo-img {
    height: 55px;
}
}
@media (max-width: 992px) {
.home-hero-copy {
    max-width: 340px;
}
.home-hero-title {
        font-size: clamp(2rem, 1vw, 1rem);
    }

}

@media (max-width: 767px) {
  .home-hero-copy {
    max-width: 100%;
}
  .career-culture-labels {
    display: none;
  }

  .career-culture-label--stacked {
    display: flex;
  }

  .career-culture-lines,
  .career-culture-hub-ring {
    display: none;
  }

  .career-culture-board {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    min-height: 0;
    max-width: 640px;
  }

  .career-culture-col--respect {
    order: 2;
  }

  .career-culture-hub {
    order: 1;
    align-self: center;
    margin: 4px 0 8px;
    width: 200px;
    height: 200px;
  }

  .career-culture-col--responsibility {
    order: 3;
  }

  .career-culture-col {
    min-height: 0;
    justify-content: flex-start;
    padding: 0;
  }

  .career-culture-hub-inner {
    inset: 0;
    width: auto;
    height: auto;
    border: 5px solid var(--career-responsibility);
    margin: 0;
  }

  .career-culture-item {
    margin-bottom: 0;
  }

  .career-culture-item--respect,
  .career-culture-item--responsibility {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }

  .career-culture-item--responsibility .career-culture-copy {
    margin-left: 0;
    text-align: left;
  }

  .career-culture-copy {
    max-width: none !important;
  }

  .career-culture-board {
    gap: 24px;
    max-width: 640px;
  }

  .career-culture-col {
    gap: 14px;
  }

  .career-culture-item-desc {
    font-size: 0.85rem;
  }
  .career-culture-item--responsibility-1 .career-culture-item-title {
    max-width: max-content;
}

  .career-team-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 16px;
  }

  .career-team-row {
    display: contents;
  }

  .career-team-card {
    width: calc((100% - 16px) / 2); /* 2 cols */
    max-width: calc((100% - 16px) / 2);
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .career-jobs-head {
    margin-bottom: 28px;
    padding: 0 8px;
  }
  .mobile-nav-link, .mobile-nav-links > .mobile-nav-item > .mobile-nav-link {
    padding: 8px 4px;
    color: #000;
}
}
@media (max-width: 991.9px) {
.logo-img {
    height: 65px;
}
.nav-links {
    gap: 4px 25px;
}
.home-health-first-inner {
    text-align: center;
}
.home-health-first-text {
  text-align: center;
  max-width: 100%;
}
.infrastructure-engineering-text p {
    font-size: 17px;
}
.infrastructure-walkthrough-play {
    width: 80px;
    height: 80px;
    border: 6px solid #fff;
}
.rnd-achievements {
    padding: 16px 0 50px;
}
.rnd-commercial-card {
    min-height: 320px;
    height: 320px;
    padding: 24px 20px;
}
.rnd-commercial-card img {
    max-width: 85%;
    max-height: 220px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
}
.career-culture-item {
  margin-bottom: 0;
}
}
@media (max-width: 767px) {
  .logo-img {
        height: 55px;
    }
  .career-culture {
    padding: 32px 0 10px;
  }

  .career-culture-head {
    margin-bottom: 24px;
  }

  .career-culture-labels {
    margin-bottom: 20px;
  }

  .career-culture-label,
  .career-culture-label--stacked {
    min-height: 48px;
    font-size: 1.15rem;
  }

  .career-culture-hub-title {
    font-size: 0.95rem;
  }

  .career-culture-hub-sub {
    font-size: 0.78rem;
  }

  .career-team {
    padding: 8px 0 48px;
  }

  .career-team-title {
    margin-bottom: 28px;
  }

  .career-team-grid {
    gap: 20px 12px;
  }

  .career-team-card {
    width: calc((100% - 12px) / 2); /* 2 cols, 1 × 12px gap */
    max-width: calc((100% - 12px) / 2);
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .career-team-name {
    font-size: 0.95rem;
  }

  .career-team-role {
    font-size: 0.82rem;
  }

  .career-team-modal.modal .modal-body.career-team-modal-body,
  .career-team-modal-body {
    padding: 20px 16px 24px !important;
  }

  .career-team-modal-photo {
    width: 120px;
    max-width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
  }

  .career-jobs {
    padding: 8px 0 56px;
  }

  .career-jobs-card {
    flex-direction: row;
    align-items: center;
  }

  .career-jobs-card-title {
    font-size: 1rem;
  }
  .about-vision-card-text p {
    font-size: 15px;
}
 .footer-logo {
    height: 60px;
  }
  p {
    font-size: 14px !important;
    line-height: 1.6;
}
}

@media (max-width: 575px) {
  .career-culture-item {
    gap: 12px;
    min-height: 0;
  }

  .career-culture-item-title {
    font-size: 0.9rem;
  }

  .career-culture-item-desc {
    font-size: 0.8rem;
  }

  .career-team-grid {
    gap: 18px 10px;
  }

  .career-team-card {
    width: calc((100% - 10px) / 2); /* 2 cols, 1 × 10px gap */
    max-width: calc((100% - 10px) / 2);
    flex: 0 0 calc((100% - 10px) / 2);
  }

  .career-team-photo {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .career-jobs-card {
    padding: 16px 14px;
    gap: 14px;
    border-radius: 12px;
  }

  .career-jobs-card-logo,
  .career-jobs-card-logo img,
  .career-jobs-card-logo-fallback {
    width: 52px;
    height: 52px;
  }

  .career-jobs-card-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .career-team-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    gap: 16px 10px;
  }

  .career-team-card {
    width: calc((100% - 10px) / 2); /* keep 2 cols on small phones */
    max-width: calc((100% - 10px) / 2);
    flex: 0 0 calc((100% - 10px) / 2);
  }

  .products-filters-title {
    font-size: 1.05rem;
  }
}

/* Browser capture deterrence (site-protect.js) */
body.site-protect-enabled {
  -webkit-touch-callout: none;
}

body.site-protect-enabled :not(input):not(textarea):not(select):not(.form-control):not([contenteditable="true"]) {
  -webkit-user-select: none;
  user-select: none;
}

body.site-protect-enabled input,
body.site-protect-enabled textarea,
body.site-protect-enabled select,
body.site-protect-enabled .form-control,
body.site-protect-enabled [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

body.site-protect-enabled img,
body.site-protect-enabled picture,
body.site-protect-enabled svg,
body.site-protect-enabled video,
body.site-protect-enabled canvas {
  -webkit-user-drag: none;
  user-drag: none;
}

html.site-capture-flash #root,
html.site-capture-flash .fancybox__container {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#site-capture-notice {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background: #0b1220;
  color: #fff;
  text-align: center;
  padding: 24px;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

body.site-capture-deterred #site-capture-notice {
  display: flex;
}

body.site-capture-deterred #root,
html.site-capture-panic #root {
  display: none !important;
}

body.site-capture-deterred .fancybox__container,
html.site-capture-panic .fancybox__container {
  display: none !important;
}

.site-capture-notice-text {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.site-capture-continue-btn {
  display: inline-flex;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b1220;
  background: #fff;
  cursor: pointer;
}

body.site-capture-manual .site-capture-continue-btn {
  display: inline-flex;
}

.site-capture-continue-btn:hover,
.site-capture-continue-btn:focus-visible {
  background: #e8eef5;
}

@media print {
  body.site-protect-enabled #root {
    display: none !important;
  }
}
