/* ========================================
   Mackson Healthcare — Website Styles
   Matching Canva Design
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --mint: #D4EDEA;
  --steel-blue: #6B8EA4;
  --teal-dark: #4A7C8A;
  --navy: #1B2541;
  --navy-dark: #02084b;
  --text-dark: #1A202C;
  --text-gray: #5A6378;
  --overlay: rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: 60px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 0;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  padding: 20px 0 0;
  text-align: center;
}

.main-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav.fixed .nav-logo {
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: inline-block;
  margin-bottom: 16px;
}

.logo-img {
  height: 75px;
  width: auto;
  margin: 0 auto;
}

/* Nav inline logo — hidden by default, shows when nav is fixed */
.nav-logo {
  display: none;
  margin-right: 48px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

/* Navigation */
.main-nav {
  border-top: 1px solid #E8EBF0;
  border-bottom: 1px solid #E8EBF0;
  padding: 14px 24px;
  background: var(--white);
  position: relative;
  overflow: visible;
}


.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 0;
  width: 100%;
}

.main-nav.fixed .nav-links {
  padding-left: 0;
}

.nav-links li a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  padding: 4px 18px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: var(--steel-blue);
}

.nav-links li a.nav-cta {
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 6px;
  transition: background 0.25s ease;
}

.nav-links li a.nav-cta:hover {
  background: #498fb1;
  color: var(--white);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.65em;
  margin-left: 2px;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  color: var(--text-dark) !important;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li a:hover {
  background: #f0f4f8;
  color: var(--steel-blue) !important;
}

.nav-divider {
  color: #C0C4CC;
  font-size: 0.85rem;
  font-weight: 300;
  user-select: none;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: 0.3s;
}

/* ===== HERO BANNER (full single section) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 680px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

/* All content stacked vertically on top of video */
.hero-all {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 90px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1400px;
  padding: 0 24px;
}

.hero-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 3rem + 1.2vw, 4rem);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-headline .mobile-break {
  display: none;
}

.hero-headline .desktop-break {
  display: inline;
}

.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 750px;
}

/* Product strip — sits between headline and CTAs */
.product-strip {
  width: 100%;
  background: #d3f7f0;
  padding: 12px 24px;
  position: relative;
  z-index: 3;
  margin-top: 10px;
  border-top: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  text-align: center;
}

.product-strip p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* CTA row — below product strip, still on video bg */
.cta-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 32px 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  min-width: 300px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid #ffffff;
  outline: none;
  max-width: 100%;
  white-space: nowrap;
}

.btn-partner {
  background: #5a9bbc;
  color: var(--white);
}

.btn-partner:hover {
  background: #4a8bac;
}

.btn-explore {
  background: #5a9bbc;
  color: var(--white);
}

.btn-explore:hover {
  background: #3a7d9e;
}

/* ===== STATS SECTION ===== */
.stats-section {
  position: relative;
  background: var(--navy-dark);
  padding: 80px 0;
  overflow: hidden;
}

.stats-bg-globe {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  pointer-events: none;
  opacity: 0.08;
}

.stats-bg-globe img {
  width: 100%;
  mix-blend-mode: screen;
}

.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 80px);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px) clamp(50px, 6vw, 100px);
  max-width: 600px;
}

/* ===== GLOBAL REACH MAP SECTION ===== */
.global-reach {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.global-reach-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.global-reach-header {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.global-reach-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 400;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.global-reach-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.global-reach-subtitle strong {
  color: var(--navy-dark);
  font-weight: 700;
}

.global-reach-map-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #d3f7f0;
  line-height: 1;
  min-height: 1em;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
  background: var(--white);
  padding: 50px 0 100px;
}

.wwa-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 4vw, 60px);
}

.wwa-text {
  flex: 0.9;
}

.wwa-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #02084b;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-bottom: 24px;
}

.wwa-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 3rem);
  font-weight: 400;
  color: #252627;
  line-height: 1.3;
  margin-bottom: 28px;
}

.wwa-headline em {
  font-style: italic;
  font-weight: 700;
  color: #252627;
}

.wwa-divider {
  border: none;
  border-top: 1px solid #252627;
  width: 80%;
  margin: 0 0 28px 0;
}

.wwa-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #252627;
  line-height: 1.8;
  margin-bottom: 36px;
}

