/* ============================================================
   RUSHIKESH ENTERPRISES — style.css
   Fonts: Raleway (headings) + Mulish (body)
   Colors: Deep Crimson Red + Black + White
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Mulish:wght@300;400;500;600;700&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  --red: #8b1a1a;
  --red-hover: #a32020;
  --red-dark: #6a1212;
  --red-subtle: rgba(139, 26, 26, 0.08);
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --dark-2: #252525;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-bg: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #888888;
  --border: #e2e2e2;
  --border-dark: #2e2e2e;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --nav-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: "Mulish", sans-serif;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--light-bg);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104'%3E%3Cpolygon points='30,2 58,17 58,47 30,62 2,47 2,17' fill='none' stroke='%238b1a1a' stroke-width='0.7'/%3E%3Cpolygon points='30,62 58,77 58,107 30,122 2,107 2,77' fill='none' stroke='%238b1a1a' stroke-width='0.7'/%3E%3C/svg%3E");
  background-size: 60px 104px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.section-alt > .container {
  position: relative;
  z-index: 1;
}

.section-alt.no-texture {
  background: var(--white);
}

.section-alt.no-texture::before {
  display: none;
}

.section-compact {
  padding-bottom: 56px;
}

.section-dark {
  background: var(--black);
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.section-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: "Raleway", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

.btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.35);
}

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

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

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

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.25);
}

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

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
  transform-origin: center;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-nav .btn {
  margin-top: 16px;
  width: 100%;
}

/* ===== PAGE OFFSET ===== */
.page-offset {
  padding-top: var(--nav-height);
}

/* ===== HERO (Homepage) ===== */
.hero {
  position: relative;
  min-height: 80vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/hero_section_image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 26, 26, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 26, 26, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 26, 26, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(139, 26, 26, 0.5);
  padding: 7px 18px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: "Raleway", sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero-title span {
  color: var(--red);
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 520px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent 60%);
  opacity: 0.6;
}

/* ===== ENGINEERING DESIGN ELEMENTS ===== */

/* Hero: precision target/crosshair watermark */
.hero-eng-mark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='white' stroke-width='1.5'%3E%3Ccircle cx='100' cy='100' r='94'/%3E%3Ccircle cx='100' cy='100' r='72'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3Ccircle cx='100' cy='100' r='18'/%3E%3Cline x1='6' y1='100' x2='194' y2='100'/%3E%3Cline x1='100' y1='6' x2='100' y2='194'/%3E%3Cline x1='166' y1='34' x2='159' y2='41'/%3E%3Cline x1='34' y1='166' x2='41' y2='159'/%3E%3Cline x1='34' y1='34' x2='41' y2='41'/%3E%3Cline x1='166' y1='166' x2='159' y2='159'/%3E%3Ccircle cx='100' cy='100' r='4' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Section label: precision dash decoration */
.section-label::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: repeating-linear-gradient(
    to right,
    var(--red) 0px,
    var(--red) 5px,
    transparent 5px,
    transparent 9px
  );
  vertical-align: middle;
  margin-left: 10px;
  opacity: 0.65;
}

/* Product card: engineering corner bracket */
.product-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 16px;
  height: 16px;
  border-top: 1.5px solid rgba(139, 26, 26, 0.18);
  border-right: 1.5px solid rgba(139, 26, 26, 0.18);
  transition: all var(--transition);
  pointer-events: none;
}
.product-card:hover::after {
  border-color: rgba(139, 26, 26, 0.55);
  width: 20px;
  height: 20px;
  top: 12px;
  right: 12px;
}

/* Page hero: engineering drawing corner frame */
.eng-frame {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  z-index: 3;
}
.eng-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-top: 1.5px solid rgba(139, 26, 26, 0.45);
  border-left: 1.5px solid rgba(139, 26, 26, 0.45);
}
.eng-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-bottom: 1.5px solid rgba(139, 26, 26, 0.45);
  border-right: 1.5px solid rgba(139, 26, 26, 0.45);
}

/* CTA Banner: secondary precision grid layer */
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 47px,
    rgba(255, 255, 255, 0.035) 47px,
    rgba(255, 255, 255, 0.035) 48px
  );
  pointer-events: none;
  z-index: 0;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--border);
}

