/* ============================================================
   SANJEEV AUTO – GLOBAL STYLESHEET
   "Where Innovation Meets Excellence"
   ============================================================ */

/* Fonts loaded via preconnected <link> in base.html — not @import here (render-blocking + duplicate fetch) */

@font-face {
  font-family: 'Dharma Gothic';
  src: url('../fonts/DharmaGothicE-Regular.woff2') format('woff2'),
    url('../fonts/DharmaGothicE-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dharma Gothic';
  src: url('../fonts/DharmaGothicE-RegularItalic.woff2') format('woff2'),
    url('../fonts/DharmaGothicE-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --navy: #2E2B6F;
  --navy-light: #3d3a8f;
  --navy-dark: #1e1c4a;
  --teal: #76B44F;
  --teal-light: #8fd162;
  --green: #76B44F;
  --green-light: #8fd162;
  --white: #FFFFFF;
  --dark: #0c0b22;
  --dark-800: #161530;
  --dark-700: #1f1e3a;
  --dark-600: #2a2850;
  --gray-100: #F5F7FA;
  --gray-200: #E8EBF0;
  --gray-300: #C8CDD8;
  --gray-500: #8892A4;
  --gray-700: #4A5568;
  --text: #111111;
  --text-muted: #6B7280;

  /* Gradients */
  --grad-navy: linear-gradient(135deg, #2E2B6F 0%, #1e1c4a 100%);
  --grad-dark: linear-gradient(180deg, #0c0b22 0%, #131228 100%);
  --grad-hero: linear-gradient(135deg, rgba(14, 11, 40, 0.92) 0%, rgba(10, 10, 10, 0.85) 60%, rgba(46, 43, 111, 0.15) 100%);
  --grad-teal: linear-gradient(135deg, #76B44F 0%, #5a8f3a 100%);

  /* Typography */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Dharma Gothic', 'Space Grotesk', 'Poppins', sans-serif;
  --size-hero: clamp(28px, 3.8vw, 58px);
  --size-h1: clamp(45px, 6vw, 85px);
  --size-h2: clamp(37px, 4.5vw, 65px);
  --size-h3: clamp(24px, 3vw, 40px);
  --size-h4: clamp(18px, 2.5vw, 28px);
  --size-lead: clamp(15px, 1.7vw, 19px);
  --size-body: 16px;
  --size-sm: 14px;
  --size-xs: 12px;

  /* Spacing */
  --section-y: clamp(60px, 6vw, 110px);
  --gap: clamp(16px, 2vw, 32px);
  --container: 1440px;
  --container-sm: 1200px;

  /* Effects */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.2);
  --shadow-navy: 0 16px 48px rgba(46, 43, 111, 0.3);
  --blur: backdrop-filter: blur(20px);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-base: 0.4s;
  --t-slow: 0.7s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  font-size: var(--size-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.container--sm {
  max-width: var(--container-sm);
}

.section {
  padding-block: var(--section-y);
}

.section--dark {
  background: #131228;
  color: var(--white);
}

.section--navy {
  background: var(--navy-dark);
  color: var(--white);
}

.section--light {
  background: var(--gray-100);
  color: var(--text);
}

.section--white {
  background: var(--white);
  color: var(--text);
}

.section--dark-alt {
  background: var(--dark-700);
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--gap);
}

.flex {
  display: flex;
  gap: var(--gap);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
}

.tag--green {
  color: var(--green);
}

.tag--green::before {
  background: var(--green);
}

.tag--white {
  color: rgba(255, 255, 255, 0.7);
}

.tag--white::before {
  background: rgba(255, 255, 255, 0.5);
}

.tag--navy {
  color: var(--navy);
}

.tag--navy::before {
  background: var(--navy);
}

.headline {
  font-size: var(--size-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: var(--white);
}

.headline--dark {
  color: var(--text);
}

.headline--navy {
  color: var(--gray-700);
}

.headline span {
  color: var(--navy);
}

.lead {
  font-size: var(--size-lead);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-300);
  max-width: 640px;
}

.lead--dark {
  color: var(--gray-700);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 22px 0px 22px 0px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}

.btn:hover::after {
  opacity: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast) var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn--primary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(46, 43, 111, 0.2);
}

.btn--teal {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn--teal:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(46, 43, 111, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(46, 43, 111, 0.3);
}

.btn--sm {
  padding: 7px 18px;
  font-size: 12px;
}

.btn--lg {
  padding: 10px 26px;
  font-size: 14px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--t-base) var(--ease);
  padding-block: 24px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.header.scrolled {
  top: 0;
  padding-block: 12px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  position: relative;
  flex-shrink: 0;
  width: 180px;
}

.header__logo-img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity var(--t-base) var(--ease);
}

.header__logo-img--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.header.scrolled .header__logo-img--light {
  opacity: 0;
}

.header.scrolled .header__logo-img--dark {
  opacity: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header.scrolled .nav__link {
  color: rgba(30, 28, 74, 0.8);
}

.header.scrolled .nav__link:hover {
  color: var(--navy);
  background: rgba(46, 43, 111, 0.06);
}

.nav__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast) var(--ease);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

/* Active page nav link */
.nav__link--active,
.header.scrolled .nav__link--active {
  color: var(--green) !important;
  font-weight: 600;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  min-width: 600px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base) var(--ease);
  transform-origin: top center;
  scale: 0.98;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.nav__item:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  scale: 1;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mega-menu__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast) var(--ease);
  cursor: pointer;
}

.mega-menu__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mega-menu__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(46, 43, 111, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu__icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.mega-menu__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.mega-menu__desc {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.5;
}

.mega-menu__header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-fast) var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header.scrolled .hamburger span {
  background: var(--navy-dark);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #080808;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  overflow-y: auto;
}

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

.mobile-nav__link {
  display: block;
  font-size: clamp(15px, 2.8vw, 19px);
  font-weight: 400;
  color: var(--white);
  padding-block: 14px;
  letter-spacing: -0.01em;
  transition: color var(--t-fast) var(--ease);
}

.mobile-nav__link:hover {
  color: var(--navy);
}

.mobile-nav>.mobile-nav__link,
.mobile-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__row .mobile-nav__link {
  flex: 1;
}

.mobile-nav__toggle {
  background: none;
  border: none;
  color: var(--white);
  padding: 12px;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease);
}

.mobile-nav__toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.mobile-nav__toggle.open {
  transform: rotate(180deg);
}

.mobile-nav__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}

.mobile-nav__submenu.open {
  max-height: 400px;
}

.mobile-nav__sublink {
  display: block;
  font-size: clamp(14px, 2.6vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 16px;
  transition: color var(--t-fast) var(--ease);
}

.mobile-nav__sublink:hover {
  color: var(--navy);
}

/* Simple Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 18, 40, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  padding-top: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  transform: translateY(4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  z-index: 200;
  margin-top: 6px;
}

/* Invisible bridge between link and dropdown to prevent hover gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav__item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu__item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.dropdown-menu__item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 6px 8px;
}

/* Header social icons (replaces the old "Get in touch" button) */
.header__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--t-fast) var(--ease);
}

.header__social-btn svg {
  width: 16px;
  height: 16px;
  transition: color var(--t-fast) var(--ease);
}

.header.scrolled .header__social-btn {
  border-color: rgba(30, 28, 74, 0.15);
  color: rgba(30, 28, 74, 0.8);
}

.header__social-btn:hover {
  border-color: var(--navy);
  background: rgba(46, 43, 111, 0.1);
  color: var(--navy);
}

/* ============================================================
   HERO SECTION - Premium full-bleed slider
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #040312;
}

/* ── Slider ── */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide.active img {
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.hero__slider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 3, 18, 0.85) 0%, transparent 25%),
    linear-gradient(105deg, rgba(4, 3, 18, 0.65) 0%, rgba(4, 3, 18, 0.35) 55%, rgba(4, 3, 18, 0.10) 100%),
    linear-gradient(to top, rgba(4, 3, 18, 0.60) 0%, transparent 50%);
}

/* ── Slider arrows ── */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero__arrow--prev {
  left: clamp(6px, 1vw, 12px);
}

.hero__arrow--next {
  right: clamp(6px, 1vw, 12px);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 768px) {
  .hero__arrow {
    width: 32px;
    height: 32px;
  }

  .hero__arrow--prev {
    left: 10px;
  }

  .hero__arrow--next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero__arrow {
    display: none;
  }
}

/* ── Stage (full overlay) ── */
.hero__stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: clamp(100px, 12vw, 160px);
}

/* ── Main body ── */
.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 880px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

/* ── Eyebrow ── */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  animation: fadeUp 0.7s var(--ease-out) both;
}

.hero__eyebrow-bar {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--navy);
  flex-shrink: 0;
}

/* ── Headline ── */
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6.8vw, 72px);
  font-weight: 500;
  text-shadow: 2px 2px 4px #000000;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeUp 0.7s 0.12s var(--ease-out) both;
}

.hero__headline-line {
  display: block;
}

.hero__headline-accent {
  display: inline-block;
  color: inherit;
  /* font-style: italic; */
}

/* ── Subheadline ── */
.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.24s var(--ease-out) both;
}

/* ── CTAs ── */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.36s var(--ease-out) both;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 29px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px 0px 22px 0px;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__btn-primary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 27px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px 0px 22px 0px;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ── Bottom bar: stats + controls ── */
.hero__bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 3, 18, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  margin-right: 32px;
}

/* ── Slide counter + arrows (grouped) ── */
.hero__nav-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.hero__slider-prev,
.hero__slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.hero__slider-prev:hover,
.hero__slider-next:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.hero__counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  user-select: none;
  min-width: 60px;
  justify-content: center;
}

.hero__counter-cur {
  font-size: 27px;
  letter-spacing: 0.05em;
}