.btn-partner-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8636F;
  border: 2px solid #E8636F;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  max-width: 100%;
  white-space: nowrap;
}

.btn-partner-outline:hover {
  background: #E8636F;
  color: var(--white);
}

.wwa-video {
  flex: 1;
}

.wwa-video {
  flex: 0.9;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.wwa-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== WHY MAKSON SECTION ===== */
.why-makson {
  background: #498fb1;
  padding: clamp(50px, 6vw, 80px) 0 clamp(60px, 7vw, 100px);
}

.why-makson-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.why-makson-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}

.why-makson-title strong {
  font-weight: 700;
}

.why-makson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 50px);
  max-width: 1700px;
  margin: 0;
}

.why-makson-card {
  text-align: center;
}

.why-makson-icon {
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-makson-icon img {
  height: 120px;
  width: auto;
}

.why-makson-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 0.7rem + 0.5vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 16px;
}

.why-makson-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 80%;
  margin: 0 auto 20px;
}

.why-makson-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  text-align: center;
}

/* ===== WHAT WE MAKE SECTION ===== */
.what-we-make {
  background: var(--white);
  padding: clamp(20px, 2.4vw, 32px) 0 clamp(4px, 0.5vw, 8px);
}

.wwm-header {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: clamp(20px, 2.5vw, 30px);
}

.wwm-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #02084b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.wwm-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 3rem);
  font-weight: 400;
  color: #252627;
  line-height: 1.3;
  max-width: 1200px;
}

.wwm-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.wwm-card {
  flex: 0 0 calc((100% - 60px) / 4);
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.wwm-card-bg {
  position: absolute;
  inset: 0;
}

.wwm-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wwm-card:hover .wwm-card-bg img {
  transform: scale(1.05);
}

.wwm-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.wwm-card-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wwm-card:hover .wwm-card-video {
  opacity: 1;
}

.wwm-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwm-card-title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  position: relative;
  padding: clamp(30px, 4vw, 50px) 0;
  overflow: hidden;
}

.product-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-showcase-bg video,
.product-showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.92;
  z-index: 1;
}

.product-showcase-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.product-showcase-image {
  flex: 0 0 45%;
}

.product-showcase-image img,
.product-showcase-image video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-showcase-text {
  flex: 1;
}

.product-showcase-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.product-showcase-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.product-showcase-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 80%;
  margin: 0 0 24px 0;
}

.product-showcase-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-showcase-body strong {
  font-weight: 700;
}

.product-showcase-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 32px;
}

.product-showcase-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
}

.btn-explore-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-explore-more:hover {
  background: var(--white);
  color: var(--navy-dark);
}

/* Light variant (Lozenges etc.) */
.product-showcase-light .product-showcase-overlay {
  background: rgba(255, 255, 255, 0.88);
}

.product-showcase-light .product-showcase-bg img {
  filter: blur(8px);
  transform: scale(1.05);
}

.product-showcase-light .product-showcase-title {
  color: var(--navy-dark);
}

.product-showcase-light .product-showcase-sub {
  color: var(--text-gray);
}

.product-showcase-light .product-showcase-divider {
  border-top-color: var(--navy-dark);
  width: 50%;
}

.product-showcase-light .product-showcase-body {
  color: var(--text-dark);
}

.product-showcase-light .product-showcase-list li {
  color: var(--text-dark);
}

.product-showcase-light .btn-explore-more {
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.product-showcase-light .btn-explore-more:hover {
  background: var(--navy-dark);
  color: var(--white);
}

/* ===== PRODUCT PAGE HERO ===== */
.product-page-hero {
  min-height: 80vh;
}

/* ===== PRODUCT TILES ===== */
.product-tiles {
  background: var(--white);
  padding: clamp(4px, 1vw, 8px) 0 clamp(10px, 2vw, 16px);
}

.product-tiles-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.product-tiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.product-tile {
  width: calc(25% - 9px);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

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

.product-tile:hover img {
  transform: scale(1.05);
}

.product-tile-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: #498fb1;
  padding: clamp(30px, 3vw, 40px) 0;
}

.process-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.process-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.process-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.process-headline em {
  font-style: italic;
  font-weight: 700;
}

.process-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  margin: 0 0 clamp(50px, 6vw, 80px) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.process-step {
  text-align: center;
}

.process-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-icon img {
  height: 65px;
  width: auto;
}

.process-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.process-step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.process-cta {
  text-align: center;
}

.btn-partner-process {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-partner-process:hover {
  background: var(--white);
  color: #498fb1;
}

/* ===== OUR CLIENTS SECTION ===== */
.clients-section {
  background: var(--white);
  padding: clamp(28px, 3vw, 40px) 0;
}

.clients-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 40px);
  text-align: center;
}