.trust-item {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-check {
  width: 32px;
  height: 32px;
  background: var(--red-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-check svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  stroke-width: 2.5;
}

.trust-text strong {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.2px;
}

.trust-text span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== PRODUCT CARDS (Homepage) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--white);
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

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

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

.product-card-img img.img-contain {
  object-fit: contain;
}

.product-card-body {
  padding: 28px 28px 32px;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height var(--transition);
}

.product-card:hover {
  background: var(--off-white);
}

.product-card:hover::before {
  height: 100%;
}

.product-num {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 20px;
  display: block;
}

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--red-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  stroke-width: 1.8;
}

.product-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-link {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.product-card:hover .product-link {
  gap: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-rows {
  margin-top: 48px;
}

.why-row {
  display: grid;
  grid-template-columns: 110px 1fr 2fr;
  align-items: start;
  gap: 0 32px;
  padding: 28px 16px;
  margin: 0 -16px;
  border-top: 1px solid var(--border);
  border-radius: 4px;
  transition: background var(--transition);
}

.why-row:last-child {
  border-bottom: 1px solid var(--border);
}

.why-row:hover {
  background: var(--red-subtle);
}

.why-row-num {
  font-family: "Raleway", sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: rgba(139, 26, 26, 0.1);
  line-height: 1;
  margin-top: -8px;
  letter-spacing: -3px;
  user-select: none;
}

.why-row-heading {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
  padding-top: 6px;
}

.why-row-desc {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.75;
  padding-top: 6px;
}

/* ===== TRUSTED BY — CLIENT STRIP ===== */
.clients-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.clients-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}

.clients-section .section-label--light {
  color: var(--red);
}

.clients-section .section-title--light {
  color: var(--text-dark);
}

.clients-section .section-desc--light {
  color: var(--text-mid);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.client-card {
  background: var(--white);
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition:
    background var(--transition),
    transform var(--transition);
  position: relative;
}

.client-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.client-card:hover {
  background: var(--off-white);
  transform: translateY(-3px);
}

.client-card:hover::after {
  transform: scaleX(1);
}

.client-logo-wrap {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-wrap img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.client-card:hover .client-logo-wrap img {
  opacity: 1;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.client-name {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.client-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-light);
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.client-loc svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== HOW WE WORK — PROCESS SECTION ===== */
.process-section {
  background: var(--light-bg);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
}

.process-line {
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px,
    var(--red) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.process-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition),
    transform var(--transition);
  margin-bottom: 24px;
}

.process-step:hover .process-node {
  background: var(--red);
  transform: scale(1.1);
}

.process-num {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--red);
  transition: color var(--transition);
}

.process-step:hover .process-num {
  color: var(--white);
}

.process-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.process-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}

.process-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
  opacity: 0.75;
}

.process-step:hover .process-icon svg {
  opacity: 1;
}

.process-body h4 {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.process-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== INDUSTRIES (Homepage snippet) ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: all var(--transition);
}

.industry-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card .ind-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-card .ind-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--red);
  stroke-width: 1.5;
}

.industry-card h4 {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-top: 6px;
  line-height: 1.6;
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

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

.footer-split {
  display: flex;
  align-items: stretch;
}

.footer-left {
  background: var(--white);
  flex: 0 0 36%;
  display: flex;
  justify-content: flex-end;
}

.footer-brand {
  width: 100%;
  max-width: 400px;
  padding: 72px 48px 56px 24px;
}

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

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 24px 56px 56px;
  flex: 1;
  border-bottom: 1px solid var(--border-dark);
}

.footer-col {
  /* layout handled by footer-cols grid */
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  padding: 10px 20px;
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.footer-col h5 {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

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

.footer-col ul li span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-contact-item .label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.footer-contact-item .value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 20px 56px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/widebanneraboutus.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--black);
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}

.page-hero--products {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/products-banner.webp");
}

.page-hero--industries {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/industries-banner.webp");
}

.page-hero--contact {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/contact_banner.webp");
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 26, 26, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 26, 26, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}

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

.page-hero .breadcrumb {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--red);
}

.page-hero .breadcrumb span {
  margin: 0 8px;
}

.page-hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: var(--red);
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.75;
}

.page-hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent 50%);
  opacity: 0.5;
}

/* ===== INDUSTRIES STAT BAR ===== */
.ind-stat-bar {
  background: var(--dark-2);
  border-bottom: 2px solid var(--border-dark);
}

.ind-stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ind-stat-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
}

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