.hero__counter-sep {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.hero__counter-total {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Slide dots ── */
.hero__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0s, transform 0s;
}

.hero__dot-btn.active {
  background: var(--navy);
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__stats {
    display: none;
  }

  .hero__bottom-inner {
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  .hero__headline {
    font-size: clamp(32px, 8.5vw, 48px);
    letter-spacing: 0.04em;
  }

  .hero__btn-primary,
  .hero__btn-ghost {
    padding: 13px 22px;
    font-size: 13px;
  }
}

/* ============================================================
   STATS SHOWCASE
   ============================================================ */
.stats-showcase {
  position: relative;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.stats-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
}

.stats-showcase::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 43, 111, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-showcase__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stats-showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px 48px;
  border-right: 1px solid var(--gray-200);
  text-align: center;
  transition: background var(--t-base) var(--ease);
  position: relative;
}

.stats-showcase__item:last-child {
  border-right: none;
}

.stats-showcase__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--navy);
  transition: transform 0.4s var(--ease);
  transform-origin: center;
}

.stats-showcase__item:hover {
  background: var(--gray-100);
}

.stats-showcase__item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.stats-showcase__icon {
  display: flex;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(46, 43, 111, 0.1);
  border: 1px solid rgba(46, 43, 111, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  transition: all var(--t-fast) var(--ease);
}

.stats-showcase__item:hover .stats-showcase__icon {
  background: rgba(46, 43, 111, 0.18);
  transform: translateY(-2px);
}

.stats-showcase__icon svg {
  width: 22px;
  height: 22px;
}

.stats-showcase__num {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.stats-showcase__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.stats-showcase__sub {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT PREMIUM (Who We Are)
   ============================================================ */
.about-premium {
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

/* Decorative ambient orbs - light, subtle */
.about-premium::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 43, 111, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-premium::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 43, 111, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-premium__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.about-premium__content {
  display: flex;
  flex-direction: column;
}

/* Tag - no background, just color + line */
.about-premium .tag {
  color: var(--teal);
  background: transparent;
  border-color: transparent;
}

.about-premium__title {
  font-size: clamp(37px, 3.8vw, 61px);
  font-weight: 800;
  color: var(--gray-700);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 20px 0 24px;
}

.about-premium__title .accent-green {
  color: inherit;
}

.about-premium__body {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.8;
  color: #5a6478;
  margin-bottom: 36px;
}

/* Feature cards */
.about-premium__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.about-premium__feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: #f7f8fa;
  border: 1px solid #eaecf0;
  border-left: 3px solid transparent;
  border-radius: 12px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.about-premium__feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 43, 111, 0.04) 0%, rgba(46, 43, 111, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.about-premium__feature:hover {
  background: #fff;
  border-color: #dce0e8;
  border-left-color: var(--navy);
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(46, 43, 111, 0.08);
}

.about-premium__feature:hover::before {
  opacity: 1;
}

.about-premium__feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Individual icon gradient colours */
.about-premium__feature:nth-child(1) .about-premium__feature-icon,
.about-premium__feature:nth-child(2) .about-premium__feature-icon,
.about-premium__feature:nth-child(3) .about-premium__feature-icon {
  background: var(--navy);
  box-shadow: 0 4px 14px rgba(46, 43, 111, 0.3);
}

.about-premium__feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-premium__feature-text {
  position: relative;
  z-index: 1;
}

.about-premium__feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 3px;
}

.about-premium__feature-text span {
  font-size: 12.5px;
  color: #7a8299;
  line-height: 1.5;
}

/* Mosaic image grid - Visual RIGHT side */
.about-premium__visual {
  align-self: stretch;
}

.about-premium__mosaic {
  display: grid;
  grid-template-columns: 1fr 180px;
  grid-template-rows: 1fr;
  gap: 14px;
  height: 560px;
}

.about-premium__img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 40px rgba(46, 43, 111, 0.12);
}

.about-premium__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-premium__visual:has(.about-premium__img--contain) {
  align-self: center;
}

.about-premium__mosaic:has(.about-premium__img--contain) {
  height: auto;
  grid-template-columns: 1fr;
}

.about-premium__mosaic:has(.about-premium__img--contain) .about-premium__img-main {
  aspect-ratio: 3 / 2;
  height: auto;
}

.about-premium__img--contain {
  object-fit: contain;
  background: var(--gray-100);
  transition: transform 0.9s var(--ease);
}

.about-premium__img-main:hover .about-premium__img {
  transform: scale(1.05);
}

.about-premium__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      transparent 40%,
      rgba(0, 0, 0, 0.5) 100%);
}

/* Founded badge - white card */
.about-premium__badge-founded {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.about-premium__badge-num {
  font-family: var(--font-heading);
  font-size: 41px;
  font-weight: 900;
  color: var(--gray-700);
  letter-spacing: 0.05em;
  line-height: 1;
}

.about-premium__badge-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-top: 3px;
}

/* Side column */
.about-premium__side-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-premium__img-side {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  min-height: 0;
  box-shadow: 0 8px 24px rgba(46, 43, 111, 0.1);
}

.about-premium__img-side:hover .about-premium__img {
  transform: scale(1.06);
}

/* Stat card - light green tint */
.about-premium__stat-card {
  background: #f2f9ee;
  border: 1px solid rgba(46, 43, 111, 0.18);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(46, 43, 111, 0.08);
}

.about-premium__stat-num {
  font-family: var(--font-heading);
  font-size: 39px;
  font-weight: 900;
  color: var(--gray-700);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-premium__stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
  margin-bottom: 14px;
}

.about-premium__stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(46, 43, 111, 0.14);
  border: 1px solid rgba(46, 43, 111, 0.3);
  border-radius: 100px;
  padding: 6px 11px;
  letter-spacing: 0.04em;
}

/* Stat card as second overlay badge on the single remaining image */
.about-premium__mosaic:has(.about-premium__stat-card--overlay) {
  grid-template-columns: 1fr;
}

.about-premium__stat-card--overlay {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(242, 249, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-premium__mosaic {
    grid-template-columns: 1fr 150px;
    height: 480px;
  }
}

@media (max-width: 900px) {
  .about-premium__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-premium__mosaic {
    height: 400px;
    grid-template-columns: 1fr 130px;
  }
}

@media (max-width: 560px) {
  .about-premium__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    height: auto;
  }

  .about-premium__img-main {
    height: 280px;
  }

  .about-premium__side-col {
    flex-direction: row;
  }

  .about-premium__img-side {
    height: 140px;
  }

  .about-premium__stat-card {
    flex: 0 0 130px;
  }
}

/* ============================================================
   PRODUCTS SECTION - Premium "What We Make"
   ============================================================ */
.products {
  background: var(--white);
  padding-bottom: var(--section-y);
}

.products__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* ── Product Boxes (What We Make) ── */
.prod-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-box {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.prod-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
  border-color: var(--navy);
}

.prod-box__img-wrap {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0 12px;
}

.prod-box__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s var(--ease);
}

.prod-box:hover .prod-box__img {
  transform: scale(1.06);
}

/* Heading block at top of card (num + cat + title) */
.prod-box__head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(135deg, #f8f9fb, #ffffff);
}

.prod-box__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 24px 20px;
}

.prod-box__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.prod-box__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.prod-box__title {
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 0;
}

.prod-box__desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.prod-box__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: gap 0.25s var(--ease);
}

.prod-box__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}

.prod-box:hover .prod-box__link {
  gap: 10px;
}

.prod-box:hover .prod-box__link svg {
  transform: translateX(3px);
}

/* Green bottom accent bar */
.prod-box::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.prod-box:hover::after {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  .prod-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .prod-boxes {
    grid-template-columns: 1fr;
  }

  .prod-box__img-wrap {
    height: 180px;
  }
}

/* ============================================================
   MANUFACTURING / PLANTS
   ============================================================ */
.plants {
  background: var(--gray-100);
}

.plants__header {
  text-align: center;
  margin-bottom: 64px;
}

.plants__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plants__grid .plant-card:last-child {
  grid-column: auto;
}

.plant-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.plant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.plant-card:hover {
  border-color: rgba(46, 43, 111, 0.4);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.plant-card:hover::before {
  opacity: 1;
}

.plant-card__code {
  display: none;
}

.plant-card:hover .plant-card__code {
  color: rgba(46, 43, 111, 0.2);
}

.plant-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.plant-card__desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.plant-card__stats {
  display: flex;
  gap: 24px;
}

.plant-card__stat-num {
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-700);
  letter-spacing: -0.03em;
}

.plant-card__stat-label {
  font-size: 11px;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   QUALITY CERTIFICATIONS
   ============================================================ */
.quality {
  background: var(--white);
}

.quality__header {
  text-align: center;
  margin-bottom: 64px;
}

.cert-showcase {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 0;
  align-items: start;
  grid-template-areas:
    "intro visual"
    "cta   visual";
}

.cert-showcase__intro {
  grid-area: intro;
}

.cert-showcase__visual {
  grid-area: visual;
  min-width: 0;
  overflow: hidden;
}

.cert-showcase__cta {
  grid-area: cta;
  margin-top: 32px;
  align-self: start;
  width: fit-content;
}

.cert-showcase__stats {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.cert-showcase__stat {
  flex: 1;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.cert-showcase__stat-num {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gray-700);
  line-height: 1;
  margin-bottom: 6px;
}

.cert-showcase__stat-label {
  font-size: 12.5px;
  color: var(--gray-700);
  line-height: 1.4;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.certs-scroll-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.certs-track {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

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

.certs-track .cert-card {
  flex: 0 0 calc((100% - 20px) / 2);
  scroll-snap-align: start;
}

.certs-track .cert-card__visual {
  height: 190px;
  padding: 10px 12px;
}

.certs-track .cert-card__body {
  padding: 14px 16px 18px;
}

.certs-track .cert-card__name {
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--gray-700);
}

.certs-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all var(--t-fast) var(--ease);
}

.certs-arrow svg {
  width: 18px;
  height: 18px;
}

.certs-arrow:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(46, 43, 111, 0.25);
}

.certs-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  z-index: 1;
}

.cert-card:hover {
  border-color: rgba(46, 43, 111, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cert-card:hover::before {
  opacity: 1;
}

.cert-card__visual {
  position: relative;
  height: 130px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.cert-card__visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.cert-card:hover .cert-card__visual img {
  transform: scale(1.06);
}

.cert-card__hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 6px);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(46, 43, 111, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
  opacity: 0;
  transition: all var(--t-base) var(--ease);
}

.cert-card:hover .cert-card__hint {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cert-card__body {
  padding: 16px 18px;
}

.cert-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--t-fast) var(--ease);
}

.cert-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.cert-card:hover .cert-card__icon {
  background: var(--navy);
}

.cert-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.cert-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   CERTIFICATION DETAIL MODAL
   ============================================================ */
.cert-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cert-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.cert-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.cert-modal-overlay.active .cert-modal {
  transform: translateY(0) scale(1);
}

.cert-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  transition: background var(--t-fast) var(--ease);
}