.clients-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 400;
  color: var(--navy-dark);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.clients-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.clients-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 0 0 clamp(28px, 3.5vw, 45px) 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  align-items: center;
  width: 100%;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  height: 115px;
}

.client-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  width: auto;
  height: auto;
}

.client-logo img.logo-cipla { max-height: 38px; }
.client-logo img.logo-haleon { max-height: 88px; }
.client-logo img.logo-mars { max-height: 66px; }
.client-logo img.logo-mondelez { max-height: 77px; }
.client-logo img.logo-dabur { max-height: 94px; }
.client-logo img.logo-pg { max-height: 39px; }
.client-logo img.logo-reckitt { max-height: 95px; }
.client-logo img.logo-hawpar { max-height: 70px; }
.client-logo img.logo-amcal { max-height: 230px; }
.client-logo img.logo-unilever { max-height: 76px; }
.client-logo img.logo-nestle { max-height: 70px; }
.client-logo img.logo-himalaya { max-height: 64px; }
.client-logo img.logo-cocacola { max-height: 41px; }

/* ===== CERTIFICATIONS SECTION ===== */
.certs-section {
  background: #498fb1;
  padding: clamp(30px, 4vw, 50px) 0;
}

.certs-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.certs-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  margin-bottom: 12px;
}

.certs-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 16px;
}

.certs-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  margin: 0 0 clamp(20px, 3vw, 30px) 0;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.cert-card {
  background: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 10px 10px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.cert-card img {
  max-width: 80%;
  max-height: 65%;
  object-fit: contain;
  flex-shrink: 0;
  margin: auto 0;
  overflow: hidden;
}

.cert-card img.logo-who,
.cert-card img.logo-fssai,
.cert-card img.logo-tga {
  max-width: 90%;
  max-height: 70%;
}

.cert-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-top: 10px;
  flex-shrink: 0;
}

/* ===== CONTACT US SECTION ===== */
.contact-section {
  position: relative;
  padding: clamp(30px, 4vw, 50px) 0;
  overflow: hidden;
}

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

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.90;
  z-index: 1;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  align-items: flex-start;
}

/* Left: Info */
.contact-info {
  flex: 1;
}

.contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d3f7f0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.contact-title strong {
  font-weight: 700;
}

.contact-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: #498fb1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-detail-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Right: Form */
.contact-form-wrap {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
}

.form-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-title strong {
  font-weight: 700;
}

.form-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-group label .required {
  color: #E8636F;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A0A7B5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #498fb1;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.message-header label {
  margin-bottom: 0;
}

.char-count {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  background: #498fb1;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #3a7d9e;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--white);
}

.footer-cta {
  padding: clamp(30px, 4vw, 50px) clamp(24px, 5vw, 80px);
}

.footer-cta-inner {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(30px, 4vw, 60px) clamp(30px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-cta-text h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-cta-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.btn-lets-connect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-lets-connect span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #498fb1;
  color: var(--white);
  border-radius: 6px;
  font-size: 1.1rem;
}

.btn-lets-connect:hover {
  background: #d3f7f0;
}

/* Footer columns */
.footer-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  border-top: 1px solid #D0D5DD;
}

.footer-about {
  padding-right: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a,
.footer-contact-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-gray);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col ul li a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 80px);
  border-top: 1px solid #D0D5DD;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-gray);
}


/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */

