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

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --navy: #2E2B6F;
  --navy-light: #3d3a8f;
  --navy-dark: #1e1c4a;
  --teal: #0E8B8B;
  --teal-light: #12a8a8;
  --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(14, 139, 139, 0.15) 100%);
  --grad-teal: linear-gradient(135deg, #0E8B8B 0%, #076a6a 100%);

  /* Typography */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', 'Poppins', sans-serif;
  --size-hero: clamp(28px, 3.8vw, 58px);
  --size-h1: clamp(40px, 6vw, 80px);
  --size-h2: clamp(32px, 4.5vw, 60px);
  --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);
}

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.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

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

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

.headline span {
  background: linear-gradient(135deg, var(--teal), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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: 11px 26px;
  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: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

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

.btn--teal:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(118, 180, 79, 0.35);
}

.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(--green);
  border: 1px solid var(--green);
}

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

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

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

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--t-base) var(--ease);
  padding-block: 16px;
  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.06);
}

.header.scrolled {
  padding-block: 12px;
  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 {
  flex-shrink: 0;
  width: 180px;
}

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

.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(30, 28, 74, 0.8);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.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(14, 139, 139, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.mega-menu__title {
  font-size: 13px;
  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(--teal);
  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(--navy);
  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(24px, 5vw, 40px);
  font-weight: 700;
  color: var(--white);
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: -0.02em;
  transition: color var(--t-fast) var(--ease);
}

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

/* Simple Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  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.12);
  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(30, 28, 74, 0.75);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.dropdown-menu__item:hover {
  color: var(--navy);
  background: rgba(46, 43, 111, 0.06);
}

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

/* "Get in touch" button */
.btn--get-in-touch {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 22px 0px 22px 0px;
  letter-spacing: 0.01em;
}

.btn--get-in-touch:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(118, 180, 79, 0.4);
}

/* ============================================================
   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(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(16px, 3vw, 48px);
}

.hero__arrow--next {
  right: clamp(16px, 3vw, 48px);
}

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

/* ── 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: 720px;
  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(--teal);
  margin-bottom: 18px;
  animation: fadeUp 0.7s var(--ease-out) both;
}

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

/* ── Headline ── */
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  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: block;
  background: linear-gradient(110deg, var(--teal) 0%, var(--green) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  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: 15px 32px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 22px 0px 22px 0px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 32px rgba(14, 139, 139, 0.35);
}

.hero__btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(14, 139, 139, 0.45);
}

.hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  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(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  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(--teal);
  border-color: var(--teal);
}

.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: 22px;
  letter-spacing: -0.03em;
}