.cert-modal__close:hover {
  background: var(--gray-200);
}

.cert-modal__title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  color: var(--gray-700);
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  padding-right: 40px;
}

.cert-modal__desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 760px;
}

.cert-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.cert-modal__doc {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: block;
  text-decoration: none;
}

.cert-modal__doc-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fb;
  padding: 12px;
}

.cert-modal__doc-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.cert-modal__doc:hover .cert-modal__doc-img-wrap img {
  transform: scale(1.04);
}

.cert-modal__doc-body {
  padding: 12px 14px;
  text-align: center;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.cert-modal__doc-site {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin: 0 0 8px;
}

.cert-modal__doc-pdf {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(46, 43, 111, 0.08);
  border: 1px solid rgba(46, 43, 111, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
  text-decoration: none;
}

.cert-modal__doc-pdf:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.cert-modal__empty {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 40px 0;
}

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
.sustainability {
  background: #f2faf2;
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(46, 43, 111, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 30%, rgba(46, 43, 111, 0.06) 0%, transparent 60%);
}

.sustainability__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.sustainability__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.sust-stat {
  background: var(--white);
  border: 1px solid rgba(46, 43, 111, 0.2);
  border-radius: var(--radius);
  padding: 28px;
}

.sust-stat__num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gray-700);
  line-height: 1;
  margin-bottom: 8px;
}

.sust-stat__label {
  font-size: 13px;
  color: var(--gray-700);
}

.sust-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 500px;
}

.sust-visual__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.sust-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}

.sust-visual__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(12, 11, 34, 0.85) 0%, rgba(12, 11, 34, 0.4) 60%, transparent 100%);
  color: var(--white);
  z-index: 2;
  transition: background var(--t-base) var(--ease);
}

.sust-visual__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 6px;
  display: inline-block;
}

.sust-visual__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

/* Hover Effects */
.sust-visual__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.sust-visual__card:hover .sust-visual__img {
  transform: scale(1.06);
}

.sust-visual__card:hover .sust-visual__info {
  background: linear-gradient(to top, rgba(46, 43, 111, 0.9) 0%, rgba(46, 43, 111, 0.5) 60%, transparent 100%);
}

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients {
  background: var(--white);
  padding-block: 45px;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.clients__label {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.clients__marquee-wrap {
  position: relative;
}

.clients__arrow {
  display: none;
}

.marquee-track {
  display: flex;
  gap: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 44px;
  border-right: 1px solid var(--gray-200);
  min-width: 170px;
  transition: background var(--t-fast) var(--ease);
}

.client-logo:hover {
  background: rgba(46, 43, 111, 0.03);
}

.client-logo img {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform var(--t-base) var(--ease);
}

.client-logo:hover img {
  transform: scale(1.05);
}

.client-logo span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
  transition: color var(--t-fast) var(--ease);
}

.client-logo:hover span {
  color: var(--navy);
}

/* ============================================================
   PITCH PHILOSOPHY - Premium Card Design
   ============================================================ */
.pitch {
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.pitch::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(46, 43, 111, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(46, 43, 111, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pitch__header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.pitch__header .headline {
  color: var(--navy-dark);
}

.pitch__header .lead {
  color: var(--gray-700);
}

/* Subtle divider connecting header to cards */
.pitch__header::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  margin: 28px auto 0;
}

.pitch__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-inline: clamp(16px, 3vw, 48px);
  position: relative;
  z-index: 1;
}

/* Each card — full-bleed photo with bottom gradient content */
.pitch-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  cursor: default;
}

.pitch-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pitch-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.9);
  transition: transform 0.7s var(--ease), filter var(--t-base) var(--ease);
}

.pitch-card:hover .pitch-card__media img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.95);
}

/* Gradient overlay for legibility + brand tone */
.pitch-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 12, 38, 0.15) 0%, rgba(14, 12, 38, 0.55) 55%, rgba(10, 9, 28, 0.96) 100%),
    linear-gradient(135deg, rgba(46, 43, 111, 0.35), rgba(46, 43, 111, 0.18));
  transition: opacity var(--t-base) var(--ease);
}

.pitch-card:hover .pitch-card__overlay {
  opacity: 0.85;
}

/* Top accent bar - unique per card */
.pitch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.9;
  z-index: 2;
  transition: opacity var(--t-base) var(--ease), height var(--t-base) var(--ease);
}

.pitch-card:nth-child(1)::before,
.pitch-card:nth-child(2)::before,
.pitch-card:nth-child(3)::before,
.pitch-card:nth-child(4)::before,
.pitch-card:nth-child(5)::before {
  background: var(--navy);
}

.pitch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
  z-index: 2;
}

.pitch-card:hover::before {
  height: 6px;
  opacity: 1;
}

/* Ghost letter watermark, top of card */
.pitch-card__letter {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 1;
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1;
  transition: color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.pitch-card:hover .pitch-card__letter {
  color: rgba(255, 255, 255, 0.48);
  transform: translateY(-4px);
}

.pitch-card__content {
  position: relative;
  z-index: 2;
  padding: 28px 24px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.pitch-card__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pitch-card__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.global {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Global header */
.global__header {
  text-align: center;
}

/* Stats strip */
.global__stats-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.global-stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  min-width: 140px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--t-base) var(--ease);
}

.global-stat-chip:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(46, 43, 111, 0.1);
  transform: translateY(-3px);
}

.global-stat-chip__num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gray-700);
  line-height: 1;
  margin-bottom: 6px;
}

.global-stat-chip__lbl {
  font-size: 12px;
  color: var(--gray-700);
  font-weight: 500;
  text-align: center;
}

/* Map container */
.global__map-wrap {
  margin-bottom: 48px;
}

.global__map-inner {
  position: relative;
  background: #f2f9f0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px 24px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* SVG Map */
.global__map-svg {
  width: 100%;
  max-height: 340px;
  display: block;
}

.gmap-land {
  fill: rgba(46, 43, 111, 0.12);
  stroke: rgba(46, 43, 111, 0.2);
  stroke-width: 0.5;
  transition: fill 0.3s;
}

.gmap-land--highlight {
  fill: rgba(46, 43, 111, 0.18);
  stroke: rgba(46, 43, 111, 0.35);
}

.gmap-land--origin {
  fill: rgba(46, 43, 111, 0.35);
  stroke: rgba(46, 43, 111, 0.6);
  stroke-width: 1;
}

/* Map pins */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
}

.map-pin--origin {
  width: 16px;
  height: 16px;
  background: var(--navy);
  border-radius: 50%;
  border: 2px solid rgba(46, 43, 111, 0.5);
  z-index: 2;
}

.map-pin--export {
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
  z-index: 2;
}

.map-pin__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(46, 43, 111, 0.25);
  animation: pinPulse 2s ease-out infinite;
}

.map-pin--export::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(46, 43, 111, 0.2);
  animation: pinPulse 2.5s ease-out infinite;
}

@keyframes pinPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Map legend */
.global__map-legend {
  position: absolute;
  bottom: 16px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.global__map-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--gray-700);
  font-weight: 500;
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.map-legend-dot--origin {
  background: var(--navy);
}

.map-legend-dot--export {
  background: var(--navy);
}

/* Regional cards */
.global__regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.global-region {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--t-base) var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.global-region:hover {
  border-color: rgba(46, 43, 111, 0.3);
  box-shadow: 0 8px 32px rgba(46, 43, 111, 0.08);
  transform: translateY(-3px);
}

.global-region__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.global-region__icon--teal {
  background: rgba(46, 43, 111, 0.1);
  color: var(--navy);
}

.global-region__icon--navy {
  background: rgba(46, 43, 111, 0.1);
  color: var(--navy);
}

.global-region__icon--green {
  background: rgba(46, 43, 111, 0.12);
  color: var(--navy);
}

.global-region__icon--amber {
  background: rgba(46, 43, 111, 0.1);
  color: var(--navy);
}

.global-region__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.global-region__countries {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .global__regions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .global__regions {
    grid-template-columns: 1fr;
  }

  .global__stats-strip {
    gap: 10px;
  }

  .global-stat-chip {
    min-width: 120px;
    padding: 16px 20px;
  }
}

/* Homepage Global Presence Map Showcase */
.global__map-showcase {
  max-width: 800px;
  margin: 48px auto 0;
  width: 100%;
}

.global__visual-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  border: 1px solid #1a1a1a;
  background: #0d0d0d;
  transition: all var(--t-base) var(--ease);
  width: 100%;
}

.global__visual-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(46, 43, 111, 0.12);
  border-color: rgba(46, 43, 111, 0.25);
}

.global__visual-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--t-base) var(--ease);
}

.global__visual-wrap:hover .global__visual-img {
  transform: scale(1.015);
}

/* Floating Map Overlay Card */
.global__visual-wrap .global__map-card {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%) translateX(-40px);
  opacity: 0;
  max-width: 320px;
  background: rgba(18, 18, 28, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  z-index: 5;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.global__visual-wrap .global__map-card.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.global__map-card:hover {
  border-color: rgba(46, 43, 111, 0.4);
  box-shadow: 0 20px 48px rgba(46, 43, 111, 0.2);
}

.global__map-card-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: 0.06em;
}

.global__map-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.global__map-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.global__map-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(46, 43, 111, 0.2);
  color: #2dd4bf;
  border: 1px solid rgba(46, 43, 111, 0.3);
}