/* --- Fade In --- */
.anim-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Pop --- */
.anim-pop {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-pop.anim-visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Gradient Shimmer (text) --- */
.anim-gradient {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-gradient.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Slide from left (Contact section) --- */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-slide-left.anim-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Banner: animate on load, no scroll needed --- */
.hero .anim-fade,
.hero .anim-pop {
  transition-delay: 0.3s;
}

/* --- Stagger delays for grouped items --- */
.stat-item:nth-child(1) .anim-pop { transition-delay: 0s; }
.stat-item:nth-child(2) .anim-pop { transition-delay: 0.15s; }
.stat-item:nth-child(3) .anim-pop { transition-delay: 0.3s; }
.stat-item:nth-child(4) .anim-pop { transition-delay: 0.45s; }

.stat-item:nth-child(1) .anim-fade { transition-delay: 0.1s; }
.stat-item:nth-child(2) .anim-fade { transition-delay: 0.25s; }
.stat-item:nth-child(3) .anim-fade { transition-delay: 0.4s; }
.stat-item:nth-child(4) .anim-fade { transition-delay: 0.55s; }

.why-makson-card:nth-child(1) .anim-pop { transition-delay: 0s; }
.why-makson-card:nth-child(2) .anim-pop { transition-delay: 0.15s; }
.why-makson-card:nth-child(3) .anim-pop { transition-delay: 0.3s; }

.why-makson-card:nth-child(1) .anim-fade { transition-delay: 0.1s; }
.why-makson-card:nth-child(2) .anim-fade { transition-delay: 0.25s; }
.why-makson-card:nth-child(3) .anim-fade { transition-delay: 0.4s; }

.process-step:nth-child(1) .anim-pop { transition-delay: 0s; }
.process-step:nth-child(2) .anim-pop { transition-delay: 0.15s; }
.process-step:nth-child(3) .anim-pop { transition-delay: 0.3s; }
.process-step:nth-child(4) .anim-pop { transition-delay: 0.45s; }
.process-step:nth-child(5) .anim-pop { transition-delay: 0.6s; }

/* Client logos — stagger resets per row of 5 */
.client-logo.anim-fade:nth-child(1)  { transition-delay: 0s; }
.client-logo.anim-fade:nth-child(2)  { transition-delay: 0.06s; }
.client-logo.anim-fade:nth-child(3)  { transition-delay: 0.12s; }
.client-logo.anim-fade:nth-child(4)  { transition-delay: 0.18s; }
.client-logo.anim-fade:nth-child(5)  { transition-delay: 0.24s; }
.client-logo.anim-fade:nth-child(6)  { transition-delay: 0s; }
.client-logo.anim-fade:nth-child(7)  { transition-delay: 0.06s; }
.client-logo.anim-fade:nth-child(8)  { transition-delay: 0.12s; }
.client-logo.anim-fade:nth-child(9)  { transition-delay: 0.18s; }
.client-logo.anim-fade:nth-child(10) { transition-delay: 0.24s; }
.client-logo.anim-fade:nth-child(11) { transition-delay: 0s; }
.client-logo.anim-fade:nth-child(12) { transition-delay: 0.06s; }
.client-logo.anim-fade:nth-child(13) { transition-delay: 0.12s; }
.client-logo.anim-fade:nth-child(14) { transition-delay: 0.18s; }
.client-logo.anim-fade:nth-child(15) { transition-delay: 0.24s; }

/* Cert cards — stagger resets per row of 5 */
.cert-card.anim-fade:nth-child(1)  { transition-delay: 0s; }
.cert-card.anim-fade:nth-child(2)  { transition-delay: 0.06s; }
.cert-card.anim-fade:nth-child(3)  { transition-delay: 0.12s; }
.cert-card.anim-fade:nth-child(4)  { transition-delay: 0.18s; }
.cert-card.anim-fade:nth-child(5)  { transition-delay: 0.24s; }
.cert-card.anim-fade:nth-child(6)  { transition-delay: 0s; }
.cert-card.anim-fade:nth-child(7)  { transition-delay: 0.06s; }
.cert-card.anim-fade:nth-child(8)  { transition-delay: 0.12s; }
.cert-card.anim-fade:nth-child(9)  { transition-delay: 0.18s; }
.cert-card.anim-fade:nth-child(10) { transition-delay: 0.24s; }
.cert-card.anim-fade:nth-child(11) { transition-delay: 0s; }
.cert-card.anim-fade:nth-child(12) { transition-delay: 0.06s; }
.cert-card.anim-fade:nth-child(13) { transition-delay: 0.12s; }
.cert-card.anim-fade:nth-child(14) { transition-delay: 0.18s; }
.cert-card.anim-fade:nth-child(15) { transition-delay: 0.24s; }

.contact-info.anim-slide-left { transition-delay: 0s; }
.contact-form-wrap.anim-slide-left { transition-delay: 0.2s; }

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
  .anim-fade,
  .anim-pop,
  .anim-gradient,
  .anim-slide-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
  }
}