.ind-stat-item .num {
  font-family: "Raleway", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.ind-stat-item .label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== OEM CLIENT STRIP ===== */
.oem-strip {
  background: var(--black);
  padding: 44px 0;
  border-bottom: 1px solid var(--border-dark);
}

.oem-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.oem-strip-label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
}

.oem-strip-clients {
  display: flex;
  align-items: center;
  gap: 40px;
}

.oem-client-name {
  font-family: "Raleway", sans-serif;
  font-size: clamp(15px, 2.2vw, 24px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.oem-divider {
  width: 1px;
  height: 26px;
  background: var(--border-dark);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .oem-strip-clients {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .oem-divider {
    display: none;
  }

  .oem-client-name {
    letter-spacing: 2px;
  }
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.about-stat {
  background: var(--white);
  padding: 32px 28px;
  text-align: center;
}

.about-stat .num {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat .label {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.mv-item {
  background: var(--white);
  padding: 48px 44px;
  position: relative;
}

.mv-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--border);
  transition: background 0.3s ease;
}

.mv-item:hover::before {
  background: var(--red);
}

.mv-item .mv-tag {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  display: block;
  transition: color 0.3s ease;
}

.mv-item:hover .mv-tag {
  color: var(--red);
}

.mv-item h3 {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.mv-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card .v-num {
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--red-subtle);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
  color: rgba(139, 26, 26, 0.3);
  transition: color var(--transition);
}

.value-card:hover .v-num {
  color: var(--red);
  opacity: 0.25;
}

.value-card h4 {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Team */
.team-card {
  max-width: 360px;
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.team-avatar span {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}

.team-card h4 {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.team-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-contacts a {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.team-contacts a:hover {
  color: var(--red);
}

/* ===== TEAM CARD WIDE ===== */
.team-card-wide {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  align-items: stretch;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.team-card-wide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  z-index: 2;
}

.team-col-left {
  padding: 52px 48px;
}

.team-col-left h4 {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-col-left .role {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}

.team-col-left p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.team-col-center {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 48px 20px;
}

.team-photo-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--red);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-col-right {
  background: var(--dark);
  padding: 52px 48px;
  display: flex;
  align-items: center;
}

.team-right-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.team-detail-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dark);
}

.team-detail-item:first-child {
  padding-top: 0;
}

.team-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.team-detail-item .td-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}

.team-detail-item .td-value {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ===== FACILITY STRIP ===== */
.facility-strip-wrap {
  position: relative;
  margin-top: 48px;
  z-index: 1;
}

.facility-arrow {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  box-shadow: var(--shadow-md);
}

.facility-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.facility-arrow-prev {
  left: 12px;
}

.facility-arrow-next {
  right: 12px;
}

.facility-strip-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: calc(100% - 24px);
  background: linear-gradient(to right, transparent, var(--light-bg));
  pointer-events: none;
  z-index: 2;
}

.facility-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 24px 24px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.facility-strip::-webkit-scrollbar {
  display: none;
}

.facility-strip.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.facility-img {
  flex: 0 0 420px;
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.facility-img:hover img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .team-card-wide {
    grid-template-columns: 1fr 220px 1fr;
  }
  .team-col-left,
  .team-col-right {
    padding: 44px 36px;
  }
}

@media (max-width: 768px) {
  .team-card-wide {
    grid-template-columns: 1fr;
  }
  .team-col-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 24px;
  }
  .team-col-left,
  .team-col-right {
    padding: 40px 28px;
  }
  .facility-img {
    flex: 0 0 300px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .facility-img {
    flex: 0 0 260px;
    height: 200px;
  }
}

/* ===== PRODUCTS PAGE ===== */
.product-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

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

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.product-layout.reverse {
  direction: rtl;
}

.product-layout.reverse > * {
  direction: ltr;
}

.product-info .category-label {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  padding: 5px 12px;
  margin-bottom: 18px;
}

.product-info h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.product-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.product-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.product-img-wrap {
  position: relative;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--light-bg);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--border);
  stroke-width: 1.5;
}

.img-placeholder span {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

/* Product Sub-items */
.product-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.product-sub-card {
  border: 1px solid var(--border);
  padding: 24px 22px;
  transition: all var(--transition);
}

.product-sub-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.product-sub-card h5 {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-sub-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
  margin-top: 48px;
}

.product-gallery-label {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-gallery-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item.gallery-hidden {
  display: none;
}

.show-more-btn {
  display: block;
  margin: 24px auto 0;
  padding: 12px 32px;
  background: transparent;
  border: 1.5px solid var(--border);
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.show-more-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.gallery-item {
  all: unset;
  cursor: pointer;
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-bg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-overlay svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  stroke-width: 1.8;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ===== PRODUCT VIEWER (pv-*) ===== */
.product-gallery {
  margin-top: 48px;
  background: var(--black);
  border-radius: 8px;
  padding: 28px 28px 24px;
}

.product-gallery .product-gallery-label {
  color: rgba(255, 255, 255, 0.35);
}

.product-gallery .product-gallery-label::after {
  background: rgba(255, 255, 255, 0.1);
}

.pv-wrap {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 12px;
}

.pv-stage {
  position: relative;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  cursor: crosshair;
  transform-style: preserve-3d;
  will-change: transform;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  transition: transform 0.1s ease;
}

.pv-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.pv-main-img.pv-exit {
  opacity: 0;
  transform: scale(0.96);
}

.pv-main-img.pv-enter {
  opacity: 0;
  transform: scale(1.03);
}

.pv-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 6px;
}

.pv-stage:hover .pv-shine {
  opacity: 1;
}

.pv-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--red) 35%,
    var(--red) 65%,
    transparent
  );
  opacity: 0;
  pointer-events: none;
  top: 0;
}

.pv-scan.pv-scanning {
  animation: pvScan 0.55s ease-out forwards;
}

@keyframes pvScan {
  0% {
    top: 0;
    opacity: 0.75;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.pv-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--red);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.pv-corner-tl {
  top: 10px;
  left: 10px;
  border-width: 1.5px 0 0 1.5px;
}
.pv-corner-br {
  bottom: 10px;
  right: 10px;
  border-width: 0 1.5px 1.5px 0;
}

.pv-stage:hover .pv-corner {
  opacity: 1;
}

.pv-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.pv-stage:hover .pv-caption {
  transform: translateY(0);
}

.pv-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(139, 26, 26, 0.22);
  transform: scale(0);
  animation: pvRipple 0.55s ease-out forwards;
  pointer-events: none;
}

@keyframes pvRipple {
  to {
    transform: scale(4.5);
    opacity: 0;
  }
}

.pv-thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 420px;
  overflow-y: auto;
  padding-right: 3px;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 26, 26, 0.45) transparent;
}

.pv-thumbs::-webkit-scrollbar {
  width: 3px;
}
.pv-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.pv-thumbs::-webkit-scrollbar-thumb {
  background: rgba(139, 26, 26, 0.45);
  border-radius: 2px;
}

.pv-thumb {
  all: unset;
  cursor: pointer;
  display: block;
  position: relative;
  height: 62px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  transition:
    border-color 0.2s,
    opacity 0.4s ease,
    transform 0.4s ease;
  opacity: 0;
  transform: translateX(18px);
}

.pv-thumb.pv-revealed {
  opacity: 1;
  transform: translateX(0);
}

.pv-thumb.pv-active {
  border-color: var(--red);
}

.pv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.pv-thumb:hover img {
  transform: scale(1.1);
}

.pv-thumb-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.pv-thumb.pv-active .pv-thumb-bar {
  transform: scaleY(1);
}

.pv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.pv-counter {
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.pv-progress-bar {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  margin-top: 10px;
  overflow: hidden;
}

.pv-progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 5, 5, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 88vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s ease;
}

.lightbox-img.fade {
  opacity: 0;
}

.lightbox-close {
  all: unset;
  cursor: pointer;
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 28px;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 10001;
}

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

.lightbox-prev,
.lightbox-next {
  all: unset;
  cursor: pointer;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 36px;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  background: rgba(255, 255, 255, 0.07);
  z-index: 10001;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10001;
}

@media (max-width: 768px) {
  .product-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }
}

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