@media (max-width: 868px) {

  /* Override .global__visual-wrap .global__map-card (higher specificity) */
  .global__map-card {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    max-width: 100%;
    margin: 20px 0 0;
    background: var(--navy);
    border-color: rgba(255, 255, 255, 0.1);
  }

  /* Let the container grow naturally; remove clip so image and card render cleanly */
  .global__visual-wrap {
    overflow: visible;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  /* Apply the decorative styling directly to the image */
  .global__visual-img {
    border-radius: var(--radius-lg);
    border: 1px solid #1a1a1a;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
  }

  .global__map-card-title {
    -webkit-text-fill-color: unset;
    background: none;
    color: var(--white);
  }
}

/* Keep old global stats for sustainability/other uses */
.global-stat {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.global-stat__num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gray-700);
  line-height: 1;
  margin-bottom: 8px;
}

.global-stat__label {
  font-size: 13px;
  color: var(--gray-700);
}

/* ============================================================
   NEWS & INSIGHTS
   ============================================================ */
.news {
  background: var(--gray-100);
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.news-card:hover {
  border-color: rgba(46, 43, 111, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.news-card__img {
  aspect-ratio: 16/9;
  background: #e8f0f8;
  position: relative;
  overflow: hidden;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 5px 12px;
  border-radius: 100px;
}

.news-card__body {
  padding: 28px;
}

.news-card__date {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.news-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.news-card__excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--t-fast) var(--ease);
}

.news-card__link svg {
  width: 14px;
  height: 14px;
}

.news-card:hover .news-card__link {
  gap: 10px;
}

/* ============================================================
   CONTACT CTA BANNER
   ============================================================ */
.cta-banner {
  background-color: #0d0c2e;
  background-image: url('../assets/cta-DSC4691.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-block: 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__socials {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.cta-banner__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--t-fast) var(--ease);
}

.cta-banner__social-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-banner__socials {
    display: none;
  }
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(6, 5, 23, 0.94) 0%,
      rgba(46, 43, 111, 0.45) 50%,
      rgba(6, 5, 23, 0.94) 100%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(46, 43, 111, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(46, 43, 111, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-banner {
    background-attachment: scroll;
  }
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
}

.cta-banner__headline {
  font-size: var(--size-h1);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.cta-banner__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 48px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  padding-right: 32px;
}

.footer__logo {
  width: 160px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) var(--ease);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--gray-500);
  transition: color var(--t-fast) var(--ease);
}

.social-link:hover {
  border-color: var(--navy);
  background: rgba(46, 43, 111, 0.1);
}

.social-link:hover svg {
  color: var(--navy);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer__link {
  font-size: 13px;
  color: var(--gray-500);
  transition: color var(--t-fast) var(--ease);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 28px;
  gap: 32px;
}

.footer__copy {
  font-size: 13px;
  color: var(--gray-700);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--gray-700);
  transition: color var(--t-fast) var(--ease);
}

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

/* ============================================================
   LIGHT THEME – SECTION TEXT OVERRIDES
   ============================================================ */
.products .headline,
.plants .headline,
.global .headline,
.news .headline,
.sustainability .headline,
.quality .headline {
  color: var(--gray-700);
}

.products .lead,
.plants .lead,
.global .lead,
.news .lead,
.sustainability .lead,
.quality .lead {
  color: var(--gray-700);
}

/* News section on white bg - separate from global (now white) */
.news {
  background: var(--gray-100);
}

/* Outline button on light background */
.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.sustainability .btn--outline,
.news .btn--outline,
.global .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.sustainability .btn--outline:hover,
.news .btn--outline:hover,
.global .btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white);
}

/* ============================================================
   CONTACT POPUP MODAL
   ============================================================ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.contact-modal.open {
  opacity: 1;
  pointer-events: all;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 30, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-modal__card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 580px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 36px 32px;
  box-shadow: 0 24px 80px rgba(3, 61, 89, 0.18), 0 0 0 1px rgba(3, 61, 89, 0.06);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.contact-modal__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
  border-radius: 18px 18px 0 0;
}

.contact-modal.open .contact-modal__card {
  transform: translateY(0) scale(1);
}

.contact-modal__card::-webkit-scrollbar {
  width: 5px;
}

.contact-modal__card::-webkit-scrollbar-track {
  background: transparent;
}

.contact-modal__card::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 99px;
}

.contact-modal__card {
  scrollbar-width: thin;
  scrollbar-color: var(--navy) transparent;
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.contact-modal__close:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.modal-form .form-group {
  margin-bottom: 14px;
}

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

.modal-form .form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.modal-form .form-input,
.modal-form .form-select,
.modal-form .form-textarea {
  width: 100%;
  padding: 10px 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  transition: all var(--t-fast) var(--ease);
  outline: none;
}

.modal-form .form-input:focus,
.modal-form .form-select:focus,
.modal-form .form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46, 43, 111, 0.1);
}

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

.modal-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238892A4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}

/* contact-modal form elements (injected via JS) */
.contact-modal__header {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 8px;
}

.contact-modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-modal__title {
  font-size: 25px;
  font-weight: 800;
  color: var(--gray-700);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.contact-modal__subtitle {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-modal__field {
  margin-bottom: 12px;
}

.contact-modal__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 5px;
}

.contact-modal__input {
  width: 100%;
  padding: 10px 13px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-modal__input:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46, 43, 111, 0.1);
}

.contact-modal__textarea {
  resize: vertical;
  min-height: 72px;
}

.contact-modal__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238892A4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

.contact-modal__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.contact-modal__submit {
  width: auto;
}

.contact-modal__clear {
  background: transparent;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}

.contact-modal__clear:hover {
  background: var(--gray-100);
  color: var(--navy);
  border-color: var(--gray-300);
}

.contact-modal__success {
  text-align: center;
  padding: 40px 20px 20px;
}

.contact-modal__success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(46, 43, 111, 0.25);
}

.contact-modal__success h3 {
  color: var(--gray-700);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-modal__success p {
  color: var(--gray-500);
  font-size: 13px;
}

@media (max-width: 540px) {
  .contact-modal__row {
    grid-template-columns: 1fr;
  }

  .contact-modal__card {
    padding: 28px 20px 24px;
  }

  .contact-modal__title {
    font-size: 20px;
  }
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--navy);
  z-index: 9999;
  transform-origin: left;
  transition: width 0.1s linear;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 140px;
  padding-bottom: 44px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* ── Parallax background image layer ── */
.page-hero__bg {
  position: absolute;
  inset: -25% 0;
  background-image: url('../assets/breadcrumb6.png') !important;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(4, 3, 18, 0.68) 0%, rgba(4, 3, 18, 0.62) 100%),
    radial-gradient(ellipse 80% 60% at 10% 30%, rgba(46, 43, 111, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(46, 43, 111, 0.17) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(46, 43, 111, 0.4), transparent);
}

.page-hero__breadcrumb {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
  width: fit-content;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  transition: color var(--t-fast) var(--ease);
}

.page-hero__breadcrumb a:hover {
  color: var(--white);
}

.page-hero__breadcrumb svg {
  width: 11px;
  height: 11px;
  opacity: 0.45;
  flex-shrink: 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__headline {
  font-size: clamp(33px, 4vw, 61px);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger children - auto nth-child delays */
.stagger>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger>*:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger>*:nth-child(3) {
  transition-delay: 0.19s;
}

.stagger>*:nth-child(4) {
  transition-delay: 0.26s;
}

.stagger>*:nth-child(5) {
  transition-delay: 0.33s;
}

.stagger>*:nth-child(6) {
  transition-delay: 0.40s;
}

.stagger>*:nth-child(7) {
  transition-delay: 0.47s;
}

.stagger>*:nth-child(8) {
  transition-delay: 0.54s;
}

.stagger>*:nth-child(9) {
  transition-delay: 0.61s;
}

.stagger>*:nth-child(10) {
  transition-delay: 0.68s;
}

.stagger>*:nth-child(11) {
  transition-delay: 0.75s;
}

.stagger>*:nth-child(12) {
  transition-delay: 0.82s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pinPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 43, 111, 0.7);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(46, 43, 111, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 43, 111, 0);
  }
}

@keyframes pinPulseGlowGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 43, 111, 0.7);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(46, 43, 111, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 43, 111, 0);
  }
}

/* ── Global Page – Partner logos ── */
.partner-item__logo {
  height: 36px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
  opacity: 1;
  transition: opacity var(--t-base) var(--ease);
}

.partner-item:hover .partner-item__logo {
  opacity: 1;
}

/* ── Global Page – animated map pins ── */
.map-pin-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 3;
}

.map-pin-dot--teal {
  width: 12px;
  height: 12px;
  background: var(--navy);
  animation: pinPulseGlow 2.2s ease-out infinite;
}

.map-pin-dot--green {
  width: 10px;
  height: 10px;
  background: var(--navy);
  animation: pinPulseGlowGreen 2.2s ease-out infinite;
}

.map-pin-dot--white {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: pinPulseGlow 2.2s ease-out infinite 1s;
}

.map-pin-dot--origin {
  width: 16px;
  height: 16px;
  background: var(--navy);
  border: 3px solid rgba(46, 43, 111, 0.4);
  animation: pinPulseGlowGreen 1.8s ease-out infinite;
}

/* Icon float animation for why-cards and feature sections */
.float-icon {
  animation: floatY 4s ease-in-out infinite;
}

.float-icon:nth-child(2) {
  animation-delay: 0.8s;
}

.float-icon:nth-child(3) {
  animation-delay: 1.6s;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(46, 43, 111, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--t-fast) var(--ease);
  outline: none;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
}

/* Light-background form overrides (contact page) */
.section--light .form-input,
.section--light .form-select,
.section--light .form-textarea,
.contact-form-light .form-input,
.contact-form-light .form-select,
.contact-form-light .form-textarea {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--text);
}

.section--light .form-input:focus,
.section--light .form-select:focus,
.section--light .form-textarea:focus,
.contact-form-light .form-input:focus,
.contact-form-light .form-select:focus,
.contact-form-light .form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46, 43, 111, 0.1);
}

.section--light .form-label,
.contact-form-light .form-label {
  color: var(--gray-700);
}

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

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.life-grid__item {
  aspect-ratio: 1;
  background: var(--navy-dark);
  overflow: hidden;
  position: relative;
}

.life-grid__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.life-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.life-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 3, 18, 0.85) 0%, rgba(4, 3, 18, 0.25) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.life-grid__item:hover img {
  transform: scale(1.07);
}