/* ===== ABOUT PAGE ===== */

/* Hero */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.85;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(24px, 5vw, 80px);
}

.about-hero-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #d3f7f0;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.about-hero-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

/* Stats Bar */
.about-stats {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid #e8eaed;
}

.about-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-stat {
  text-align: center;
  flex: 1;
}

.about-stat-number {
  display: block;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}

.about-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Our Story */
.about-story {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.about-story-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.about-story-text {
  flex: 1.2;
}

.about-story-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #498fb1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-story-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.8rem);
  font-weight: 400;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-story-divider {
  border: none;
  border-top: 2px solid #498fb1;
  width: 60px;
  margin: 0 0 24px;
}

.about-story-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-story-media {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.about-story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Mission & Vision */
.about-mission {
  background: #f5f7fa;
  padding: clamp(50px, 6vw, 80px) 0;
}

.about-mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  gap: 30px;
}

.about-mission-card {
  flex: 1;
  background: var(--white);
  border-radius: 12px;
  padding: clamp(30px, 4vw, 50px);
  border-left: 4px solid #498fb1;
}

.about-mission-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.about-mission-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Core Values */
.about-values {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.about-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.about-values-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.about-values-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 0 0 clamp(30px, 4vw, 50px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.about-value-card {
  padding: 20px 16px;
}

.about-value-icon {
  width: 70px;
  height: 70px;
  background: #498fb1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}

.about-value-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.about-value-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Timeline */
.about-timeline {
  background: var(--navy-dark);
  padding: clamp(50px, 6vw, 80px) 0;
}

.about-timeline-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.about-timeline-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d3f7f0;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.about-timeline-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.about-timeline-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  width: 100%;
  margin: 0 0 40px;
}

.about-timeline-track {
  position: relative;
  padding-left: 40px;
  text-align: left;
}

.about-timeline-track::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #498fb1;
  border-radius: 50%;
  border: 3px solid var(--navy-dark);
}

.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d3f7f0;
  display: block;
  margin-bottom: 4px;
}

.timeline-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.timeline-desc em {
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Leadership */
.about-leadership {
  background: #f5f7fa;
  padding: clamp(50px, 6vw, 80px) 0;
}

.about-leadership-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.about-leadership-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #498fb1;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.about-leadership-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.about-leadership-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 0 0 40px;
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.leader-card {
  text-align: center;
}

.leader-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #dde2e8;
  margin: 0 auto 16px;
}

.leader-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.leader-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-gray);
}

/* Sustainability */
.about-sustainability {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.about-sustainability-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.about-sustainability-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #498fb1;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.about-sustainability-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.about-sustainability-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 0 0 24px;
}

.about-sustainability-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}

.about-sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.sustainability-card {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 30px;
}

.sustainability-icon {
  width: 56px;
  height: 56px;
  background: #498fb1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.sustainability-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.sustainability-card ul {
  list-style: none;
  padding: 0;
}

.sustainability-card ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.sustainability-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #498fb1;
  border-radius: 50%;
}

/* About CTA */
.about-cta {
  background: #498fb1;
  padding: clamp(50px, 6vw, 80px) 0;
  text-align: center;
}

.about-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.about-cta h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(1.8rem, 1.3rem + 1.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.about-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.about-cta .btn-partner {
  background: var(--white);
  color: var(--navy-dark);
  padding: 14px 40px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}

.about-cta .btn-partner:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}

/* ===== R&D & QUALITY PAGE ===== */

.rnd-certs-bar {
  background: #498fb1;
  padding: clamp(20px, 3vw, 36px) 0;
}