.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(--teal);
  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(36px, 10vw, 56px);
  }

  .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(118, 180, 79, 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: linear-gradient(90deg, var(--navy), var(--green));
  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 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(118, 180, 79, 0.1);
  border: 1px solid rgba(118, 180, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: all var(--t-fast) var(--ease);
}

.stats-showcase__item:hover .stats-showcase__icon {
  background: rgba(118, 180, 79, 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;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stats-showcase__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  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(14, 139, 139, 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(118, 180, 79, 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(32px, 3.8vw, 56px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 20px 0 24px;
}

.about-premium__title .accent-green {
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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(14, 139, 139, 0.04) 0%, rgba(118, 180, 79, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.about-premium__feature:hover {
  background: #fff;
  border-color: #dce0e8;
  border-left-color: var(--green);
  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 {
  background: linear-gradient(135deg, #0e8b8b 0%, #13a8a8 100%);
  box-shadow: 0 4px 14px rgba(14, 139, 139, 0.3);
}

.about-premium__feature:nth-child(2) .about-premium__feature-icon {
  background: linear-gradient(135deg, #2E2B6F 0%, #0E8B8B 100%);
  box-shadow: 0 4px 14px rgba(46, 43, 111, 0.3);
}

.about-premium__feature:nth-child(3) .about-premium__feature-icon {
  background: linear-gradient(135deg, #76b44f 0%, #5fa03a 100%);
  box-shadow: 0 4px 14px rgba(118, 180, 79, 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(--navy);
  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;
  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;
  bottom: 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: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-premium__badge-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a8299;
  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 teal-green tint */
.about-premium__stat-card {
  background: linear-gradient(160deg, #edf9f8 0%, #f2f9ee 100%);
  border: 1px solid rgba(14, 139, 139, 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(14, 139, 139, 0.08);
}

.about-premium__stat-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-premium__stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #5a6478;
  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(--green);
  background: rgba(118, 180, 79, 0.14);
  border: 1px solid rgba(118, 180, 79, 0.3);
  border-radius: 100px;
  padding: 6px 11px;
  letter-spacing: 0.04em;
}

/* 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(--green);
}

.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(--green);
  margin-bottom: 6px;
}

.prod-box__title {
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  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(--green);
  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: linear-gradient(90deg, var(--green), var(--green-light));
  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;
}

.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: linear-gradient(90deg, var(--navy), var(--teal), var(--green));
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.plant-card:hover {
  border-color: rgba(14, 139, 139, 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 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(46, 43, 111, 0.07);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--t-base) var(--ease);
}

.plant-card:hover .plant-card__code {
  color: rgba(14, 139, 139, 0.2);
}

.plant-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  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: 22px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
}

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

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

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

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

.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--t-base) var(--ease);
  cursor: default;
}

.cert-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.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(--teal);
}

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

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

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

.sustainability::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(118, 180, 79, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 30%, rgba(14, 139, 139, 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(118, 180, 79, 0.2);
  border-radius: var(--radius);
  padding: 28px;
}

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

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

.sust-visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0a1a0a, #051a10);
}

.sust-visual__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(118, 180, 79, 0.2);
  transform: translate(-50%, -50%);
  animation: expandRing 3s ease-out infinite;
}

.sust-visual__ring:nth-child(1) {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.sust-visual__ring:nth-child(2) {
  width: 320px;
  height: 320px;
  animation-delay: 0.5s;
}

.sust-visual__ring:nth-child(3) {
  width: 440px;
  height: 440px;
  animation-delay: 1s;
}

@keyframes expandRing {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
  }
}

.sust-visual__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(118, 180, 79, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(118, 180, 79, 0.4);
}

.sust-visual__center svg {
  width: 48px;
  height: 48px;
  color: var(--green);
}

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients {
  background: var(--gray-100);
  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;
}

.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: grayscale(1) opacity(0.45);
  transition: filter var(--t-base) var(--ease);
}

.client-logo:hover img {
  filter: grayscale(0) opacity(1);
}

.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(--navy-dark);
  position: relative;
  overflow: hidden;
}

.pitch::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46, 43, 111, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(14, 139, 139, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.pitch__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Each card */
.pitch-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
  cursor: default;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.pitch-card:last-child {
  border-right: none;
}

/* Top accent bar - unique per card */
.pitch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.8;
  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: linear-gradient(90deg, var(--navy), var(--teal));
}

/* Bottom glow on hover */
.pitch-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(30px);
  transition: opacity var(--t-base) var(--ease);
}

.pitch-card:nth-child(1)::after,
.pitch-card:nth-child(2)::after,
.pitch-card:nth-child(3)::after,
.pitch-card:nth-child(4)::after,
.pitch-card:nth-child(5)::after {
  background: rgba(46, 43, 111, 0.4);
}

.pitch-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

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

.pitch-card:hover::after {
  opacity: 1;
}

/* Ghost letter */
.pitch-card__letter {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 4px;
  transition: color var(--t-base) var(--ease);
}

.pitch-card:hover .pitch-card__letter {
  color: rgba(255, 255, 255, 0.07);
}

/* Icon - gradient background matching card accent */
.pitch-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.pitch-card:nth-child(1) .pitch-card__icon,
.pitch-card:nth-child(2) .pitch-card__icon,
.pitch-card:nth-child(3) .pitch-card__icon,
.pitch-card:nth-child(4) .pitch-card__icon,
.pitch-card:nth-child(5) .pitch-card__icon {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 8px 24px rgba(46, 43, 111, 0.35);
}

.pitch-card:hover .pitch-card__icon {
  transform: translateY(-3px) scale(1.05);
}

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

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

.pitch-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ============================================================
   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(--teal);
  box-shadow: 0 8px 24px rgba(14, 139, 139, 0.1);
  transform: translateY(-3px);
}

.global-stat-chip__num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

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

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

.global__map-inner {
  position: relative;
  background: linear-gradient(160deg, #f0f4ff, #eaf5f5, #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(14, 139, 139, 0.18);
  stroke: rgba(14, 139, 139, 0.35);
}

.gmap-land--origin {
  fill: rgba(118, 180, 79, 0.35);
  stroke: rgba(118, 180, 79, 0.6);
  stroke-width: 1;
}

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

.map-pin--origin {
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid rgba(118, 180, 79, 0.5);
  z-index: 2;
}

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

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

.map-pin--export::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(14, 139, 139, 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(--green);
}

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

/* 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(14, 139, 139, 0.3);
  box-shadow: 0 8px 32px rgba(14, 139, 139, 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(14, 139, 139, 0.1);
  color: var(--teal);
}

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

.global-region__icon--green {
  background: rgba(118, 180, 79, 0.12);
  color: var(--green);
}

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

.global-region__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  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;
  }
}

/* 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(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ============================================================
   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(14, 139, 139, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.news-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #dde8f4, #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(--teal);
  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: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.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(--teal);
  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/slider/optimized/metalworking-industry-concept-mechanical-engineering-control-lathe-machine-factory.jpg');
  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(--green);
  border-color: var(--green);
  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(14, 139, 139, 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(118, 180, 79, 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.04em;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.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(--teal);
  background: rgba(14, 139, 139, 0.1);
}

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

.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: space-between;
  padding-block: 28px;
}

.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(--navy);
}

.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(--navy);
  border: 1px solid rgba(46, 43, 111, 0.25);
}

.btn--outline-dark:hover {
  border-color: var(--navy);
  background: rgba(46, 43, 111, 0.06);
  transform: translateY(-2px);
}

.sustainability .btn--outline,
.news .btn--outline,
.global .btn--outline {
  color: var(--navy);
  border-color: rgba(46, 43, 111, 0.3);
}

.sustainability .btn--outline:hover,
.news .btn--outline:hover,
.global .btn--outline:hover {
  background: rgba(46, 43, 111, 0.06);
  border-color: var(--navy);
}

/* ============================================================
   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: linear-gradient(90deg, var(--navy), var(--teal), var(--green));
  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: linear-gradient(180deg, var(--navy), var(--teal), var(--green));
  border-radius: 99px;
}
.contact-modal__card { scrollbar-width: thin; scrollbar-color: var(--teal) 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(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 139, 139, 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: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-modal__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  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(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,139,139,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: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(14,139,139,0.25);
}

.contact-modal__success h3 {
  color: var(--navy);
  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: linear-gradient(90deg, var(--navy), var(--teal), var(--green));
  z-index: 9999;
  transform-origin: left;
  transition: width 0.1s linear;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 108px;
  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/scraped_raw/strategy-bg.jpg');
  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.82) 0%, rgba(4, 3, 18, 0.70) 100%),
    radial-gradient(ellipse 80% 60% at 10% 30%, rgba(46, 43, 111, 0.40) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(14, 139, 139, 0.15) 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(14, 139, 139, 0.4), transparent);
}

.page-hero__breadcrumb {
  display: inline-flex;
  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: var(--teal-light);
  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(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.05;
  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(14, 139, 139, 0.7);
  }

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

  100% {
    box-shadow: 0 0 0 0 rgba(14, 139, 139, 0);
  }
}

@keyframes pinPulseGlowGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(118, 180, 79, 0.7);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(118, 180, 79, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(118, 180, 79, 0);
  }
}

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

.partner-item:hover .partner-item__logo {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(120deg);
}

/* ── 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(--teal);
  animation: pinPulseGlow 2.2s ease-out infinite;
}

.map-pin-dot--green {
  width: 10px;
  height: 10px;
  background: var(--green);
  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(--green);
  border: 3px solid rgba(118, 180, 79, 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(14, 139, 139, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  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(--green);
}

/* 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(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(118, 180, 79, 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(14, 139, 139, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 40px rgba(14, 139, 139, 0.12);
}

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

.opening-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  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(14, 139, 139, 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(--teal);
  margin-bottom: 12px;
}

.product-full-card__title {
  font-size: 26px;
  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(--teal);
  background: rgba(14, 139, 139, 0.1);
  border: 1px solid rgba(14, 139, 139, 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(14, 139, 139, 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(14, 139, 139, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.process-step__title {
  font-size: 18px;
  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(--teal);
  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(14, 139, 139, 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(14, 139, 139, 0.12);
}

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

.section--white .process-step__icon,
.section--light .process-step__icon {
  background: rgba(14, 139, 139, 0.1);
}

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

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

/* ============================================================
   FLOATING SOCIAL WIDGETS & BACK-TO-TOP BUTTON
   ============================================================ */
.fixed-social-bar {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fixed-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all var(--t-fast) var(--ease);
  color: var(--navy);
  text-decoration: none;
}

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

.fixed-social-btn:hover {
  transform: scale(1.1) translateX(4px);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(14, 139, 139, 0.2);
}

.fixed-social-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.fixed-social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.fixed-social-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.fixed-social-btn.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.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(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 139, 139, 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(14, 139, 139, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(118, 180, 79, 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(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.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(--green);
  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: linear-gradient(to bottom, var(--teal), var(--green));
  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(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(14, 139, 139, 0.18);
  z-index: 1;
}

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

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

.timeline-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  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;
  }

  .btn--get-in-touch {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* ── 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);
  }

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

  .sust-visual {
    height: 380px;
  }

  .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) {
    display: none;
  }

  .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);
  }

  .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: 300px;
  }

  /* 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;
  }

  /* Fixed social bar - smaller */
  .fixed-social-bar {
    left: 12px;
    gap: 8px;
  }

  .fixed-social-btn {
    width: 28px;
    height: 28px;
  }

  .fixed-social-btn svg {
    width: 13px;
    height: 13px;
  }

  /* 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: 260px;
  }

  .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) {
  .hero__headline {
    font-size: clamp(36px, 10vw, 56px);
  }

  .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;
  }

  /* Fixed social bar - horizontal strip pinned to bottom on mobile */
  .fixed-social-bar {
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(6, 5, 23, 0.96) 0%, rgba(14, 139, 139, 0.55) 50%, rgba(6, 5, 23, 0.96) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 3px 12px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 998;
  }
  .fixed-social-btn {
    flex: 1;
    max-width: 72px;
    width: auto;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: transparent;
    box-shadow: none;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
  }
  .fixed-social-btn svg {
    width: 18px;
    height: 18px;
  }
  .fixed-social-btn:hover {
    transform: scale(1.08);
    color: var(--white);
  }
  /* Lift back-to-top above the social bar */
  .back-to-top-btn {
    bottom: 52px;
  }
}

/* ── 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;
  }

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

  .certs-grid {
    grid-template-columns: repeat(2, 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(32px, 9vw, 48px);
  }

  .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 {
    padding: 32px 20px;
  }

  .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: 15px;
  }

  .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, 8.5vw, 40px);
  }

  .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: 14.5px;
  }

  .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(20px, 6vw, 32px);
    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.1;
  }

  .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: 14px;
  }

  .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: 22px;
    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;
}