.life-grid__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.opening-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all var(--t-base) var(--ease);
  box-shadow: 0 2px 16px rgba(46, 43, 111, 0.05);
}

.opening-card:hover {
  border-color: rgba(46, 43, 111, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 40px rgba(46, 43, 111, 0.12);
}

.opening-card__dept {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.opening-card__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.opening-card__meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--gray-500);
}

.opening-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.opening-card__meta svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-page .products__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-full-card {
  background: var(--dark-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--t-base) var(--ease);
}

.product-full-card:hover {
  border-color: rgba(46, 43, 111, 0.3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.product-full-card__img {
  background: var(--dark-600);
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.product-full-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-full-card:hover .product-full-card__img img {
  transform: scale(1.06);
}

.product-full-card__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-full-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-full-card__title {
  font-size: 29px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.product-full-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(46, 43, 111, 0.1);
  border: 1px solid rgba(46, 43, 111, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================================================
   QUALITY PAGE
   ============================================================ */
.quality-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--dark-700);
}

.process-step {
  padding: 48px 32px;
  background: var(--dark-700);
  position: relative;
  transition: background var(--t-base) var(--ease);
}

.process-step:hover {
  background: rgba(46, 43, 111, 0.05);
}

.process-step__num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 24px;
}

.process-step__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(46, 43, 111, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-step__icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.process-step__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step__desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: background var(--t-fast) var(--ease);
}

.accordion__header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion__icon {
  width: 20px;
  height: 20px;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease);
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.accordion__item.open .accordion__body {
  padding: 0 28px 24px;
  max-height: 400px;
}

.accordion__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Accordion overrides for light/white sections */
.section--white .accordion__item,
.section--light .accordion__item {
  border-color: var(--gray-200);
}

.section--white .accordion__header,
.section--light .accordion__header {
  color: var(--navy);
  background: var(--gray-100);
}

.section--white .accordion__header:hover,
.section--light .accordion__header:hover {
  background: rgba(46, 43, 111, 0.04);
}

.section--white .accordion__item.open,
.section--light .accordion__item.open {
  border-color: rgba(46, 43, 111, 0.25);
}

.section--white .accordion__item.open .accordion__header,
.section--light .accordion__item.open .accordion__header {
  background: var(--white);
}

/* Process steps overrides for light/white sections */
.section--white .process-step,
.section--light .process-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(46, 43, 111, 0.04);
}

.section--white .process-step__num,
.section--light .process-step__num {
  color: rgba(46, 43, 111, 0.12);
}

.section--white .process-step__title,
.section--light .process-step__title {
  color: var(--gray-700);
}

.section--white .process-step__icon,
.section--light .process-step__icon {
  background: rgba(46, 43, 111, 0.1);
}

.section--white .process-step__icon svg,
.section--light .process-step__icon svg {
  color: var(--navy);
}

.section--white .process-step:hover,
.section--light .process-step:hover {
  background: rgba(46, 43, 111, 0.03);
  border-color: rgba(46, 43, 111, 0.2);
}

/* ============================================================
   BACK-TO-TOP BUTTON
   ============================================================ */
.back-to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-fast) var(--ease);
  outline: none;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--green-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 43, 111, 0.3);
}

.back-to-top-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast) var(--ease);
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter-strip {
  background: var(--navy-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(46, 43, 111, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(46, 43, 111, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter-strip__title {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.newsletter-strip__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  line-height: 1.6;
}

.newsletter-strip__form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter-strip__input {
  padding: 13px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px 0 22px 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  min-width: 280px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.newsletter-strip__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-strip__input:focus {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.09);
}

@media (max-width: 860px) {
  .newsletter-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .newsletter-strip__form {
    width: 100%;
  }

  .newsletter-strip__input {
    min-width: 0;
    flex: 1;
  }
}

/* ============================================================
   COMPANY TIMELINE
   ============================================================ */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--navy);
  opacity: 0.25;
}

.timeline-item {
  display: flex;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
  position: relative;
}

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

.timeline-item::after {
  content: '';
  position: absolute;
  left: 80px;
  top: 38px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 43, 111, 0.18);
  z-index: 1;
}

.timeline-item__year {
  flex-shrink: 0;
  width: 88px;
  font-size: 23px;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  padding-top: 4px;
}

.timeline-item__body {
  flex: 1;
  padding-left: 44px;
}

.timeline-item__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.timeline-item__desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
  }

  .timeline-item::after {
    left: 12px;
    top: 24px;
  }

  .timeline-item__year {
    width: auto;
    font-size: 15px;
    padding-left: 36px;
  }

  .timeline-item__body {
    padding-left: 36px;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-muted {
  color: var(--text-muted);
}

.fw-bold {
  font-weight: 700;
}

.small {
  font-size: var(--size-sm);
}

.mb-4 {
  margin-bottom: 24px;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  border-left: 4px solid currentColor;
}

.alert-success {
  background: #e6f9f0;
  color: #2e7d32;
  border-color: #4caf50;
}

.alert-danger,
.alert-error {
  background: #fdecea;
  color: #b71c1c;
  border-color: #f44336;
}

.alert-info {
  background: #e3f2fd;
  color: #1565c0;
  border-color: #2196f3;
}

.alert-warning {
  background: #fff8e1;
  color: #e65100;
  border-color: #ff9800;
}

/* ============================================================
   RESPONSIVE - Comprehensive Breakpoints
   320 · 375 · 425 · 480 · 540 · 560 · 640 · 768 · 900
   1024 · 1200 · 1350 · 1444+ · 1600+ · 1920+
   ============================================================ */

/* ── 1920px+ Ultra-wide ── */
@media (min-width: 1920px) {
  :root {
    --container: 1600px;
  }
}

/* ── 1444px–1650px: no layout changes needed; container
       (1440px) is already centred with comfortable margins ── */

/* ── max 1350px (large desktop, pre-macbook) ── */
@media (max-width: 1350px) {
  .header__logo {
    width: 162px;
  }

  .nav__link {
    padding: 8px 9px;
    font-size: 13.5px;
  }

}

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

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

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

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

/* ── max 1024px (iPad Pro landscape, MacBook 13") ── */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-premium__visual {
    height: auto;
  }

  .about-premium__mosaic {
    grid-template-columns: 1fr 150px;
    height: 480px;
  }

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

  .pcard:first-child {
    grid-column: span 2;
  }

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

  .cert-showcase {
    grid-template-columns: 1fr;
    grid-template-areas: unset;
    row-gap: 24px;
  }

  .cert-showcase__intro,
  .cert-showcase__visual,
  .cert-showcase__cta {
    grid-area: auto;
  }

  .cert-showcase__cta {
    margin-top: 0;
    width: 100%;
    justify-content: center;
  }

  .certs-track .cert-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }

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

  .sust-visual {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
  }

  .sust-visual__card {
    height: 300px;
  }

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

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

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

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

  .stats-showcase__item:nth-child(3) {
    border-right: none;
  }

  .stats-showcase__item:nth-child(4),
  .stats-showcase__item:nth-child(5) {
    border-top: 1px solid var(--gray-200);
  }

  .product-full-card {
    grid-template-columns: 1fr;
  }

  .product-full-card__img {
    min-height: 220px;
  }

  .products-page .products__grid {
    grid-template-columns: 1fr;
  }

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

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