.rnd-certs-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.rnd-cert-badge {
  background: var(--white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 8px 8px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.rnd-cert-badge img {
  max-width: 75%;
  max-height: 60%;
  object-fit: contain;
  flex-shrink: 0;
  margin: auto 0;
}

.rnd-cert-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
}

.rnd-section {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.rnd-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.rnd-text { flex: 1.2; }

/* Journey */
.rnd-journey {
  background: #f5f7fa;
  padding: clamp(50px, 6vw, 80px) 0;
}

.rnd-journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.rnd-journey-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.rnd-journey-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.rnd-journey-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  text-align: center;
}

.rnd-journey-step {
  padding: 16px 8px;
}

.rnd-step-number {
  width: 48px;
  height: 48px;
  background: #498fb1;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 auto 12px;
}

.rnd-journey-step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.rnd-journey-step p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Expertise */
.rnd-expertise {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.rnd-expertise-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.rnd-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.rnd-expertise-card {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 28px;
  border-left: 3px solid #498fb1;
}

.rnd-expertise-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.rnd-expertise-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Quality Management */
.rnd-quality {
  background: var(--navy-dark);
  padding: clamp(50px, 6vw, 80px) 0;
}

.rnd-quality-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.rnd-quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.rnd-quality-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 30px;
}

.rnd-quality-icon {
  width: 56px;
  height: 56px;
  background: #498fb1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.rnd-quality-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.rnd-quality-card ul {
  list-style: none;
  padding: 0;
}

.rnd-quality-card ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.rnd-quality-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #498fb1;
  border-radius: 50%;
}

/* Equipment */
.rnd-equipment {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.rnd-equipment-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.rnd-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.rnd-equipment-card {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.rnd-equipment-card h4 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.rnd-equipment-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Compliance Map */
.rnd-compliance-map {
  background: #f5f7fa;
  padding: clamp(50px, 6vw, 80px) 0;
}

.rnd-compliance-map-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.rnd-map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.rnd-map-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border-top: 3px solid #498fb1;
}

.rnd-map-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.rnd-map-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ===== CAREERS PAGE ===== */

.careers-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
}

/* Why CDMO / Why Makson */
.careers-why {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.careers-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  gap: 60px;
}

.careers-why-block {
  flex: 1;
}

.careers-why-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.careers-why-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 14px;
}