/* ===== INDUSTRIES PAGE ===== */
.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.industry-detail-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  border-left: 3px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.industry-detail-card:hover {
  background: var(--off-white);
  border-left-color: var(--red);
}

.industry-detail-card .ind-num {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(139, 26, 26, 0.07);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.industry-detail-card:hover .ind-num {
  color: rgba(139, 26, 26, 0.12);
}

.industry-detail-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.industry-detail-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ind-tag {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  padding: 4px 10px;
}

.ind-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}

.ind-card-link:hover {
  gap: 10px;
}

.ind-card-link svg {
  width: 13px;
  height: 13px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.ind-card-link:hover svg {
  transform: translateX(3px);
}

/* ===== INDUSTRY CARD ICON ===== */
.ind-icon-wrap {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 26, 26, 0.22);
  background: var(--red-subtle);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.industry-detail-card:hover .ind-icon-wrap {
  background: rgba(139, 26, 26, 0.13);
  border-color: rgba(139, 26, 26, 0.38);
}

.ind-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== WHY GRID (Industries Page) ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 56px;
}

.why-item {
  background: var(--light-bg);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-num {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  flex-shrink: 0;
  padding-top: 4px;
}

.why-content h4 {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

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

.contact-info {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.contact-info h3 {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail:first-of-type {
  border-top: 1px solid var(--border);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--red-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  stroke-width: 2;
}

.contact-detail-text .label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.contact-detail-text .value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-detail-text a.value {
  transition: color var(--transition);
}

.contact-detail-text a.value:hover {
  color: var(--red);
}

.contact-detail-text .sub {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
  display: block;
}

.whatsapp-cta {
  background: #25d366;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  transition: background var(--transition);
}

.whatsapp-cta:hover {
  background: #1da851;
}

.whatsapp-cta svg {
  width: 28px;
  height: 28px;
  fill: white;
  flex-shrink: 0;
}

.whatsapp-cta span {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Contact Form */
.contact-form-wrap h3 {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  font-weight: 500;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

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

.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

.form-note--success {
  font-size: 14px;
  font-weight: 600;
  color: #2a7a4b;
  background: #edfaf3;
  border: 1px solid #a3dfc0;
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 12px;
}

.form-note--error {
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  background: #fdf2f2;
  border: 1px solid #f0b8b8;
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 12px;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ===== MISC UTILITIES ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.text-red {
  color: var(--red);
}
.text-center {
  text-align: center;
}
.mt-40 {
  margin-top: 40px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-56 {
  margin-top: 56px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 56px 24px 48px 48px;
  }

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

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

  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-layout.reverse {
    direction: ltr;
  }

  .pv-wrap {
    grid-template-columns: 1fr 80px;
  }

  .pv-stage,
  .pv-thumbs {
    height: 340px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    position: static;
  }

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

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }

  .process-line {
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(50% + 28px);
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    letter-spacing: -1px;
  }

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

  .trust-item:nth-child(2),
  .trust-item:nth-child(4) {
    border-right: none;
  }

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

  .why-row {
    grid-template-columns: 1fr;
    gap: 8px 0;
    padding: 24px 0;
    margin: 0;
  }

  .why-row-num {
    font-size: 52px;
    margin-top: 0;
    letter-spacing: -2px;
  }

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

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

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

  .industry-detail-grid {
    grid-template-columns: 1fr;
  }

  .ind-stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ind-stat-item:nth-child(1),
  .ind-stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border-dark);
  }

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

  .why-item {
    padding: 28px 24px;
  }

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

  .pv-wrap {
    grid-template-columns: 1fr;
  }

  .pv-stage {
    height: 260px;
  }

  .pv-thumbs {
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-right: 0;
    padding-bottom: 3px;
  }

  .pv-thumb {
    height: 60px;
    min-width: 80px;
    transform: translateY(16px);
  }

  .pv-thumb.pv-revealed {
    transform: translateY(0);
  }

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

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-split {
    flex-direction: column;
  }

  .footer-left {
    flex: none;
    justify-content: flex-start;
  }

  .footer-brand {
    max-width: none;
    padding: 48px 24px 40px;
  }

  .footer-right {
    padding-left: 0;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px;
  }

  .footer-bottom {
    padding: 20px 24px;
  }

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

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 32px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 40px 0;
    position: relative;
  }

  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
      180deg,
      var(--red) 0px,
      var(--red) 5px,
      transparent 5px,
      transparent 12px
    );
  }

  .process-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-body {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

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

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

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

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

/* ===== FILTER ROADMAP ===== */
.filter-roadmap {
  padding: 48px 0 0;
}

.filter-roadmap-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== FILTER DETAIL PAGE ===== */
.filter-group {
  padding: 96px 0;
}

.filter-products-flat {
  padding: 96px 0;
}

.filter-group-header {
  margin-bottom: 40px;
}

.filter-group-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.filter-group-tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.filter-group-title {
  font-family: "Raleway", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.filter-group-desc {
  color: var(--text-mid);
  font-size: 15px;
  max-width: 640px;
  line-height: 1.7;
}

.filter-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.filter-card {
  border: 1px solid var(--border);
  padding: 28px 26px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.filter-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.filter-card-series {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.filter-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.filter-card-application {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.filter-card-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  gap: 12px;
}

.spec-label {
  color: var(--text-mid);
  flex-shrink: 0;
}

.spec-value {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.product-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .filter-card-grid {
    grid-template-columns: 1fr;
  }

  .product-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== FILTER PRODUCT DATASHEET ===== */
.filter-product-list {
  display: flex;
  flex-direction: column;
}

.filter-product {
  border: 1px solid var(--border);
  margin-bottom: 32px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.filter-product:hover {
  box-shadow: var(--shadow-sm);
}

.filter-product-top {
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.filter-product-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
}

.filter-product-name {
  font-family: "Raleway", sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.filter-product-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid var(--red);
  padding: 3px 10px;
  flex-shrink: 0;
}

.filter-product-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid var(--border);
}

.filter-img-wrap {
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--light-bg);
  min-height: 220px;
}

.filter-img-placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  min-height: 160px;
  border: 1.5px dashed var(--border);
}

.filter-img-placeholder svg {
  opacity: 0.3;
}

.filter-specs-wrap {
  overflow: auto;
}

.filter-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.filter-specs-table thead tr {
  background: var(--dark);
}

.filter-specs-table thead th {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 11px 18px;
  text-align: left;
}

.filter-specs-table tbody tr:nth-child(odd) {
  background: var(--white);
}

.filter-specs-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.filter-specs-table tbody td {
  padding: 9px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.4;
}

.filter-specs-table tbody td:first-child {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  width: 48%;
}

.filter-specs-table tbody td:last-child {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
}

.filter-product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.filter-detail-col {
  padding: 24px 28px;
}

.filter-detail-col + .filter-detail-col {
  border-left: 1px solid var(--border);
}

.filter-detail-col h4 {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
  margin-top: 20px;
}

.filter-detail-col h4:first-child {
  margin-top: 0;
}

.filter-detail-col p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

.filter-detail-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.filter-detail-col ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.filter-detail-col ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}

.filter-specs-table--equal-cols {
  table-layout: fixed;
  width: 100%;
}

.filter-specs-table--equal-cols th,
.filter-specs-table--equal-cols td {
  width: 14.28%;
  text-align: center;
  word-break: break-word;
}

.filter-specs-table.filter-specs-table--equal-cols {
  table-layout: fixed !important;
  width: 100%;
}

.filter-specs-table--stacked {
  margin-top: 12px;
}

.filter-wide-table-wrap {
  padding: 0 28px 20px;
  overflow-x: auto;
}

.filter-specs-table--wide {
  width: 100%;
  table-layout: auto;
}

.filter-specs-table--wide th,
.filter-specs-table--wide td {
  min-width: 100px;
  vertical-align: top;
}

.filter-extended-section .filter-specs-table--wide {
  margin-bottom: 24px;
  table-layout: fixed;
}

.filter-extended-section .filter-specs-table--wide th,
.filter-extended-section .filter-specs-table--wide td {
  width: 33.33%;
}

.filter-extended-section {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.filter-extended-section p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.filter-extended-section h4 {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 24px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.filter-extended-section ul {
  padding: 0;
  margin-bottom: 14px;
  list-style: none;
}

.filter-extended-section ul li {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.filter-extended-section ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}

.filter-consultation-note {
  background: var(--red-subtle);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  font-size: 15px;
  margin-top: 16px;
  margin-bottom: 0;
}

.filter-product-foot {
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.filter-product--soon .filter-product-foot {
  background: var(--light-bg);
}

.pocket-grade-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  margin: 8px 0;
}

.pocket-grade-divider::before,
.pocket-grade-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.pocket-grade-divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.filter-product--soon .filter-detail-col {
  opacity: 0.85;
}

/* ===== FILTER PILLS BAR ===== */
.filter-pills-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.filter-pill {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}

.filter-pill:hover {
  border-color: var(--red);
  color: var(--red);
}

.filter-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.filter-pills-count {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: var(--text-mid);
}

.filter-pills-count strong {
  color: var(--text-dark);
  font-weight: 700;
}

.filter-product.filter-hidden {
  display: none;
}

@media (max-width: 600px) {
  .filter-pills-bar {
    top: 56px;
  }
  .filter-pill {
    font-size: 12px;
    padding: 7px 14px;
  }
}

@media (max-width: 900px) {
  .filter-product-layout {
    grid-template-columns: 1fr;
  }

  .filter-img-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: 160px;
  }

  .filter-product-details {
    grid-template-columns: 1fr;
  }

  .filter-detail-col + .filter-detail-col {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .filter-product-top {
    flex-wrap: wrap;
  }

  .filter-product-badge {
    margin-left: 0;
  }
}

/* ===== PRODUCTION EXPERTISE PROSE ===== */
.expertise-block p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.expertise-block p:last-child {
  margin-bottom: 0;
}

/* ===== APPROACH ACCORDION TIMELINE ===== */
.atl-wrap {
  position: relative;
  padding-left: 56px;
  max-width: 700px;
}

.atl-line {
  position: absolute;
  left: 28px;
  top: 17px;
  bottom: 17px;
  width: 2px;
  background: var(--red);
  opacity: 0.18;
}

.atl-item {
  position: relative;
  margin-bottom: 12px;
}

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

.atl-dot {
  position: absolute;
  left: -45px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition:
    background var(--transition),
    color var(--transition);
}

.atl-dot span {
  font-family: var(--ff-head, "Raleway", sans-serif);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--red);
  transition: color var(--transition);
}

.atl-item.atl-open .atl-dot {
  background: var(--red);
}

.atl-item.atl-open .atl-dot span {
  color: #fff;
}

.atl-panel {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.atl-item.atl-open .atl-panel {
  border-color: rgba(139, 26, 26, 0.25);
  box-shadow: var(--shadow-sm);
}

.atl-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.atl-trigger:hover .atl-heading {
  color: var(--red);
}

.atl-heading {
  font-family: var(--ff-head, "Raleway", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}

.atl-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  display: inline-block;
}

.atl-item.atl-open .atl-icon {
  transform: rotate(45deg);
}

.atl-expand {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.35s ease;
  padding: 0 22px;
}

.atl-item.atl-open .atl-expand {
  max-height: 220px;
  padding: 0 22px 20px;
}

.atl-expand p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

@media (max-width: 600px) {
  .atl-wrap {
    padding-left: 44px;
  }
  .atl-line {
    left: 21px;
  }
  .atl-dot {
    left: -36px;
    width: 28px;
    height: 28px;
    top: 16px;
  }
  .atl-dot span {
    font-size: 0.6rem;
  }
}

/* ===== MAGNET SPECS — SECTION LABEL & SUB TEXT ===== */
.sub-section-label {
  margin-bottom: 32px;
}

.sub-section-label .category-label {
  display: inline-block;
  margin-bottom: 8px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 680px;
  margin-top: 10px;
}

/* ===== MAGNET SPECS — ACCORDION ===== */
.spec-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.spec-details {
  border: 1px solid var(--border);
  background: var(--off-white);
}

.spec-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--border);
}

/* ===== MAGNET SPECS — TABLE ===== */
.spec-table-wrap {
  overflow-x: auto;
  padding: 0 22px 22px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-family: "Mulish", sans-serif;
  margin-top: 18px;
}

.spec-table thead tr {
  background: #e8e8e8;
}

.spec-table thead th {
  color: var(--text-dark);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 11px 14px;
  text-align: left;
  white-space: nowrap;
}

.spec-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.spec-table tbody tr:last-child {
  border-bottom: none;
}

.spec-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.025);
}

.spec-table tbody td {
  padding: 10px 14px;
  color: var(--text-dark);
  vertical-align: middle;
}

.spec-table tbody td strong {
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 768px) {
  .spec-summary {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .spec-table-wrap {
    padding: 0 16px 18px;
  }

  .spec-table thead th,
  .spec-table tbody td {
    padding: 9px 10px;
    font-size: 0.8rem;
  }
}

/* ===== SHAPE CARD IMAGE ===== */
.sub-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #efefef;
  margin-bottom: 16px;
}

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

/* ===== MOLDING PRODUCT BROWSER ===== */
.mpb-section {
  background: var(--off-white);
}

.mpb-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

/* Sidebar */
.mpb-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  border: 1px solid var(--border);
  background: var(--white);
}

.mpb-filter-list {
  display: flex;
  flex-direction: column;
}

.mpb-filter-btn {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-family: "Mulish", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  background: none;
  border: none;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
  line-height: 1.4;
}

.mpb-filter-list li:last-child .mpb-filter-btn {
  border-bottom: none;
}

.mpb-filter-btn:hover {
  color: var(--red);
  background: var(--red-subtle);
}

.mpb-filter-btn.active {
  color: var(--red);
  font-weight: 700;
  border-left-color: var(--red);
  background: var(--red-subtle);
}

/* Product Grid */
.mpb-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mpb-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
  cursor: default;
}