/* ── max 900px ── */
@media (max-width: 900px) {
  .hero__stats {
    display: none;
  }

  .hero__bottom-inner {
    justify-content: flex-end;
  }

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

  .about-premium__mosaic {
    height: 400px;
    grid-template-columns: 1fr 130px;
  }

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

/* ── max 768px (tablet portrait) ── */
@media (max-width: 768px) {

  /* Hero - center all content on mobile */
  .hero__body {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .header__actions .btn:not(.btn--teal),
  .header__actions .header__social {
    display: none;
  }

  .clients__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 5;
  }

  .clients__arrow svg {
    width: 18px;
    height: 18px;
  }

  .clients__arrow--prev {
    left: 4px;
  }

  .clients__arrow--next {
    right: 4px;
  }

  .marquee-track.paused {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

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

  .pcard:first-child {
    grid-column: span 1;
    aspect-ratio: 3/2;
  }

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

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

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

  .certs-track .cert-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .certs-arrow {
    width: 36px;
    height: 36px;
  }

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

  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .life-grid__item:first-child {
    grid-column: span 2;
  }

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

  .stats-showcase__item {
    border-bottom: 1px solid var(--gray-200);
  }

  .stats-showcase__item:last-child {
    border-bottom: none;
  }

  .stats-showcase__item:nth-child(2n) {
    border-right: none;
  }

  .stats-showcase__item:nth-child(3) {
    border-right: 1px solid var(--gray-200);
  }

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

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

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

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

  .sust-visual {
    height: auto;
  }

  /* Opening card - stack on tablet */
  .opening-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Disable parallax background-attachment on mobile WebKit */
  .cta-banner {
    background-attachment: scroll;
  }

  /* Back-to-top - smaller */
  .back-to-top-btn {
    right: 16px;
    bottom: 16px;
    width: 32px;
    height: 32px;
  }

  .back-to-top-btn svg {
    width: 15px;
    height: 15px;
  }
}

/* ── max 640px ── */
@media (max-width: 640px) {
  .hero__bottom-inner {
    gap: 12px;
  }

  .hero__nav-controls {
    gap: 10px;
  }

  .page-hero {
    padding-top: 88px;
    padding-bottom: 32px;
  }

  .sust-visual {
    height: auto;
  }

  .global__stats-strip {
    gap: 8px;
  }

  .global-stat-chip {
    padding: 14px 16px;
    min-width: 110px;
  }

  .cta-banner {
    padding-block: 60px;
  }

  .news__header,
  .pitch__header,
  .quality__header,
  .products__header,
  .plants__header {
    margin-bottom: 40px;
  }
}

/* ── max 560px ── */
@media (max-width: 560px) {
  .sust-visual__card {
    height: 220px;
  }

  .hero__headline {
    font-size: clamp(32px, 8.5vw, 48px);
    letter-spacing: 0.04em;
  }

  .hero__btn-primary,
  .hero__btn-ghost {
    padding: 13px 22px;
    font-size: 13px;
  }

  .about-premium__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .about-premium__img-main {
    height: 280px;
  }

  .about-premium__side-col {
    flex-direction: row;
  }

  .about-premium__img-side {
    height: 140px;
  }

  .about-premium__stat-card {
    flex: 0 0 130px;
  }

  .prod-boxes {
    grid-template-columns: 1fr;
  }

  .prod-box__img-wrap {
    height: 180px;
  }

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

  .global__stats-strip {
    gap: 10px;
  }

  .global-stat-chip {
    min-width: 120px;
    padding: 16px 20px;
  }

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

  .life-grid__item:first-child {
    grid-column: span 1;
  }

  .footer__bottom {
    padding-bottom: 56px;
  }

}

/* ── max 540px ── */
@media (max-width: 540px) {
  .contact-modal__row {
    grid-template-columns: 1fr;
  }

  .contact-modal__card {
    padding: 32px 24px;
  }
}

/* ── max 480px ── */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__btn-primary,
  .hero__btn-ghost {
    justify-content: center;
    width: 100%;
    max-width: 260px;
  }

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

  .certs-track .cert-card {
    flex: 0 0 88%;
  }

  .certs-scroll-wrap {
    gap: 8px;
  }

  .certs-arrow {
    width: 32px;
    height: 32px;
  }

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

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 56px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .cta-banner {
    padding-block: 50px;
  }

  /* Stats showcase - single column */
  .stats-showcase__inner {
    grid-template-columns: 1fr;
  }

  .stats-showcase__item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .stats-showcase__item:last-child {
    border-bottom: none;
  }

  .stats-showcase__item:nth-child(3) {
    border-right: none;
  }

  .stats-showcase__item:nth-child(4),
  .stats-showcase__item:nth-child(5) {
    border-top: none;
  }

  .opening-card {
    padding: 24px 20px;
  }

  .mobile-nav {
    padding: 88px 24px 40px;
  }

  .product-full-card__body {
    padding: 28px 24px;
  }

  .news__header {
    margin-bottom: 32px;
  }

  .products__header,
  .plants__header,
  .quality__header {
    margin-bottom: 40px;
  }
}

/* ── max 425px (iPhone 6+/7+/8+ / large Android) ── */
@media (max-width: 425px) {
  :root {
    --section-y: clamp(45px, 8vw, 75px);
  }

  .header__logo {
    width: 140px;
  }

  .hero__headline {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: 0.04em;
  }

  .hero__sub {
    font-size: 14px;
    max-width: 100%;
  }

  .hero__eyebrow {
    font-size: 9.5px;
    gap: 10px;
  }

  .hero__bottom-inner {
    padding-block: 14px;
  }

  .hero__stat-num {
    font-size: 18px;
  }

  .hero__stat-lbl {
    font-size: 9px;
  }

  .about-premium__title {
    font-size: clamp(24px, 7.5vw, 40px);
  }

  .about-premium__body {
    font-size: 13.5px;
  }

  .about-premium__img-main {
    height: 240px;
  }

  .about-premium__side-col {
    flex-direction: column;
  }

  .about-premium__img-side {
    height: 120px;
    flex: none;
  }

  .about-premium__stat-card {
    flex: none;
    width: 100%;
  }

  .stats-showcase__num {
    font-size: clamp(32px, 9vw, 52px);
  }

  .stats-showcase__item {
    padding: 40px 20px 32px;
  }

  .pitch-card {
    min-height: 360px;
  }

  .pitch-card__content {
    padding: 20px 20px 24px;
  }

  .pitch-card__letter {
    font-size: 64px;
  }

  .global-stat-chip {
    min-width: 100px;
    padding: 12px 14px;
  }

  .global-stat-chip__num {
    font-size: 24px;
  }

  .global-stat-chip__lbl {
    font-size: 11px;
  }

  .sust-stat__num {
    font-size: 34px;
  }

  .sust-stat {
    padding: 20px;
  }

  .contact-modal__card {
    padding: 28px 16px;
  }

  .news-card__body {
    padding: 20px;
  }

  .news-card__title {
    font-size: 19px;
    letter-spacing: 0.03em;
  }

  .process-step {
    padding: 32px 20px;
  }

  .page-hero {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .opening-card__meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .back-to-top-btn {
    right: 12px;
    bottom: 12px;
  }

  .footer__copy {
    font-size: 12px;
  }

  .footer__legal {
    gap: 16px;
  }

  .footer__legal a {
    font-size: 12px;
  }
}

/* ── max 375px (iPhone SE, standard iPhone) ── */
@media (max-width: 375px) {
  .header__logo {
    width: 128px;
  }

  .hero__headline {
    font-size: clamp(28px, 7.5vw, 36px);
    letter-spacing: 0.04em;
  }

  .hero__sub {
    font-size: 13.5px;
  }

  .hero__btn-primary,
  .hero__btn-ghost {
    padding: 12px 18px;
    font-size: 12.5px;
  }

  .stats-showcase__item {
    padding: 32px 16px 28px;
  }

  .stats-showcase__num {
    font-size: clamp(28px, 8.5vw, 44px);
  }

  .about-premium__title {
    font-size: clamp(22px, 7.5vw, 34px);
  }

  .about-premium__img-main {
    height: 220px;
  }

  .about-premium__img-side {
    height: 110px;
  }

  .news-card__body {
    padding: 18px;
  }

  .news-card__title {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .cta-banner__headline {
    font-size: clamp(26px, 8vw, 48px);
  }

  .cta-banner__sub {
    font-size: 14px;
  }

  .mobile-nav {
    padding: 80px 20px 40px;
  }

  .mobile-nav__link {
    font-size: clamp(14px, 3vw, 17px);
    padding-block: 12px;
  }

  .process-step {
    padding: 28px 18px;
  }

  .process-step__num {
    font-size: 48px;
  }

  .product-full-card__body {
    padding: 24px 20px;
  }

  .product-full-card__title {
    font-size: 22px;
  }

  .footer__top {
    gap: 28px;
  }
}

/* ── about.html "Who We Are" grid - content first on mobile ── */
@media (max-width: 768px) {
  .about-who-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ── max 320px (small & older devices) ── */
@media (max-width: 320px) {
  :root {
    --section-y: clamp(35px, 8vw, 55px);
  }

  .header__logo {
    width: 115px;
  }

  .header {
    padding-block: 12px;
  }

  .hero__headline {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.04em;
  }

  .hero__sub {
    font-size: 13px;
  }

  .hero__btn-primary,
  .hero__btn-ghost {
    padding: 11px 14px;
    font-size: 12px;
  }

  .hero__eyebrow {
    font-size: 9px;
    gap: 8px;
  }

  .hero__eyebrow-bar {
    width: 20px;
  }

  .hero__nav-controls {
    gap: 8px;
  }

  .hero__counter-cur {
    font-size: 18px;
  }

  .hero__bottom-inner {
    padding-block: 12px;
  }

  .stats-showcase__item {
    padding: 28px 12px 24px;
  }

  .stats-showcase__num {
    font-size: 32px;
  }

  .stats-showcase__label {
    font-size: 11px;
  }

  .stats-showcase__icon {
    width: 44px;
    height: 44px;
  }

  .about-premium__title {
    font-size: 20px;
  }

  .about-premium__img-main {
    height: 200px;
  }

  .about-premium__img-side {
    height: 100px;
  }

  .about-premium__stat-card {
    padding: 16px 12px;
  }

  .about-premium__stat-num {
    font-size: 26px;
  }

  .news-card__body {
    padding: 16px;
  }

  .news-card__title {
    font-size: 17px;
    letter-spacing: 0.03em;
  }

  .contact-modal__card {
    padding: 20px 12px;
  }

  .contact-modal__title {
    font-size: 22px;
  }

  .cta-banner {
    padding-block: 40px;
  }

  .cta-banner__headline {
    font-size: 24px;
  }

  .footer__top {
    padding-block: 48px;
    gap: 24px;
  }

  .footer__logo {
    width: 130px;
  }

  .mobile-nav {
    padding: 76px 16px 32px;
  }

  .mobile-nav__link {
    font-size: 15px;
    padding-block: 12px;
  }

  .plant-card {
    padding: 24px 20px;
  }

  .process-step {
    padding: 28px 16px;
  }

  .process-step__num {
    font-size: 40px;
  }

  .page-hero {
    padding-top: 80px;
    padding-bottom: 24px;
  }

  .product-full-card__body {
    padding: 20px 16px;
  }

  .product-full-card__title {
    font-size: 20px;
  }
}

/* ── Form validation ─────────────────────────────────────────── */
.field-error {
  display: block;
  font-size: 12px;
  color: #d63031;
  margin-top: 4px;
}

.input--invalid,
.input--invalid.form-input,
.input--invalid.app-input,
.input--invalid.form-select {
  border-color: #d63031 !important;
  box-shadow: 0 0 0 3px rgba(214, 48, 49, 0.10) !important;
}

/* ── Placeholder font-size across all forms ── */
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  font-size: 13px;
}

.modal-form .form-input::placeholder,
.modal-form .form-textarea::placeholder {
  font-size: 13px;
}

.contact-modal__input::placeholder {
  font-size: 13px;
}

.app-input::placeholder {
  font-size: 13px;
}

/* ============================================================
   INTERACTIVE STAGE TIMELINE
   ============================================================ */
.section--interactive-timeline {
  overflow: hidden;
  padding-block: var(--section-y);
  background: var(--gray-100);
  position: relative;
}

.stage-timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* Year Navigator (Top Row) */
.timeline-nav-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.timeline-nav-wrapper::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.timeline-nav-scroll {
  display: flex;
  gap: clamp(16px, 3.5vw, 40px);
  overflow-x: auto;
  padding: 10px 40px 18px;
  scroll-behavior: smooth;
  position: relative;
  z-index: 2;

  /* Hide scrollbar for Chrome, Safari and Opera */
  -webkit-overflow-scrolling: touch;
}

.timeline-nav-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.timeline-nav-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.timeline-nav-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.35;
  transition: all var(--t-fast) var(--ease);
  position: relative;
  padding: 0;
}

.timeline-nav-year {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font);
  transition: all var(--t-fast) var(--ease);
}

.timeline-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-500);
  margin-top: 10px;
  transition: all var(--t-fast) var(--ease);
  border: 2px solid transparent;
}