.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.careers-why-card {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.careers-why-number {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #498fb1;
  display: block;
  margin-bottom: 4px;
}

.careers-why-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Culture */
.careers-culture {
  background: var(--navy-dark);
  padding: clamp(50px, 6vw, 80px) 0;
}

.careers-culture-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.careers-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.careers-value-item {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
}

.careers-value-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.careers-value-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Functions */
.careers-functions {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.careers-functions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.careers-functions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.careers-function-card {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 28px;
}

.careers-function-icon {
  width: 52px;
  height: 52px;
  background: #498fb1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 14px;
}

.careers-function-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.careers-function-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Benefits */
.careers-benefits {
  background: #f5f7fa;
  padding: clamp(50px, 6vw, 80px) 0;
}

.careers-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.careers-benefit-item {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border-left: 3px solid #498fb1;
}

.careers-benefit-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.careers-benefit-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Facilities */
.careers-facilities {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
}

.careers-facilities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.careers-facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

.careers-facility-card {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 32px;
}

.careers-facility-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.facility-units {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #498fb1;
  margin-bottom: 10px;
}

.careers-facility-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Hiring Process */
.careers-process {
  background: var(--navy-dark);
  padding: clamp(50px, 6vw, 80px) 0;
}

.careers-process-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.careers-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.careers-process-step {
  text-align: center;
}

.careers-process-step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.careers-process-step p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* ===== MOBILE NAV ===== */
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 1px 0;
  }

  .nav-links li a {
    padding: 6px 20px;
    font-size: 0.85rem;
    display: block;
  }

  .nav-divider {
    display: none;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    background: #f5f7fa;
    padding: 0;
    min-width: auto;
    transition: none;
  }

  .nav-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 4px 0;
  }

  .dropdown-menu li a {
    padding: 6px 20px !important;
    font-size: 0.78rem !important;
  }

  .main-nav {
    position: relative;
  }

  /* ===== STICKY MOBILE HEADER ===== */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 40px;
  }

  .main-nav {
    position: static;
  }

  /* Disable the desktop fixed-nav behavior on mobile */
  .main-nav.fixed {
    position: static;
    box-shadow: none;
    padding: 0;
    display: block;
  }

  .main-nav.fixed .nav-logo {
    display: none;
  }

  .nav-toggle {
    position: static;
    transform: none;
  }

  /* Push content below fixed header */
  body {
    padding-top: 60px;
  }

  /* ===== PRODUCT STRIP ===== */
  .product-strip {
    padding: 8px 16px;
  }

  .product-strip p {
    font-size: 0.65rem;
    white-space: normal;
    line-height: 1.6;
  }

  /* ===== HERO ===== */
  .hero {
    height: auto;
    min-height: 0;
    padding: 60px 0 20px;
  }

  .hero-all {
    justify-content: flex-start;
    padding-top: 20px;
  }

  .hero-headline .desktop-break {
    display: none;
  }

  .hero-headline .mobile-break {
    display: inline;
  }

  .hero-headline {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 0.72rem;
    margin-top: 10px;
    line-height: 1.6;
  }

  .hero-content {
    padding: 0 24px;
  }

  .product-strip {
    margin-top: 12px;
  }

  .cta-row {
    flex-direction: row;
    gap: 10px;
    padding: 10px 24px;
  }

  .btn-cta {
    padding: 8px 18px;
    min-width: 0;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    flex: 1;
  }

  /* ===== PRODUCT TILES ===== */
  .product-tile {
    width: calc(50% - 6px);
    aspect-ratio: 4 / 3;
  }

  /* ===== WHY MAKSON ===== */
  .why-makson-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ===== STATS ===== */
  .stats-section {
    padding: 40px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    max-width: 320px;
    margin: 0 auto;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .stats-bg-globe {
    width: 280px;
    right: 2%;
  }

  /* ===== WHO WE ARE ===== */
  .wwa-inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }

  .who-we-are {
    padding: 60px 0;
  }

  /* ===== PROCESS ===== */
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .btn-partner-process {
    padding: 12px 40px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* All "Partner with us" style buttons — prevent wrapping on mobile */
  .btn-partner-outline {
    padding: 12px 32px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .about-cta .btn-partner {
    padding: 12px 32px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .btn-explore-more {
    padding: 10px 28px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  /* ===== CLIENTS ===== */
  .clients-container {
    max-width: 100%;
  }

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

  .client-logo {
    height: 80px;
    padding: 8px;
  }

  /* ===== CERTS ===== */
  .certs-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  /* ===== CONTACT ===== */
  .contact-inner {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* ===== FOOTER ===== */
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ===== PRODUCT SHOWCASE (individual pages) ===== */
  .product-showcase-inner {
    flex-direction: column;
  }

  .product-showcase-image {
    flex: none;
    width: 100%;
  }

  /* ===== ABOUT PAGE ===== */
  .about-stats-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .about-stat {
    flex: 0 0 calc(50% - 24px);
  }

  .about-stat-number {
    font-size: 1.8rem;
  }

  .about-stat-label {
    font-size: 0.6rem;
    white-space: nowrap;
  }

  .about-story-inner {
    flex-direction: column;
  }

  .about-mission-inner {
    flex-direction: column;
  }

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

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

  .about-leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ===== R&D PAGE ===== */
  .rnd-section-inner {
    flex-direction: column;
  }

  .rnd-journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rnd-expertise-grid,
  .rnd-quality-grid,
  .rnd-equipment-grid,
  .rnd-map-grid {
    grid-template-columns: 1fr;
  }

  .rnd-certs-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ===== CAREERS PAGE ===== */
  .careers-why-inner {
    flex-direction: column;
    gap: 40px;
  }

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

  .careers-functions-grid,
  .careers-benefits-grid {
    grid-template-columns: 1fr;
  }

  .careers-facilities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 55px;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .product-strip p {
    font-size: 0.6rem;
    white-space: normal;
    line-height: 1.6;
  }

  .btn-cta {
    font-size: 0.6rem;
    padding: 8px 14px;
    min-width: auto;
  }

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

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

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

  .rnd-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .careers-values-grid,
  .careers-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  background: var(--off-white);
}

.error-page-inner {
  max-width: 600px;
}

.error-code {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  opacity: 0.12;
  margin-bottom: -20px;
}

.error-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.error-body {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.error-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.error-nav-help {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 32px;
}

.error-nav-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.error-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}

.error-nav-list li a {
  font-size: 0.95rem;
  color: var(--teal-dark);
  transition: color 0.2s;
}

.error-nav-list li a:hover {
  color: var(--navy-dark);
}

@media (max-width: 600px) {
  .error-code { font-size: 5rem; }
  .error-headline { font-size: 1.6rem; }
}