.mpb-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.mpb-card.hidden {
  display: none;
}

.mpb-card-img {
  aspect-ratio: 1 / 1;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.mpb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

/* Clickable cards (those with real images) */
.mpb-card[data-images] {
  cursor: pointer;
}

.mpb-card[data-images] .mpb-card-img::after {
  content: "⤢";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  background: rgba(139, 26, 26, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mpb-card[data-images]:hover .mpb-card-img::after {
  opacity: 1;
}

.mpb-card[data-images]:hover .mpb-card-img img {
  transform: scale(1.05);
}

/* Image count badge — shown on multi-image cards */
.mpb-img-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(10, 10, 10, 0.72);
  color: var(--white);
  font-family: "Mulish", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 8px 3px 6px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 2;
  line-height: 1;
}

.mpb-img-count::before {
  content: "+";
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.mpb-card-name {
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  border-top: 1px solid var(--border);
}

/* Mobile: sidebar becomes horizontal pills */
@media (max-width: 900px) {
  .mpb-layout {
    flex-direction: column;
    gap: 24px;
  }

  .mpb-sidebar {
    width: 100%;
    position: static;
    border: none;
    background: none;
  }

  .mpb-filter-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
  }

  .mpb-filter-btn {
    white-space: nowrap;
    padding: 9px 18px;
    border: 1px solid var(--border);
    border-left-width: 1px;
    border-radius: 2px;
    font-size: 0.85rem;
  }

  .mpb-filter-btn.active {
    border-color: var(--red);
  }

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

@media (max-width: 480px) {
  .mpb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ===== MOLDING — AUTOMOTIVE FLAT IMAGE GRID ===== */
.mpb-auto-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.mpb-auto-grid.active {
  display: grid;
}

.mpb-auto-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  background: var(--clr-off-white);
}

.mpb-auto-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  transform-origin: center center;
}

.mpb-auto-tile.zoomed {
  z-index: 10;
  cursor: zoom-out;
}

.mpb-auto-tile.zoomed img {
  transform: scale(2);
}

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

@media (max-width: 480px) {
  .mpb-auto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ===== FILTER PAGE — PRODUCT IMAGES ===== */

/* Single product image (Filters 1–5) */
.filter-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 220px;
  display: block;
  padding: 8px;
}

/* Multi-image layout (Filters 7–8) */
.filter-multi-img {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-main-img-wrap {
  position: relative;
  width: 100%;
  cursor: zoom-in;
  overflow: hidden;
  background: var(--light-bg);
}

.filter-main-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
  padding: 6px;
}

.filter-main-img-wrap:hover .filter-main-img {
  opacity: 0.92;
}

.filter-main-hint {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 9px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.85);
  padding: 2px 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.filter-main-img-wrap:hover .filter-main-hint {
  opacity: 1;
}

/* Thumbnail strip */
.filter-thumb-strip {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-thumb {
  width: 52px;
  height: 44px;
  object-fit: cover;
  border: 2px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    opacity 0.18s ease;
  opacity: 0.65;
  background: var(--light-bg);
}

.filter-thumb:hover {
  opacity: 1;
  border-color: var(--red);
}

.filter-thumb.active {
  border-color: var(--red);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-main-img {
    height: 160px;
  }
  .filter-product-img {
    max-height: 160px;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 4rem 0 0;
  background: var(--dark);
}

.map-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--off-white);
  margin: 0.5rem 0 0.5rem;
  font-family: "Raleway", sans-serif;
}

.map-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.6;
}

.map-embed {
  width: 100%;
  line-height: 0;
  border-top: 2px solid var(--red);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 768px) {
  .map-embed iframe {
    height: 280px;
  }

  .map-heading {
    font-size: 1.4rem;
  }
}