/* Active Nav Item */
.timeline-nav-item.is-active {
  opacity: 1;
  transform: scale(1.15);
}

.timeline-nav-item.is-active .timeline-nav-year {
  font-size: 20px;
}

.timeline-nav-item.is-active .timeline-nav-year {
  color: var(--navy);
}

.timeline-nav-item.is-active .timeline-nav-dot {
  background: var(--navy);
  box-shadow: 0 0 12px var(--navy), 0 0 4px var(--navy);
  transform: scale(1.2);
}

/* Make last dot look special (the latest milestone) */
.timeline-nav-item:last-child.is-active .timeline-nav-year {
  color: var(--navy);
}

.timeline-nav-item:last-child.is-active .timeline-nav-dot {
  background: var(--navy);
  box-shadow: 0 0 12px var(--navy), 0 0 4px var(--navy);
}

/* Main Stage Viewport */
.timeline-stage-viewport {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  margin-block: 20px;
}

/* Stage Slide */
.timeline-stage-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: blur(4px);
}

.timeline-stage-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Large Hollow Background Year */
.timeline-bg-year {
  position: absolute;
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 500;
  font-family: var(--font-heading);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.035);
  color: transparent;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  text-align: center;
  width: 100%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Content Card */
.timeline-content-card {
  display: flex;
  gap: 32px;
  align-items: center;
  background: rgba(30, 28, 74, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 780px;
  width: calc(100% - 40px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.timeline-content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  opacity: 0.8;
}

/* Visual Icon / Accent */
.timeline-card-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(46, 43, 111, 0.12), rgba(46, 43, 111, 0.12));
  border: 1px solid rgba(46, 43, 111, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(46, 43, 111, 0.08);
}

.timeline-card-icon-wrapper svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
}

/* Card Information */
.timeline-card-info {
  flex: 1;
  text-align: left;
}

.timeline-card-year-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(46, 43, 111, 0.12);
  border: 1px solid rgba(46, 43, 111, 0.2);
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.timeline-card-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  font-family: var(--font);
}

.timeline-card-desc {
  font-size: 14.5px;
  color: var(--gray-300);
  line-height: 1.65;
  margin: 0;
}

/* Timeline Bottom Controls */
.timeline-bottom-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 24px;
}

.stage-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(30, 28, 74, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.stage-nav-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast) var(--ease);
}

.stage-nav-btn:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 0 15px rgba(46, 43, 111, 0.4);
}

.stage-nav-btn.prev:hover:not(:disabled) svg {
  transform: translateX(-2px);
}

.stage-nav-btn.next:hover:not(:disabled) svg {
  transform: translateX(2px);
}

.stage-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.timeline-progress-track {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.timeline-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--navy);
  transition: width 0.4s var(--ease);
}

/* Timeline on light/white background overrides */
.section--light .timeline-nav-wrapper::after,
.section--interactive-timeline[style*="background:#ffffff"] .timeline-nav-wrapper::after {
  background: rgba(0, 0, 0, 0.08);
}

.section--light .timeline-nav-year,
.section--interactive-timeline[style*="background:#ffffff"] .timeline-nav-year {
  color: var(--gray-700);
}

.section--light .timeline-bg-year,
.section--interactive-timeline[style*="background:#ffffff"] .timeline-bg-year {
  -webkit-text-stroke: 2px rgba(46, 43, 111, 0.25);
}

.section--light .timeline-content-card,
.section--interactive-timeline[style*="background:#ffffff"] .timeline-content-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.section--light .timeline-card-title,
.section--interactive-timeline[style*="background:#ffffff"] .timeline-card-title {
  color: var(--gray-700);
}

.section--light .timeline-card-desc,
.section--interactive-timeline[style*="background:#ffffff"] .timeline-card-desc {
  color: var(--gray-500);
}

.section--light .timeline-progress-track,
.section--interactive-timeline[style*="background:#ffffff"] .timeline-progress-track {
  background: rgba(0, 0, 0, 0.08);
}

/* Light bg overrides for interactive timeline */
.section--interactive-timeline .timeline-content-card {
  background: transparent;
  border: 1px solid rgba(46, 43, 111, 0.12);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.section--interactive-timeline .timeline-content-card::before {
  background: var(--navy);
}

.section--interactive-timeline .timeline-card-title {
  color: var(--navy);
}

.section--interactive-timeline .timeline-card-desc {
  color: var(--gray-600) !important;
}

.section--interactive-timeline .timeline-nav-wrapper::after {
  background: rgba(0, 0, 0, 0.08);
}

.section--interactive-timeline .timeline-nav-year {
  color: #6b78c9;
}

.section--interactive-timeline .timeline-nav-item {
  opacity: 0.7;
}

.section--interactive-timeline .timeline-bg-year {
  -webkit-text-stroke: 2px rgba(46, 43, 111, 0.18);
}

.section--interactive-timeline .timeline-card-title {
  color: var(--gray-700);
}

.section--interactive-timeline .timeline-card-desc {
  color: var(--gray-500);
}

.section--interactive-timeline .timeline-progress-track {
  background: rgba(0, 0, 0, 0.08);
}

.section--interactive-timeline .stage-nav-btn {
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
}

.section--interactive-timeline .stage-nav-btn:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.section--interactive-timeline .timeline-card-year-pill {
  background: rgba(46, 43, 111, 0.08);
  color: var(--navy);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .timeline-content-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 20px;
  }

  .timeline-card-info {
    text-align: center;
  }

  .timeline-card-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .timeline-card-icon-wrapper svg {
    width: 30px;
    height: 30px;
  }

  .timeline-stage-viewport {
    height: 380px;
    /* give more vertical space for vertical flow cards */
  }

  .timeline-bg-year {
    font-size: 130px;
    top: 50%;
  }

  .timeline-nav-scroll {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .timeline-stage-viewport {
    height: 420px;
    /* even more space for very small screens */
  }

  .timeline-card-title {
    font-size: 19px;
  }

  .timeline-card-desc {
    font-size: 13.5px;
  }
}

/* ============================================================
   HOMEPAGE – COMPREHENSIVE MOBILE RESPONSIVE FIXES
   Sections: Certification, Global Presence Map, Hero, Stats,
             Products, Plants, Pitch, Sustainability, Footer
   ============================================================ */

/* ── Certification Section ── */

/* Long button text wraps on narrow phones instead of overflowing */
@media (max-width: 500px) {
  .cert-showcase__cta {
    white-space: normal;
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
    box-sizing: border-box;
  }
}

/* Cert intro: tighten spacing & reduce headline on small screens */
@media (max-width: 768px) {
  .cert-showcase__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cert-showcase__intro .tag {
    margin-bottom: 14px;
  }

  .cert-showcase .headline--navy {
    font-size: clamp(30px, 7vw, 48px);
    margin-bottom: 14px;
  }

  .cert-showcase .lead--dark {
    font-size: 14px;
    margin-top: 12px;
  }

  .cert-showcase__stats {
    gap: 12px;
  }

  .cert-showcase__stat {
    padding: 14px 16px;
  }

  .cert-showcase__stat-num {
    font-size: 26px;
  }

  .cert-showcase__stat-label {
    font-size: 11.5px;
  }
}

/* Cert track card sizing – show 1 card per scroll snap on small phones */
@media (max-width: 480px) {
  .certs-scroll-wrap {
    gap: 8px;
    align-items: center;
  }

  .certs-track {
    align-items: stretch;
  }

  .certs-track .cert-card {
    flex: 0 0 72%;
    height: 220px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .certs-track .cert-card__visual {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    padding: 8px 10px;
  }

  .certs-track .cert-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .certs-track .cert-card__body {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-top: 1px solid var(--gray-200);
  }

  .certs-track .cert-card__name {
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .certs-track .cert-card__icon {
    display: none;
  }

  .certs-arrow {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
}

/* ── Global Presence Map Section ── */

/* Stats strip – keep chips in 2-column grid on tiny phones */
@media (max-width: 480px) {
  .global__stats-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Last chip (odd one out) spans full width */
  .global__stats-strip .global-stat-chip:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .global-stat-chip {
    min-width: 0;
    padding: 14px 12px;
    text-align: center;
  }

  .global-stat-chip__num {
    font-size: 22px;
  }

  .global-stat-chip__lbl {
    font-size: 10.5px;
  }
}

/* Map showcase – map card padding on small screens */
@media (max-width: 480px) {
  .global__map-card {
    padding: 20px;
    margin-top: 16px;
  }

  .global__map-card-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .global__map-card-text {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .global__map-card-badges {
    gap: 6px;
  }

  .global__map-badge {
    font-size: 10.5px;
    padding: 4px 10px;
  }
}

/* Map showcase header */
@media (max-width: 768px) {
  .global__header {
    padding-inline: 0;
  }

  .global__header .headline--dark {
    font-size: clamp(28px, 7vw, 48px);
  }

  .global__header .lead--dark {
    font-size: 14px;
    margin-inline: auto;
  }
}

/* ── Hero Section ── */
@media (max-width: 768px) {
  .hero__stage {
    padding-top: clamp(80px, 14vw, 120px);
    justify-content: center;
  }

  .hero__body {
    padding-bottom: clamp(36px, 6vw, 60px);
    flex: unset;
  }
}

/* ── Stats Showcase ── */
@media (max-width: 768px) {
  .stats-showcase__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Fix border-right on last item in each row */
  .stats-showcase__item:nth-child(2n) {
    border-right: none;
  }

  .stats-showcase__item:nth-child(3) {
    border-right: 1px solid var(--gray-200);
  }

  .stats-showcase__item {
    padding: 36px 16px 28px;
  }

  .stats-showcase__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .stats-showcase__num {
    font-size: clamp(32px, 8vw, 52px);
    margin-bottom: 8px;
  }

  .stats-showcase__label {
    font-size: 12px;
  }

  .stats-showcase__sub {
    font-size: 10px;
  }
}

@media (max-width: 480px) {

  /* Keep single column (matches existing border logic) – just tighten padding */
  .stats-showcase__item {
    padding: 28px 16px 24px;
  }

  .stats-showcase__item::after {
    display: none;
  }

  .stats-showcase__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .stats-showcase__num {
    font-size: clamp(26px, 8vw, 40px);
    margin-bottom: 6px;
  }

  .stats-showcase__label {
    font-size: 11.5px;
  }
}

/* ── Products Section ── */
@media (max-width: 768px) {
  .products__header {
    margin-bottom: 40px;
  }

  .products__header .lead {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .prod-boxes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prod-box__img-wrap {
    height: 160px;
  }

  .prod-box__title {
    font-size: clamp(20px, 5vw, 26px);
  }
}

/* ── Plants / Facilities Section ── */
@media (max-width: 768px) {
  .plants__header {
    margin-bottom: 36px;
  }

  .plants__header .lead {
    font-size: 14px;
  }

  .plants__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plant-card {
    padding: 24px 20px;
  }

  .plant-card__code {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .plant-card__desc {
    margin-bottom: 16px;
  }
}

/* ── P.I.T.C.H. Section ── */
@media (max-width: 768px) {
  .pitch__header {
    margin-bottom: 40px;
    padding-inline: 0;
  }

  .pitch__header .lead {
    font-size: 14px;
  }

  .pitch__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-inline: clamp(16px, 4vw, 40px);
  }

  .pitch-card {
    min-height: 380px;
    border-radius: var(--radius);
  }
}

@media (max-width: 480px) {
  .pitch__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-inline: 0;
  }

  .pitch-card {
    min-height: 260px;
  }

  .pitch-card__letter {
    font-size: 56px;
  }

  .pitch-card__content {
    padding: 18px 18px 22px;
  }

  .pitch-card__title {
    font-size: 18px;
  }

  .pitch-card__desc {
    font-size: 12.5px;
  }
}

/* ── Sustainability Section ── */
@media (max-width: 768px) {
  .sustainability__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sustainability__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
  }

  .sust-stat {
    padding: 20px 16px;
  }

  .sust-stat__num {
    font-size: 32px;
  }

  .sust-visual {
    grid-template-columns: 1fr 1fr;
    height: 260px;
    gap: 14px;
  }

  .sust-visual__card {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .sustainability__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .sust-visual {
    height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sust-visual__card {
    height: 200px;
  }

  .sust-visual__title {
    font-size: 15px;
  }
}

/* ── About / Who We Are Section ── */
@media (max-width: 768px) {
  .about-premium__features {
    gap: 10px;
    margin-bottom: 28px;
  }

  .about-premium__feature {
    padding: 14px 16px;
    gap: 14px;
  }

  .about-premium__feature-icon {
    width: 38px;
    height: 38px;
  }

  .about-premium__body {
    font-size: 14px;
  }
}

/* ── Blog / News Section ── */
@media (max-width: 768px) {
  .news__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
  }
}

/* ── CTA Banner Section ── */
@media (max-width: 768px) {
  .cta-banner {
    padding-block: 72px;
    background-attachment: scroll;
  }

  .cta-banner__headline {
    font-size: clamp(28px, 8vw, 52px);
    margin-bottom: 16px;
  }

  .cta-banner__sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-block: 56px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 48px;
  }

  .footer__logo {
    width: 140px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-block: 20px 52px;
  }

  .footer__copy {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer__legal {
    gap: 16px;
    justify-content: center;
  }

  .footer__legal a {
    font-size: 12px;
  }
}

/* ── Clients Marquee ── */
@media (max-width: 480px) {
  .clients {
    padding-block: 32px;
  }

  .clients__label {
    font-size: 13px;
    margin-bottom: 28px;
    letter-spacing: 0.08em;
  }

  .client-logo {
    padding: 14px 24px;
    min-width: 130px;
  }

  .client-logo img {
    height: 30px;
  }
}

/* ── Section header text sizes on small screens ── */
@media (max-width: 480px) {

  .products__header .headline,
  .plants__header .headline,
  .pitch__header .headline,
  .global__header .headline--dark,
  .news__header .headline {
    font-size: clamp(28px, 7.5vw, 40px);
  }

  .products__header .lead,
  .plants__header .lead,
  .pitch__header .lead,
  .global__header .lead--dark {
    font-size: 13.5px;
  }
}

/* ── General button overflow guard ── */
@media (max-width: 400px) {
  .btn--lg {
    padding: 9px 20px;
    font-size: 14px;
  }
}

/* ── Prevent any element from forcing horizontal scroll ── */
@media (max-width: 480px) {
  .hero__headline-line {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* ============================================================
   RESPONSIVE POLISH – FULL DEVICE COVERAGE
   Android · iPhone SE/14/Plus · iPad · Mac · 4K
   ============================================================ */

/* Prevent HTML-level horizontal scroll */
html {
  overflow-x: hidden;
}

/* ── Stats Showcase: 5th stat spans full row on 2-col (≤768px) ── */
@media (max-width: 768px) {
  .stats-showcase__item:last-child {
    grid-column: 1 / -1;
    border-right: none;
  }
}

/* ── Pitch Cards: last card (5th) full-width on 2-col (481–768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
  .pitch-card:last-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

/* ── Pitch Grid: centered flex rows on medium tablets (769–1200px) ──
   5 cards become 3+2 with the pair centred instead of left-aligned   */
@media (min-width: 769px) and (max-width: 1200px) {
  .pitch__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-inline: clamp(24px, 4vw, 64px);
  }

  .pitch-card {
    flex: 0 1 calc(33.333% - 12px);
    min-width: 220px;
  }
}

/* ── Footer: 2-col layout with brand spanning full at 769–1200px ── */
@media (min-width: 769px) and (max-width: 1200px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

/* ── Sustainability: 2-col visual side-by-side on tablet (769–1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .sustainability__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sust-visual {
    grid-template-columns: 1fr 1fr;
    height: 320px;
    gap: 20px;
  }

  .sust-visual__card {
    height: 100%;
  }
}

/* ── Hero: tighten stage padding on small phones ── */
@media (max-width: 480px) {
  .hero__stage {
    padding-top: clamp(68px, 17vw, 96px);
    justify-content: center;
  }

  .hero__body {
    padding-bottom: clamp(20px, 5vw, 36px);
    flex: unset;
  }
}

/* ── About Premium: full-width CTA button on small mobile ── */
@media (max-width: 480px) {
  .about-premium__content .btn {
    align-self: stretch !important;
    justify-content: center;
    text-align: center;
  }
}

/* ── Plants: view-all card minimum height on mobile ── */
@media (max-width: 768px) {
  .plants__grid .plant-card:last-child {
    min-height: 140px;
    grid-column: 1;
  }
}

/* ── Touch devices: remove hover lift transforms for smoother UX ── */
@media (hover: none) and (pointer: coarse) {

  .prod-box:hover,
  .plant-card:hover,
  .pitch-card:hover,
  .news-card:hover,
  .about-premium__feature:hover,
  .cert-card:hover,
  .sust-visual__card:hover,
  .global-stat-chip:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* ── Header logo: slightly smaller on mid-range tablets ── */
@media (min-width: 769px) and (max-width: 900px) {
  .header__logo {
    width: 148px;
  }
}

/* ── Small phones (≤375px): compact hero bottom controls ── */
@media (max-width: 375px) {
  .hero__bottom-inner {
    gap: 10px;
    padding-block: 14px;
  }

  .hero__slider-prev,
  .hero__slider-next {
    width: 34px;
    height: 34px;
  }

  .hero__dot-btn {
    width: 6px;
    height: 6px;
  }
}

/* ── Very narrow phones (≤375px): cert track near-full card ── */
@media (max-width: 375px) {
  .certs-track .cert-card {
    flex: 0 0 95%;
  }
}

/* ── Global map showcase: compact top spacing on small mobile ── */
@media (max-width: 480px) {
  .global__map-showcase {
    margin-top: 28px;
  }
}

/* ── News section: center align header on mobile ── */
@media (max-width: 480px) {
  .news__header {
    align-items: center;
  }
}

/* ── Cert showcase: ensure intro stacks cleanly on 769–1024px ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .cert-showcase {
    gap: clamp(24px, 4vw, 48px);
  }
}

/* ── Section headlines on small iPad landscape (641–768px) ── */
@media (min-width: 641px) and (max-width: 768px) {

  .products__header .headline,
  .plants__header .headline,
  .quality__header .headline,
  .news__header .headline {
    font-size: clamp(30px, 5.5vw, 44px);
  }
}

/* ── Clients label: responsive font size ── */
@media (max-width: 480px) {
  .clients__label {
    font-size: 12px;
    letter-spacing: 0.06em;
    padding-inline: 16px;
  }
}

/* ── Hero bottom bar: ensure counter visible on all phones ── */
@media (max-width: 480px) {
  .hero__counter-cur {
    font-size: 22px;
  }

  .hero__counter-sep,
  .hero__counter-total {
    font-size: 12px;
  }
}

/* ── Mobile nav action area: column layout with proper gap ── */
@media (max-width: 1024px) {
  .mobile-nav>div[style*="margin-top:40px"] {
    gap: 10px;
  }
}

/* ── Products section: centre the "View All" button on mobile ── */
@media (max-width: 480px) {
  .products .container>div>.btn {
    justify-content: center;
    min-width: 200px;
  }
}

/* ── Ensure CTA banner text never overflows on very small screens ── */
@media (max-width: 320px) {
  .cta-banner__headline {
    font-size: 22px;
    word-break: break-word;
  }

  .cta-banner__actions .btn {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* ── Quality section: tighter padding + stats gap on mobile ── */
@media (max-width: 768px) {
  .quality.section {
    padding-block: clamp(36px, 7vw, 56px);
  }

  .cert-showcase__stats {
    margin-top: 20px;
  }
}

/* ── Hide Global Export Hub card on phones; restore wrap clipping ── */
@media (max-width: 600px) {
  .global__map-card {
    display: none !important;
  }

  .global__visual-wrap {
    overflow: hidden;
  }

  .global__visual-img {
    width: 100%;
    height: auto;
  }
}

/* ── Prevent global section from adding horizontal scroll on mobile ── */
@media (max-width: 868px) {
  .global__map-showcase {
    overflow-x: hidden;
  }
}