/* ===========================================================================
   RAJVI PACKAGING â€” SHARED STYLESHEET
   Contains: CSS variables, reset, base styles, navbar, mobile nav, footer,
   buttons, full-page/inner-page overlay system, fonts, animations, and all
   component styles used across every page of the site.
   Extracted verbatim from the original single-file index.html (3 combined
   <style> blocks) â€” no values, colors, or rules were changed.
   =========================================================================== */

.hero-overlay {
  background: linear-gradient(to right,
      rgba(240, 243, 235, 0.92) 10%,
      rgba(240, 243, 235, 0.75) 30%,
      rgba(240, 243, 235, 0.25) 60%,
      rgba(240, 243, 235, 0.0) 100%)
}

/* ===== ABOUT LEARN MORE LINK ===== */
.about-learn-more-wrap {
  margin-top: 32px;
}

.about-learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold, #c9960a);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 3px;
  transition: border-color 0.2s, gap 0.2s;
}

.about-learn-more-link:hover {
  gap: 14px;
}

.about-learn-more-arrow {
  transition: transform 0.2s;
}

.about-learn-more-link:hover .about-learn-more-arrow {
  transform: translateX(4px);
}


/* ===== FULL PAGE OVERLAYS ===== */
.full-page {
  position: fixed;
  inset: 0;
  background: #0a1a12;
  z-index: 900;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.full-page.open {
  display: block;
  opacity: 1;
}

.fp-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 249, 245, 0.97);
  backdrop-filter: blur(16px);
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.fp-header-left {
  display: flex;
  align-items: center;
}

.fp-header-logo {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.fp-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.fp-header-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

/* FULL PAGE FOOTER */
.fp-footer {
  background: #060f09;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px;
  margin-top: 80px;
}

.fp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.fp-footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.fp-footer-brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.fp-footer-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.fp-footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.8);
  margin-bottom: 16px;
}

.fp-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-footer-col-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.fp-footer-col-links a:hover {
  color: #c9960a;
}

.fp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fp-footer-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== ABOUT US PAGE ===== */
/* Hero */
.about-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 80px 60px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #051209 0%, #0a2018 50%, #061510 100%);
}

.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 150, 10, 0.08) 0%, transparent 65%);
}

.about-hero-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.8);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 16px;
}

.about-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-hero-title span {
  color: #c9960a;
  display: block;
}

.about-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 20px;
}

.about-hero-deco {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 150, 10, 0.1);
  border-radius: 50%;
}

.about-hero-deco::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 150, 10, 0.06);
  border-radius: 50%;
}

/* Company Story */
.about-story {
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-img-wrap {
  position: relative;
}

.about-story-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.about-story-img-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(201, 150, 10, 0.25);
  border-radius: 4px;
  pointer-events: none;
}

.about-story-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.8);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 14px;
}

.about-story-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-story-body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.about-story-body p {
  margin-bottom: 18px;
}

/* Mission & Vision */
.about-mv {
  padding: 0 60px 80px;
  background: rgba(0, 0, 0, 0.2);
}

.about-section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.8);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
}

.about-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.mv-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mv-premium-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.mv-premium-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mv-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #c9960a, rgba(201, 150, 10, 0.2));
}

.mv-premium-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(201, 150, 10, 0.08);
  position: absolute;
  top: 24px;
  right: 32px;
  line-height: 1;
}

.mv-premium-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9960a;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 16px;
}

.mv-premium-heading {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.mv-premium-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}

/* Product Showcase */
.about-product-showcase {
  padding: 0 60px 80px;
}

.about-product-showcase-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 21 / 8;
}

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

.about-product-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 61, 44, 0.6) 0%, rgba(10, 61, 44, 0.1) 55%, transparent 100%);
}

.about-product-showcase-caption {
  position: absolute;
  left: 40px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-product-showcase-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-product-showcase-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .about-product-showcase {
    padding: 0 24px 60px;
  }

  .about-product-showcase-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .about-product-showcase-caption {
    left: 20px;
    bottom: 20px;
  }
}


/* Why Rajvi Section */
.about-why {
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: #fbfcfb;
}

/* Background Decorative Elements */
.why-deco-plus {
  position: absolute;
  font-family: monospace;
  font-size: 24px;
  color: rgba(10, 61, 44, 0.08);
  font-weight: 300;
  pointer-events: none;
  user-select: none;
}
.why-deco-plus.plus-left {
  top: 60px;
  left: 30px;
}
.why-deco-plus.plus-right {
  bottom: 80px;
  right: 40px;
}
.why-deco-dots-pattern {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 90px;
  height: 60px;
  pointer-events: none;
  background-image: radial-gradient(rgba(10, 61, 44, 0.12) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.8;
}

/* Section Header */
.why-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.why-header-left {
  flex: 0 0 auto;
}
.why-section-label {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.why-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--g1);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.why-section-title .title-dot {
  color: var(--gold);
}
.why-title-underline {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.why-title-line {
  width: 64px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.why-title-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 6px;
}
.why-header-right {
  flex: 0 1 540px;
}
.why-header-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sub);
  margin: 0;
}

/* Carousel Layout */
.why-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  padding: 30px 0;
}
.why-carousel-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 30px 0;
  margin: -30px 0;
}

.why-carousel-track::-webkit-scrollbar {
  display: none;
}


/* Carousel Card (Sitting directly in the section without green frame/box) */
.why-card {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  display: flex;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  min-height: 460px;
}

/* Card Left - Content */
.why-card-left {
  flex: 1 1 55%;
  padding: 56px 48px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 3;
  position: relative;
  background: transparent;
}

/* Card divider arch effect (blending with off-white background) */
.why-card-left::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -140px;
  width: 280px;
  height: 140%;
  background: #fbfcfb;
  border-radius: 50%;
  z-index: 1;
}

.why-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}
.why-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(10, 61, 44, 0.05);
  border: 1.5px solid rgba(10, 61, 44, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover .why-card-icon {
  transform: scale(1.05) rotate(4deg);
  border-color: var(--gold);
  background: rgba(201, 150, 10, 0.15);
}
.why-card-badge {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(10, 61, 44, 0.45);
  border: 1px solid rgba(10, 61, 44, 0.15);
  border-radius: 20px;
  padding: 6px 16px;
  background: rgba(10, 61, 44, 0.02);
  letter-spacing: 0.05em;
}
.why-card-badge span {
  color: var(--gold);
}

.why-card-body {
  position: relative;
  z-index: 3;
  flex-grow: 1;
}
.why-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--g1);
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}
.why-card-title-underline {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.why-card-title-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 1.5px;
}
.why-card-title-dot {
  width: 4.5px;
  height: 4.5px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 5px;
}
.why-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--sub);
  margin: 0;
  max-width: 520px;
}

.why-card-checklist {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 61, 44, 0.05);
  border: 1px solid rgba(10, 61, 44, 0.08);
  border-radius: 40px;
  padding: 8px 18px;
  width: fit-content;
  position: relative;
  z-index: 3;
  margin-top: 36px;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201, 150, 10, 0.15);
  border: 1px solid rgba(201, 150, 10, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.check-icon svg {
  width: 12px;
  height: 12px;
}
.checklist-items {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--g1);
  letter-spacing: 0.02em;
}

/* Card Right - Image & Mask */
.why-card-right {
  flex: 1 1 45%;
  position: relative;
  overflow: hidden;
  background: #fbfcfb;
  border-radius: 24px;
}
.why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover .why-card-img {
  transform: scale(1.04);
}

.why-mask-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.why-mask-circle-1 {
  position: absolute;
  top: -20%;
  left: -150px;
  width: 300px;
  height: 140%;
  border-radius: 50%;
  border-right: 1.5px solid rgba(201, 150, 10, 0.6);
}
.why-mask-circle-2 {
  position: absolute;
  top: -25%;
  left: -180px;
  width: 340px;
  height: 150%;
  border-radius: 50%;
  border-right: 1px solid rgba(10, 61, 44, 0.15);
}

.why-mask-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: 55%;
  right: -5px;
  box-shadow: 0 0 10px rgba(201, 150, 10, 0.8);
}

/* Controls & Dots Bottom Bar */
.why-carousel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding: 0 10px;
}
.why-carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8e2dd;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-dot.active {
  width: 36px;
  border-radius: 5px;
  background: var(--gold);
}

.why-carousel-controls {
  display: flex;
  gap: 12px;
}
.why-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-btn-prev {
  background: #ffffff;
  border: 1px solid #dcdfdc;
  color: var(--g1);
}
.why-btn-prev:hover {
  background: #f4f6f5;
  border-color: var(--gold);
  color: var(--gold);
}
.why-btn-next {
  background: var(--g1);
  border: 1px solid var(--g1);
  color: #ffffff;
}
.why-btn-next:hover {
  background: #082d20;
  border-color: #082d20;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .why-card {
    min-height: 420px;
  }
  .why-card-left {
    padding: 44px 36px;
  }
}

@media (max-width: 768px) {
  .about-why {
    padding: 60px 24px;
  }
  .why-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }
  .why-section-title {
    font-size: 34px;
  }
  .why-card {
    flex-direction: column;
    min-height: auto;
  }
  .why-card-left {
    flex: 1 1 auto;
    padding: 36px 28px;
  }
  .why-card-left::after {
    display: none;
  }
  .why-card-right {
    height: 220px;
    flex: 0 0 220px;
    width: 100%;
  }
  .why-mask-container {
    display: none;
  }
  .why-card-name {
    font-size: 24px;
  }
  .why-card-checklist {
    margin-top: 24px;
  }
}

/* Manufacturing Capability Section */
.about-mfg {
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: #fbfcfb;
}

/* Background decorations */
.mfg-deco-plus {
  position: absolute;
  font-family: monospace;
  font-size: 24px;
  color: rgba(10, 61, 44, 0.06);
  font-weight: 300;
  pointer-events: none;
  user-select: none;
}
.mfg-deco-plus.plus-left {
  bottom: 40px;
  left: 30px;
}
.mfg-deco-plus.plus-right {
  top: 60px;
  right: 40px;
}
.mfg-deco-dots-pattern {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 90px;
  height: 60px;
  pointer-events: none;
  background-image: radial-gradient(rgba(10, 61, 44, 0.08) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.8;
}

/* Section Header */
.mfg-section-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.mfg-section-label {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.mfg-section-label .label-dot {
  width: 5px;
  height: 5px;
  background: #0a3d2c;
  border-radius: 50%;
  margin-left: 6px;
}
.mfg-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--g1);
  margin: 0;
  letter-spacing: -0.02em;
}
.mfg-title-underline {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}
.mfg-title-line {
  height: 4px;
  border-radius: 2px;
}
.mfg-line-green {
  width: 44px;
  background: var(--g1);
}
.mfg-line-gold {
  width: 22px;
  background: var(--gold);
}

/* Grid Layout */
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Redesigned Card */
.mfg-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e8e4;
  box-shadow: 0 10px 30px rgba(10, 61, 44, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  min-height: 295px;
}
.mfg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 61, 44, 0.08);
}

/* Card Left - Content */
.mfg-card-left {
  flex: 1 1 54%;
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  background: #ffffff;
  z-index: 2;
}

/* Slanted Corner Ribbon Badge */
.mfg-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 18px;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 0 0 12px 0;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.mfg-card-badge.badge-green {
  background: #0e3c2b;
}
.mfg-card-badge.badge-gold {
  background: var(--gold);
}

.mfg-card-icon-wrap {
  margin-top: 8px;
  margin-bottom: 18px;
}
.mfg-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f4f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(10, 61, 44, 0.06);
}
.mfg-card-icon svg {
  width: 24px;
  height: 24px;
}

.mfg-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--g1);
  margin: 0 0 8px 0;
}
.mfg-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--sub);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Learn More Link */
.mfg-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--g1);
  text-decoration: none;
  transition: color 0.3s;
  width: fit-content;
}
.mfg-card-link:hover {
  color: var(--gold);
}
.mfg-link-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mfg-card-link:hover .mfg-link-arrow {
  transform: translateX(4px);
  background: #0a3d2c;
}
.mfg-link-arrow svg {
  width: 12px;
  height: 12px;
}

/* Card Right - Image & Mask divider */
.mfg-card-right {
  flex: 1 1 46%;
  position: relative;
  overflow: hidden;
  background: #e8edea;
  z-index: 1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
}
.mfg-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mfg-card:hover .mfg-card-img {
  transform: scale(1.05);
}

.mfg-card-chevron-svg {
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: 22px;
  z-index: 3;
  pointer-events: none;
}
.mfg-card-chevron-svg.chevron-green {
  color: #0e3c2b;
}
.mfg-card-chevron-svg.chevron-gold {
  color: var(--gold);
}

/* Bottom Info Bar */
.mfg-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 61, 44, 0.025);
  border: 1px solid rgba(10, 61, 44, 0.08);
  border-radius: 100px;
  padding: 16px 40px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
.mfg-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mfg-bar-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0a3d2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.mfg-bar-check svg {
  width: 13px;
  height: 13px;
}
.mfg-bar-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--g1);
  margin: 0;
}
.mfg-bar-text strong {
  color: var(--g1);
  font-weight: 700;
}
.mfg-bar-right {
  display: flex;
  align-items: center;
}
.mfg-bar-factory {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

/* Responsive CSS */
@media (max-width: 1024px) {
  .mfg-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .about-mfg {
    padding: 60px 24px;
  }
  .mfg-section-title {
    font-size: 34px;
  }
  .mfg-card {
    min-height: auto;
  }
  .mfg-card-left {
    padding: 32px 24px;
  }
  .mfg-bottom-bar {
    flex-direction: column;
    gap: 16px;
    border-radius: 24px;
    padding: 20px;
    text-align: center;
  }
  .mfg-bar-left {
    flex-direction: column;
    gap: 12px;
  }
}

/* Industries Served */
.about-industries {
  padding: 0 60px 80px;
}

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

.industry-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.industry-pill:hover {
  border-color: rgba(201, 150, 10, 0.35);
  background: rgba(201, 150, 10, 0.04);
}

.industry-pill-dot {
  width: 8px;
  height: 8px;
  background: #c9960a;
  border-radius: 50%;
  flex-shrink: 0;
}

.industry-pill-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Redesigned CTA Section with Inline Form, Google Trust Badges and Curves */
.about-contact-cta {
  position: relative;
  background: #fbfcfb;
  padding: 100px 60px 180px;
  overflow: hidden;
}

.cta-deco-plus {
  position: absolute;
  font-family: monospace;
  font-size: 24px;
  color: rgba(10, 61, 44, 0.05);
  font-weight: 300;
  pointer-events: none;
  user-select: none;
}
.cta-plus-left {
  top: 40px;
  left: 40px;
}
.cta-deco-dots {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 90px;
  height: 65px;
  pointer-events: none;
  background-image: radial-gradient(rgba(10, 61, 44, 0.07) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.8;
  z-index: 1;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Left Column */
.cta-left {
  display: flex;
  flex-direction: column;
}
.cta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.cta-badge-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.cta-badge-text {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--g1);
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.cta-title-accent {
  color: var(--gold);
}
.cta-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sub);
  margin: 0 0 36px 0;
  max-width: 540px;
}

/* Features Grid */
.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-bottom: 40px;
}
.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-feat-icon.feat-icon-green {
  background: rgba(10, 61, 44, 0.05);
  color: #0e3c2b;
  border: 1px solid rgba(10, 61, 44, 0.1);
}
.cta-feat-icon.feat-icon-gold {
  background: rgba(201, 150, 10, 0.08);
  color: var(--gold);
  border: 1px solid rgba(201, 150, 10, 0.15);
}
.cta-feat-icon svg {
  width: 18px;
  height: 18px;
}
.cta-feat-text {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--g1);
}

/* Product collage image & Google reviews badge */
.cta-image-wrap {
  position: relative;
  border-radius: 16px;
  margin-top: 10px;
}
.cta-products-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(10, 61, 44, 0.06);
}

.cta-google-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: #ffffff;
  border-radius: 120px;
  border: 1px solid #e2e8e5;
  box-shadow: 0 12px 30px rgba(10, 61, 44, 0.08);
  display: flex;
  align-items: center;
  padding: 14px 28px;
  gap: 20px;
  z-index: 10;
}
.cta-badge-glogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-gtext {
  display: flex;
  flex-direction: column;
}
.cta-gbrand {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #1f2220;
  line-height: 1.1;
}
.cta-grev {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: #76807a;
  margin-bottom: 2px;
}
.cta-gstars {
  color: #fbbc05;
  font-size: 11px;
  letter-spacing: 1px;
}
.cta-badge-divider {
  width: 1px;
  height: 32px;
  background: #e2e8e5;
}
.cta-badge-score {
  display: flex;
  flex-direction: column;
}
.cta-score-val {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--g1);
  line-height: 1.1;
}
.cta-score-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: #76807a;
}
.cta-badge-clients {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-clients-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.cta-ctext {
  display: flex;
  flex-direction: column;
}
.cta-csub {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: #76807a;
  line-height: 1.1;
}
.cta-cval {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--g1);
}

/* Right Column - Form Card */
.cta-right {
  display: flex;
  justify-content: flex-end;
}
.cta-form-card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8e5;
  box-shadow: 0 15px 45px rgba(10, 61, 44, 0.05);
  overflow: hidden;
}
.cta-form-header {
  background: #0a3d2c;
  padding: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  border-radius: 0 0 24px 24px;
  padding-bottom: 36px;
}
.cta-form-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cta-form-icon svg {
  width: 22px;
  height: 22px;
}
.cta-form-header-text {
  flex-grow: 1;
}
.cta-form-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}
.cta-form-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cta-form {
  padding: 36px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-form-field {
  position: relative;
  display: flex;
  align-items: center;
}
.cta-field-icon {
  position: absolute;
  left: 18px;
  color: #76807a;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.cta-field-icon svg {
  width: 18px;
  height: 18px;
}
.cta-form-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px 16px 48px;
  border-radius: 12px;
  border: 1px solid #d0dad5;
  background: #fbfcfb;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--g1);
  outline: none;
  transition: all 0.3s;
}
.cta-form-field input::placeholder {
  color: #8c9891;
}
.cta-form-field input:focus {
  border-color: var(--g1);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 61, 44, 0.05);
}

.cta-submit-btn {
  width: 100%;
  box-sizing: border-box;
  background: #0a3d2c;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.2s;
}
.cta-submit-btn:hover {
  background: #082f22;
}
.cta-submit-btn:active {
  transform: scale(0.99);
}
.cta-submit-arrow {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s;
  display: inline-block;
}
.cta-submit-btn:hover .cta-submit-arrow {
  transform: translateX(4px);
}

.cta-privacy-note {
  border-top: 1px solid #e8edea;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fbfcfb;
}
.cta-privacy-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(10, 61, 44, 0.05);
  color: #0e3c2b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(10, 61, 44, 0.1);
}
.cta-privacy-check svg {
  width: 10px;
  height: 10px;
}
.cta-privacy-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  line-height: 1.4;
  color: #76807a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Wave Decorator */
.cta-wave-decorator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 2;
  pointer-events: none;
}
.cta-wave-decorator svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive CTA */
@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cta-right {
    justify-content: center;
  }
  .cta-form-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-contact-cta {
    padding: 80px 24px 140px;
  }
  .cta-title {
    font-size: 36px;
  }
  .cta-desc {
    margin-bottom: 28px;
  }
  .cta-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cta-google-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .cta-badge-divider {
    width: 100%;
    height: 1px;
  }
  .cta-form-header {
    flex-direction: column;
    gap: 12px;
  }
}


/* ===== PRODUCTS CATALOGUE PAGE ===== */
.cat-hero {
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #051209 0%, #0a2018 55%, #061510 100%);
}

.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 150, 10, 0.07) 0%, transparent 60%);
}

.cat-hero-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.8);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 14px;
}

.cat-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
}

.cat-hero-title span {
  color: #c9960a;
}

.cat-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.75;
}

.cat-grid-section {
  padding: 60px 60px 100px;
}

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

.cat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  border-color: rgba(201, 150, 10, 0.4);
  background: rgba(201, 150, 10, 0.03);
}

.cat-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

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

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

.cat-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 18, 9, 0.7), transparent 50%);
}

.cat-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 28px 28px 18px;
  margin-bottom: 0;
}

.cat-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.cat-card-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #c9960a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  align-self: flex-end;
}

.cat-card:hover .cat-card-link {
  gap: 12px;
}


/* ===== SOLUTION INNER PAGES (ENHANCED) ===== */
.sol-page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 100px 60px 70px;
  overflow: hidden;
}

.sol-page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #051209 0%, #091d14 55%, #051209 100%);
}

.sol-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 150, 10, 0.09), transparent 60%);
}

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

.sol-page-hero-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.6);
  font-family: 'Poppins', sans-serif;
  border: 1px solid rgba(201, 150, 10, 0.2);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.sol-page-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 20px;
  word-break: break-word;
}

.sol-page-hero-title span {
  color: #c9960a;
}

.sol-page-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  line-height: 1.8;
}

/* Overview */
.sol-page-overview {
  padding: 80px 60px;
}

.sol-page-section-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.7);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
}

.sol-page-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.sol-page-body-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
  max-width: 800px;
}

/* Process Timeline */
.sol-page-process {
  padding: 0 60px 80px;
}

.process-timeline {
  max-width: 760px;
  margin-top: 40px;
}

.process-step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.process-step-num {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(201, 150, 10, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #c9960a;
  flex-shrink: 0;
}

.process-step-line {
  flex: 1;
  width: 1px;
  background: rgba(201, 150, 10, 0.15);
  margin-top: 8px;
}

.process-step:last-child .process-step-line {
  display: none;
}

.process-step-right {
  padding-top: 10px;
}

.process-step-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* Industries & Applications */
.sol-page-industries {
  padding: 0 60px 80px;
}

.sol-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.sol-industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px;
  transition: border-color 0.3s, background 0.3s;
}

.sol-industry-card:hover {
  border-color: rgba(201, 150, 10, 0.3);
  background: rgba(201, 150, 10, 0.03);
}

.sol-industry-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sol-industry-name::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #c9960a;
  flex-shrink: 0;
}

.sol-industry-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sol-industry-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sol-industry-row-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.65);
  min-width: 72px;
  padding-top: 2px;
  flex-shrink: 0;
}

.sol-industry-row-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* Related Solutions */
.sol-page-related {
  padding: 0 60px 80px;
}

.sol-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.sol-related-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.sol-related-card:hover {
  border-color: rgba(201, 150, 10, 0.4);
  background: rgba(201, 150, 10, 0.04);
}

.sol-related-card.active-sol {
  border-color: rgba(201, 150, 10, 0.5);
  background: rgba(201, 150, 10, 0.06);
}

.sol-related-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(201, 150, 10, 0.5);
  margin-bottom: 14px;
}

.sol-related-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.sol-related-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

.sol-related-link {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #c9960a;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.sol-related-card:hover .sol-related-link {
  gap: 12px;
}

/* ===== PRODUCT INNER PAGE - ENHANCED STRUCTURE ===== */
.prod-page-case-studies {
  padding: 0 0 40px;
}

.prod-case-study-section {
  display: grid;
  gap: 0;
}

.prod-cs-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prod-cs-item.reverse {
  direction: rtl;
}

.prod-cs-item.reverse>* {
  direction: ltr;
}

.prod-cs-img {
  overflow: hidden;
  position: relative;
  min-height: 280px;
  padding: 24px 0;
}

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

.prod-cs-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 18, 9, 0.4), transparent);
}

.prod-cs-item.reverse .prod-cs-img-overlay {
  background: linear-gradient(to left, rgba(5, 18, 9, 0.4), transparent);
}

.prod-cs-content {
  padding: 48px 60px;
  background: rgba(255, 255, 255, 0.02);
}

.prod-cs-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.7);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.prod-cs-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.3;
}

.prod-cs-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prod-cs-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prod-cs-row-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Poppins', sans-serif;
}

.prod-cs-row-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.prod-cs-result {
  margin-top: 20px;
  background: rgba(201, 150, 10, 0.08);
  border-left: 3px solid #c9960a;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Product page standalone case studies section */
.prod-page-cs-section {
  padding: 60px 60px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.prod-page-cs-header {
  margin-bottom: 32px;
}

.prod-page-cs-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 150, 10, 0.7);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.prod-page-cs-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #fff;
}

@media(max-width:768px) {
  .prod-page-cs-section {
    padding: 40px 16px 32px;
  }
}

/* Explore More Products */
.prod-explore-more {
  padding: 60px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prod-explore-title {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 28px;
}

.prod-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.prod-explore-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.prod-explore-card:hover {
  border-color: rgba(201, 150, 10, 0.4);
  background: rgba(201, 150, 10, 0.04);
}

.prod-explore-card-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  padding: 12px 0;
  opacity: 0.8;
}

.prod-explore-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.prod-explore-card-link {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #c9960a;
  letter-spacing: 0.06em;
}

@media(max-width:768px) {
  .fp-header {
    padding: 0 16px;
    height: 58px
  }

  .fp-header-nav {
    gap: 16px
  }

  .fp-header-nav a {
    font-size: 12px
  }

  .about-page-hero,
  .cat-hero,
  .sol-page-hero {
    padding: 80px 20px 40px
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px
  }

  .about-mv,
  .about-why,
  .about-mfg,
  .about-industries,
  .about-contact-cta {
    padding-left: 20px;
    padding-right: 20px
  }

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

  .mfg-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .cat-grid-section {
    padding: 40px 20px 60px
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr
  }

  .sol-page-overview,
  .sol-page-process,
  .sol-page-industries,
  .sol-page-related,
  .sol-page-related {
    padding-left: 20px;
    padding-right: 20px
  }

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

  .sol-related-grid {
    grid-template-columns: 1fr
  }

  .prod-cs-item {
    grid-template-columns: 1fr
  }

  .prod-explore-grid {
    grid-template-columns: 1fr 1fr
  }

  .blogs-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .fp-footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

.why-item.variant-item {
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  border: 1.5px solid transparent;
}

.why-item.variant-item:hover {
  border-color: var(--gold, #c9960a);
}

.why-item.variant-item.active {
  border-color: var(--gold, #c9960a);
  background: rgba(201, 150, 10, 0.07);
}

/* CHANGE 4: Blog arrow nav â€” side layout */
.blogs-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.blogs-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.blogs-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 150, 10, 0.5);
  background: transparent;
  color: #c9960a;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.blogs-nav-btn:hover {
  background: rgba(201, 150, 10, 0.12);
}

.blogs-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.blogs-nav-dots {
  display: none;
}

.blog-card {
  cursor: pointer;
}

/* Blog detail overlay */
#inner-blog-detail {
  position: fixed;
  inset: 0;
  background: #0a1a12;
  z-index: 1000;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

#inner-blog-detail.open {
  display: block;
  opacity: 1;
}

.blog-detail-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 26, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(201, 150, 10, 0.15);
}

.blog-detail-back {
  background: none;
  border: 1.5px solid rgba(201, 150, 10, 0.4);
  color: #c9960a;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.blog-detail-back:hover {
  background: rgba(201, 150, 10, 0.1);
}

.blog-detail-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 60px 100px;
}

.blog-detail-category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9960a;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 14px;
}

.blog-detail-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-detail-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-detail-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
  display: block;
}

.blog-detail-content {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

.blog-detail-content p {
  margin-bottom: 22px;
}

/* CHANGE 5: Case study detail overlay */
.case-study-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#inner-case-study {
  position: fixed;
  inset: 0;
  background: #0a1a12;
  z-index: 1100;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.cs-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 26, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(201, 150, 10, 0.15);
}

.cs-back {
  background: none;
  border: 1.5px solid rgba(201, 150, 10, 0.4);
  color: #c9960a;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.cs-back:hover {
  background: rgba(201, 150, 10, 0.1);
}

.cs-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 60px 100px;
}

.cs-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9960a;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.cs-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.cs-industry-tag {
  display: inline-block;
  background: rgba(201, 150, 10, 0.15);
  color: #c9960a;
  border: 1px solid rgba(201, 150, 10, 0.3);
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.cs-section {
  margin-bottom: 36px;
}

.cs-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-section-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.cs-result-box {
  background: rgba(201, 150, 10, 0.08);
  border: 1px solid rgba(201, 150, 10, 0.25);
  border-left: 3px solid #c9960a;
  border-radius: 6px;
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.cs-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.cs-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 18px 20px;
}

.cs-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #c9960a;
  margin-bottom: 4px;
}

.cs-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media(max-width:600px) {
  .cs-stats-grid {
    grid-template-columns: 1fr
  }

  .blog-detail-header,
  .cs-header {
    padding: 14px 16px
  }

  .blog-detail-body,
  .cs-body {
    padding: 32px 16px 80px
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .inner-page-header {
    padding: 0 16px;
    height: 58px;
  }

  .inner-page-header-nav {
    gap: 12px;
  }

  .inner-page-header-nav a {
    font-size: 11px;
  }

  .inner-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .inner-info {
    width: 100% !important;
    height: auto !important;
    overflow-y: visible !important;
    padding: 24px 16px 40px !important;
  }

  .inner-product-title {
    font-size: 22px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .inner-back-header {
    padding: 7px 14px !important;
    font-size: 11px !important;
  }

  .inner-hero {
    padding: 70px 20px 40px !important;
  }

  .inner-hero-title {
    font-size: clamp(28px, 8vw, 48px) !important;
  }

  .inner-body {
    padding: 24px 16px 60px !important;
  }

  .case-studies-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .app-tags {
    gap: 8px !important;
  }

  .app-tag {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  .conveyor-track {
    gap: 12px !important;
    padding: 0 16px !important;
  }

  .prod-cat {
    min-width: 140px !important;
  }
}

@media (max-width: 480px) {
  .inner-product-title {
    font-size: 20px !important;
  }

  .inner-info {
    padding: 20px 12px 40px !important;
  }

  .why-item {
    padding: 14px !important;
  }

  .case-study-card {
    padding: 16px !important;
  }
}

:root {
  --g1: #0A3D2C;
  --g2: #0F5240;
  --g3: #166B52;
  --gold: #C9960A;
  --gold-l: #E8B020;
  --gold-dim: rgba(201, 150, 10, 0.15);
  --bg: #F4F9F5;
  --bg2: #EDF5EE;
  --border: rgba(0, 0, 0, 0.08);
  --text: #0A0A0A;
  --sub: #1A1A1A;
  --muted: #3A3A3A;
  --white: #FFFFFF;
  --max-w: 1300px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em
}

/* === BACKGROUND === */
/* Grid lines: removed entirely */
body::before {
  display: none;
}

/* Green radial tint â€” homepage only (index.html body has no .standalone class) */
body:not(.standalone)::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 72% 58% at 50% 46%, rgba(168, 218, 181, 0.07) 0%, rgba(168, 218, 181, 0.03) 55%, transparent 75%);
  background-size: 100% 100%;
  background-position: 0 0;
}

/* Standalone pages get no tint at all */
body.standalone::after {
  display: none;
}

/* Scattered coordinate labels rendered as a canvas overlay by JS */


/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 249, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .4s, box-shadow .4s;
  border-bottom: 1px solid transparent
}

header.scrolled {
  background: rgba(244, 249, 245, 0.98);
  box-shadow: 0 1px 0 var(--border);
  border-bottom-color: var(--border)
}

.logo {
  display: flex;

  align-items: center;
  gap: 14px;
  text-decoration: none
}

.logo-img {
  padding: 4px 5px;
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 14px
}

.logo-box {
  width: 30px;
  height: 30px;
  background: var(--g1);
  position: relative;
  flex-shrink: 0
}

.logo-box::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--g3);
  clip-path: polygon(0 100%, 50% 0%, 100% 100%)
}

.logo-box::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px solid var(--gold);
  opacity: 0.6
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--g1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase
}

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

nav a {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .35s cubic-bezier(.4, 0, .2, 1)
}

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

nav a:hover,
nav a.active {
  color: var(--g1)
}

.nav-cta {
  background: var(--g1) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  font-size: 12px !important;
  border-radius: 2px
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  background: var(--g2) !important;
  color: var(--white) !important
}

.sect-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.sect-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  border: none;
  position: relative;
  overflow: hidden
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g3);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.btn-primary:hover::before {
  transform: translateX(0)
}

.btn-primary span {
  position: relative;
  z-index: 1
}

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

.btn-outline:hover {
  background: var(--g1);
  color: var(--white)
}

.btn-arrow {
  font-size: 18px;
  line-height: 1
}

.prod-cat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: opacity .35s;
  z-index: 0
}

.prod-cat:hover .prod-cat-icon-img {
  opacity: 1
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s cubic-bezier(.4, 0, .2, 1), transform .75s cubic-bezier(.4, 0, .2, 1)
}

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

.rd1 {
  transition-delay: .1s
}

.rd2 {
  transition-delay: .2s
}

.rd3 {
  transition-delay: .3s
}

.rd4 {
  transition-delay: .4s
}

/* â”€â”€ HERO WRAPPER â”€â”€ */
#hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding-top: 18px;
  overflow: hidden;
  background: var(--bg);
}

/* â”€â”€ FULL BACKGROUND VIDEO â”€â”€ */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right,
      rgba(244, 249, 245, 0.97) 0%,
      rgba(244, 249, 245, 0.92) 30%,
      rgba(244, 249, 245, 0.65) 52%,
      rgba(244, 249, 245, 0.18) 72%,
      rgba(244, 249, 245, 0.04) 100%);
}

.hero-left {
  width: 50%;
  padding: 60px 60px 48px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-tag-line {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-tag-line::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.hero-h1 em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--sub);
  font-weight: 400;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tech-label {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10, 61, 44, 0.22);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
}

.hero-tech-label::before {
  content: '';
  width: 3px;
  height: 3px;
  background: rgba(201, 150, 10, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

.htl1 {
  bottom: 80px;
  left: 64px;
}

.htl2 {
  bottom: 120px;
  left: 260px;
}

.hero-crosshair {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 1;
  opacity: 0.3;
}

.hero-crosshair::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(10, 61, 44, 0.4);
  transform: translateY(-50%);
}

.hero-crosshair::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(10, 61, 44, 0.4);
  transform: translateX(-50%);
}

.hero-crosshair-ring {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(10, 61, 44, 0.3);
  border-radius: 50%;
}

.hero-right {
  width: 50%;
  position: relative;
  z-index: 3;
}

#about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 80px 0
}

#about::before {
  display: none;
}

.about-inner {
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1
}

.about-heading {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.0;
  margin-bottom: 16px
}

.about-heading span {
  color: var(--gold);
  display: block
}

.about-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--sub);
  font-weight: 400;
  margin-bottom: 20px
}

.about-body p {
  margin-bottom: 14px
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 24px
}

.mv-item {
  padding: 22px 24px;
  position: relative
}

.mv-item:first-child {
  border-right: 1px solid var(--border)
}

.mv-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height .5s cubic-bezier(.4, 0, .2, 1)
}

.mv-item:hover::before {
  height: 100%
}

.mv-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px
}

.mv-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sub);
  font-weight: 400
}

.about-video-wrap {
  position: relative;
  width: 100%
}

.about-video-holder {
  width: 100%;
  aspect-ratio: 4/5;
  background: #0a0a0a;
  border: 1px solid rgba(10, 61, 44, 0.12);
  position: relative;
  overflow: hidden;
  display: block
}

.about-video-frame {
  position: absolute;
  inset: 16px;
  pointer-events: none
}

.about-video-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-top: 1.5px solid rgba(201, 150, 10, 0.5);
  border-left: 1.5px solid rgba(201, 150, 10, 0.5)
}

.about-video-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-bottom: 1.5px solid rgba(201, 150, 10, 0.5);
  border-right: 1.5px solid rgba(201, 150, 10, 0.5)
}

.about-video-frame-tr {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-top: 1.5px solid rgba(201, 150, 10, 0.5);
  border-right: 1.5px solid rgba(201, 150, 10, 0.5);
  pointer-events: none
}

.about-video-frame-bl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-bottom: 1.5px solid rgba(201, 150, 10, 0.5);
  border-left: 1.5px solid rgba(201, 150, 10, 0.5);
  pointer-events: none
}

.about-video-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(10, 61, 44, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-video-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid rgba(10, 61, 44, 0.2);
  margin-left: 3px;
}

.about-video-label-text {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 61, 44, 0.25);
  position: relative;
  z-index: 1;
}

.about-float-label {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--gold);
  color: var(--g1);
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  z-index: 3
}

.about-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.about-vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(10, 61, 44, 0.18) 0%,
      transparent 50%,
      rgba(10, 61, 44, 0.10) 100%);
  pointer-events: none;
  z-index: 1;
}

.about-video-frame,
.about-video-frame-tr,
.about-video-frame-bl {
  z-index: 2;
}

#products {
  background: var(--bg2);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

#products::before {
  display: none;
}

.products-inner {
  padding: 0 60px;
  position: relative;
  z-index: 1
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px
}

.products-heading {
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.0
}

.products-heading span {
  color: var(--gold)
}

.conveyor-wrap {
  position: relative;
  overflow: hidden
}

.conveyor-belt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 30px, transparent 30px, transparent 40px)
}

.conveyor-track {
  display: flex;
  gap: 20px;
  padding: 10px 4px 30px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none
}

.conveyor-track:active {
  cursor: grabbing
}

.conveyor-track::-webkit-scrollbar {
  display: none
}

.prod-cat {
  flex-shrink: 0;
  width: 240px;
  position: relative;
  cursor: pointer;
  text-decoration: none
}

.prod-cat-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--g1), var(--g2));
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s
}

.prod-cat:hover .prod-cat-img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: none;
}

.prod-cat-img::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  transition: inset .3s, border-color .3s;
  pointer-events: none
}

.prod-cat:hover .prod-cat-img::after {
  inset: 8px;
  border-color: rgba(201, 150, 10, 0.4)
}

.prod-cat-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 61, 44, 0.55) 0%, rgba(201, 150, 10, 0.22) 100%);
  opacity: 0;
  transition: opacity .4s;
  z-index: 2;
  pointer-events: none
}

.prod-cat:hover .prod-cat-img::before {
  opacity: 1
}

.prod-cat-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 3
}

.prod-cat-icon {
  opacity: 0.15;
  transition: opacity .3s
}

.prod-cat:hover .prod-cat-icon {
  opacity: 0.28
}

.prod-cat-name {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color .3s, transform .3s
}

.prod-cat:hover .prod-cat-name {
  color: var(--white);
  transform: translateY(-6px)
}

.prod-cat-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--g1);
  opacity: 0;
  transform: translateY(8px) scale(0.8);
  transition: opacity .35s, transform .35s;
  z-index: 4
}

.prod-cat:hover .prod-cat-arrow {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.prod-cat-hover-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0;
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
  z-index: 4
}

.prod-cat:hover .prod-cat-hover-bar {
  width: 100%
}

.prod-cat-label {
  padding: 16px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--g1)
}

.prod-cat-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 3px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase
}

.pc-corrugated {
  background: linear-gradient(145deg, #1a3d2a, #0d2e1e)
}

.pc-pp {
  background: linear-gradient(145deg, #1a2f3a, #0f1e28)
}

.pc-protective {
  background: linear-gradient(145deg, #2a2a1a, #1e1e0d)
}

.pc-rigid {
  background: linear-gradient(145deg, #1a1a2a, #0f0f1e)
}

.pc-foam {
  background: linear-gradient(145deg, #2a1a1a, #1e0d0d)
}

.pc-bubble {
  background: linear-gradient(145deg, #0d2a3d, #081e2e)
}

.pc-epe-pouch {
  background: linear-gradient(145deg, #2a1a2a, #1e0d1e)
}

.pc-gaskets {
  background: linear-gradient(145deg, #1e2a1a, #111e0d)
}

.pc-adhesive {
  background: linear-gradient(145deg, #2a2418, #1e180d)
}

.pc-tapes {
  background: linear-gradient(145deg, #1a2a2a, #0d1e1e)
}

.pc-sundry {
  background: linear-gradient(145deg, #24241a, #18180d)
}

.pc-paperbag {
  background: linear-gradient(145deg, #1e2a1e, #0d1a0d)
}

.pc-flc {
  background: linear-gradient(145deg, #2a1e1a, #1e140d)
}

#solutions {
  background: var(--g1);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}


.solutions-inner {
  padding: 0 60px;
  position: relative;
  z-index: 1
}

.solutions-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px
}

.solutions-heading {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0
}

.solutions-heading span {
  color: var(--gold)
}

.sol-list {
  display: flex;
  flex-direction: column
}

.sol-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  overflow: hidden
}

.sol-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.sol-item-head {
  display: flex;
  align-items: center;
  padding: 24px 0;
  gap: 32px;
  transition: padding .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  z-index: 2
}

.sol-item:hover .sol-item-head,
.sol-item.open .sol-item-head {
  padding: 24px 24px
}

.sol-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  transition: color .3s;
  flex: 1
}

.sol-item:hover .sol-title,
.sol-item.open .sol-title {
  color: var(--white)
}

.sol-arrow {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.2);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), color .3s
}

.sol-item.open .sol-arrow {
  transform: rotate(45deg);
  color: var(--gold)
}

.sol-item-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.sol-item:hover .sol-item-bg,
.sol-item.open .sol-item-bg {
  transform: translateX(0)
}

.sol-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1)
}

.sol-item.open .sol-content {
  max-height: 600px
}

.sol-content-inner {
  padding: 0 0 40px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2
}

.sol-detail {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative
}

.sol-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s .1s
}

.sol-item.open .sol-detail::before {
  width: 100%
}

.sol-detail-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.sol-detail-items {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sol-detail-items span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px
}

.sol-detail-items span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(201, 150, 10, 0.6);
  flex-shrink: 0
}

.sol-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 20px;
  transition: gap .3s;
}

.sol-learn-more:hover {
  gap: 14px;
}

.sol-learn-more-arrow {
  transition: transform .3s;
}

.sol-learn-more:hover .sol-learn-more-arrow {
  transform: translateX(4px);
}

#reviews {
  background: #0D1208;
  padding: 72px 0;
  position: relative;
  overflow: hidden
}

#reviews::before {
  display: none;
}

.reviews-inner {
  padding: 0 60px;
  position: relative;
  z-index: 1
}

.reviews-heading {
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 40px
}

.reviews-heading span {
  color: var(--gold)
}

.reviews-slider {
  position: relative;
  overflow: hidden
}

.reviews-track {
  display: flex;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1)
}

.review-slide {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.review-quote-large {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  font-style: italic;
  position: relative;
  padding-left: 32px
}

.review-quote-large::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 80px;
  color: var(--gold);
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  line-height: 1;
  opacity: 0.7
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.review-company {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em
}

.review-industry {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold)
}

.review-rule {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 8px 0
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px
}

.rev-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .3s
}

.rev-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.rev-progress {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 200px
}

.rev-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  transition: width .7s cubic-bezier(.4, 0, .2, 1)
}

.rev-count {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3)
}

#standards {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.standards-inner {
  padding: 0 60px;
  position: relative;
  z-index: 1
}

.standards-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px
}

.standards-heading {
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.0
}

.standards-heading span {
  color: var(--gold);
  display: block
}

.standards-intro {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--sub);
  font-weight: 400;
  align-self: flex-end
}

.standards-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.sd-dash {
  width: 28px;
  height: 2px;
  background: var(--g1);
}

.sd-dash.gold {
  background: var(--gold);
}

.sd-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

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

.std-card {
  background: #ffffff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s, border-color .35s;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.std-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 61, 44, 0.12);
  border-color: rgba(201, 150, 10, 0.4);
}

.std-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10, 61, 44, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  flex-shrink: 0;
  margin-bottom: 18px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.std-card:hover .std-icon {
  transform: scale(1.06);
}

.std-underline {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
  transition: width .3s cubic-bezier(.4, 0, .2, 1);
}

.std-card:hover .std-underline {
  width: 44px;
}

.std-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--g1);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.std-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sub);
  font-weight: 400
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border)
}

.stat-item {
  background: var(--bg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .3s
}

.stat-item:hover {
  background: #F0F0EC
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--g1);
  line-height: 1;
  letter-spacing: -0.03em
}

.stat-num span {
  color: var(--gold)
}

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

#contact {
  background: var(--bg);
  padding: 80px 0;
  position: relative;
}

.contact-inner {
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.0;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-heading span {
  color: var(--gold);
}

.contact-subhead {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-info-block {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.contact-info-row:last-child {
  border-bottom: none;
}

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

.contact-info-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-info-val {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--g1);
}

.contact-map-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
  min-height: 0;
}

.contact-map-bar {
  background: var(--g1);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 12px;
}

.contact-map-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-map-link {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.contact-map-link:hover {
  color: var(--gold-l);
}

.contact-map-embed {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
  min-height: 120px;
}

.contact-right {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(10, 61, 44, 0.07);
}

.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-form-header-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-form-title-bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

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

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-form .form-row .form-field {
  margin-bottom: 0;
}

.contact-form .form-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-req {
  color: var(--gold);
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  background: #ffffff;
  border: 1px solid #d4dfd5;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 16px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #a0b0a2;
}

.contact-form .form-select {
  color: #a0b0a2;
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  border-color: var(--g1);
  box-shadow: 0 0 0 3px rgba(10, 61, 44, 0.07);
  background: #ffffff;
}

.form-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-select-wrap .form-select {
  padding-right: 40px;
}

.form-select-arrow {
  position: absolute;
  right: 14px;
  font-size: 20px;
  color: var(--muted);
  pointer-events: none;
  line-height: 1;
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.contact-form .form-submit {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--g1);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-form .form-submit:hover {
  background: var(--g2);
  transform: translateY(-2px);
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.form-privacy svg {
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
    align-items: start;
  }

  .contact-map-card {
    min-height: 200px;
  }

  .contact-form-card {
    padding: 28px 24px;
  }

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

@media (max-width: 480px) {
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BLOGS */
#blogs {
  background: #0D1208;
  padding: 72px 0;
  position: relative;
  overflow: hidden
}

.blogs-inner {
  padding: 0 60px;
  position: relative;
  z-index: 1
}

.blogs-top {
  margin-bottom: 40px
}

.blogs-heading {
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0
}

.blogs-heading span {
  color: var(--gold)
}

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

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s, border-color .35s, background .3s
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 150, 10, 0.4);
  background: rgba(255, 255, 255, 0.055)
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, var(--g1), var(--g2));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
  transition: opacity .3s
}

.blog-card:hover .blog-card-overlay {
  opacity: 0.7
}

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px
}

.blog-card-date {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold)
}

.blog-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
  flex: 1
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 8px;
  transition: gap .3s
}

.blog-card:hover .blog-read-more {
  gap: 14px
}

.blog-arrow {
  transition: transform .3s
}

.blog-card:hover .blog-arrow {
  transform: translateX(4px)
}

/* FOOTER */
footer {
  background: var(--g1);
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-top {
  padding: 36px 60px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.footer-logo-img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  padding: 0
}

.footer-logo-fallback {
  display: flex;
  align-items: center;
  gap: 5px
}

.footer-brand-box {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(201, 150, 10, 0.3)
}

.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase
}

.footer-brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1px
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 240px;
  margin-bottom: 14px
}

.footer-brand-contact {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Poppins', sans-serif;
  line-height: 1.8
}

.footer-brand-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: color .3s
}

.footer-brand-contact a:hover {
  color: var(--gold-l)
}

.footer-contact-line {
  padding: 0 60px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  text-align: left
}

.footer-contact-line a,
.footer-mail-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  transition: color .3s
}

.footer-contact-line a:hover,
.footer-mail-link:hover {
  color: var(--yellow)
}

.footer-contact-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.25)
}

.footer-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .3s;
  letter-spacing: 0.02em
}

.footer-col-links a:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 0.04em
}

.footer-legal {
  display: flex;
  gap: 24px
}

.footer-legal a {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .3s
}

.footer-legal a:hover {
  color: var(--gold)
}

.footer-credit {
  text-align: center;
  padding: 10px 60px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5)
}

.footer-credit-brand {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  transition: color .3s
}

.footer-credit-brand:hover {
  color: var(--gold)
}

/* ===== FOOTER V2 â€” redesigned footer with animated logo canvas ===== */
.site-footer {
  background: #0d3b26;
  border-top: none
}

/* TOP GRID */
.footer-v2-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 0;
  padding: 32px 60px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

/* BRAND COL */
.footer-v2-brand {
  padding-right: 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-doms-canvas {
  display: block;
  width: 120px;
  height: auto
}

.footer-logo-img {
  height: 65px;
  width: auto;
  display: block;
  margin-bottom: 32px
}

.footer-doms-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer
}

.footer-v2-divider {
  display: none;
}

.footer-v2-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 350px;
  margin-bottom: 0
}

.footer-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 150, 10, 0.3);
  border-radius: 2px;
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(201, 150, 10, 0.85);
}

.footer-v2-badge svg {
  flex-shrink: 0;
  color: var(--gold, #c9960a)
}

/* NAV COLS */
.footer-v2-col {
  padding: 0 24px;
  text-align: left;
}

.footer-v2-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #c9960a);
  margin-bottom: 10px
}

.footer-v2-col-line {
  display: none;
}

.footer-v2-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0
}

.footer-v2-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: none;
  transition: color 0.2s
}

.footer-v2-links a:last-child {
  border-bottom: none
}

.footer-v2-links a:hover {
  color: var(--gold, #c9960a)
}

.fv2-arr {
  display: none
}

.footer-v2-links a:hover .fv2-arr {
  display: none
}

/* CONTACT BAR */
.footer-v2-contact-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-v2-contact-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5
}

.footer-v2-contact-cell--border {
  border-left: 1px solid rgba(255, 255, 255, 0.08)
}

.fv2-contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55)
}

.footer-v2-contact-cell a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s
}

.footer-v2-contact-cell a:hover {
  color: var(--gold, #c9960a)
}

/* BOTTOM BAR */
.footer-v2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px
}

.footer-v2-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em
}

.footer-v2-doms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4)
}

.footer-v2-doms-link {
  display: flex;
  align-items: center;
  text-decoration: none
}

.footer-v2-doms-img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.2s
}

.footer-v2-doms-img:hover {
  opacity: 0.8
}

.footer-v2-legal {
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-v2-legal a {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s
}

.footer-v2-legal a:hover {
  color: var(--gold, #c9960a)
}

.fv2-legal-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px
}

/* FOOTER V2 â€” RESPONSIVE */
@media (max-width: 1024px) {
  .footer-v2-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 40px 32px 36px
  }

  .footer-v2-brand {
    border-right: none;
    padding-right: 0;
    grid-column: 1 / -1
  }

  .footer-v2-col {
    padding-left: 0
  }

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

  .footer-v2-contact-cell--border {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07)
  }

  .footer-v2-contact-cell {
    padding: 16px 32px
  }

  .footer-v2-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 20px 32px
  }
}

@media (max-width: 600px) {
  .footer-v2-top {
    grid-template-columns: 1fr;
    padding: 32px 20px 28px
  }

  .footer-v2-contact-cell {
    padding: 16px 20px
  }

  .footer-v2-bottom {
    padding: 16px 20px
  }

  .footer-logo-canvas {
    width: 140px
  }
}

/* INNER PAGES */
.inner-page {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  overflow-y: auto
}

.inner-page.open {
  display: block
}

/* Sticky header for product inner pages */
.inner-page-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(244, 249, 245, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.inner-page-header-left {
  display: flex;
  align-items: center;
}

.inner-back-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g1);
  cursor: pointer;
  background: transparent;
  border: 1.5px solid rgba(10, 61, 44, 0.3);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background .3s, border-color .3s;
}

.inner-back-header:hover {
  background: rgba(10, 61, 44, 0.06);
  border-color: var(--g1);
}

.inner-page-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.inner-page-header-nav a {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}

.inner-page-header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

.inner-page-header-nav a:hover::after {
  width: 100%;
}

.inner-page-header-nav a:hover {
  color: var(--g1);
}

.inner-page-header-nav a.inner-nav-active {
  color: var(--gold) !important;
}

.inner-page-header-nav a.inner-nav-active::after {
  width: 100% !important;
  transition: none !important;
}

.inner-page-header-nav .inner-nav-cta {
  background: var(--g1) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  font-size: 12px !important;
  border-radius: 2px;
}

.inner-page-header-nav .inner-nav-cta::after {
  display: none !important;
}

.inner-page-header-nav .inner-nav-cta:hover {
  background: var(--g2) !important;
  color: var(--white) !important;
}

/* Old floating back button â€” hidden now */
.inner-back {
  display: none
}

/* ===== REDESIGNED PRODUCT INNER PAGE LAYOUT ===== */
/* Full-width premium layout: hero image top, content below */
.inner-catalogue {
  display: block;
  min-height: 100vh;
}

/* Product Hero â€” full width image banner */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATALOGUE-VIEW GALLERY â€” Large hero + card strip
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€ Product Inner Page: 4-image equal grid (replaces hero + thumbs) â”€â”€ */
.inner-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: 100%;
  background: var(--g1);
}

.inner-gallery-img-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #1a3d2a, #0d2e1e);
}

.inner-gallery-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.3s;
}

.inner-gallery-img-cell:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.inner-gallery-img-cell-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}

.inner-gallery-img-cell:hover .inner-gallery-img-cell-overlay {
  opacity: 0.5;
}

/* Corner frame decorations on first cell - Hidden */
.inner-gallery-img-cell:first-child::before,
.inner-gallery-img-cell:first-child::after {
  display: none !important;
}

/* Label on last cell - Hidden */
.inner-gallery-img-cell:last-child .inner-gallery-cell-label {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .inner-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Info panel â€” full width below the hero */
.inner-info {
  background: var(--bg);
  padding: 0;
  overflow-y: visible;
  max-height: none;
}

/* Product intro bar */
.inner-info-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 60px 52px;
  display: block;
  max-width: 100%;
}

.inner-info-topbar-left {
  margin-bottom: 24px;
}

.inner-info-topbar-right {
  max-width: 720px;
}

.inner-product-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.inner-product-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.inner-product-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.inner-product-title span {
  color: var(--gold);
  display: block;
}

.inner-product-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--sub);
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  max-width: 760px;
}

/* Content sections below topbar */
.inner-info-body {
  padding: 52px 60px 72px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.inner-info-body-full {
  width: 100%;
}

.inner-info-section {
  margin-bottom: 0;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: none;
}

.inner-info-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 150, 10, 0.15);
}

.inner-info-label::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

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

.why-item {
  background: var(--bg);
  padding: 20px 22px;
  transition: background .3s;
}

.why-item:hover {
  background: var(--bg2);
}

.why-item-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--g1);
  margin-bottom: 8px;
}

.why-item-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--sub);
  font-weight: 400;
}

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

.app-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--g1);
  padding: 8px 16px;
  border: 1px solid rgba(10, 61, 44, 0.2);
  background: var(--white);
  transition: all .3s;
  cursor: default;
  border-radius: 2px;
}

.app-tag:hover {
  background: var(--g1);
  color: var(--white);
  border-color: var(--g1);
}

/* Light theme gallery overrides */
.inner-gallery {
  background: var(--g1) !important;
}

.inner-hero {
  min-height: 60vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  border-bottom: 1px solid var(--border)
}

.inner-hero::before {
  display: none;
}

.inner-hero-badge {
  position: absolute;
  top: 80px;
  left: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 61, 44, 0.3);
  border: 1px solid rgba(10, 61, 44, 0.12);
  padding: 6px 14px;
  z-index: 2;
}

.inner-hero-crosshair {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 36px;
  height: 36px;
  z-index: 1;
  opacity: 0.25;
}

.inner-hero-crosshair::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(10, 61, 44, 0.6);
}

.inner-hero-crosshair::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(10, 61, 44, 0.6);
}

.inner-hero-crosshair-ring {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(10, 61, 44, 0.5);
  border-radius: 50%;
}

.inner-hero-dim {
  position: absolute;
  bottom: 100px;
  right: 60px;
  font-family: 'Poppins', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(10, 61, 44, 0.25);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.inner-hero-dim-line {
  width: 120px;
  height: 1px;
  background: rgba(10, 61, 44, 0.15);
  position: relative;
}

.inner-hero-dim-line::before,
.inner-hero-dim-line::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: rgba(10, 61, 44, 0.18);
}

.inner-hero-dim-line::before {
  left: 0;
}

.inner-hero-dim-line::after {
  right: 0;
}

.inner-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 0.9;
  position: relative;
  z-index: 2;
  letter-spacing: -0.03em
}

.inner-hero-title span {
  color: var(--gold)
}

.inner-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 60px
}

.inner-section {
  margin-bottom: 64px
}

.inner-section-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.inner-section-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold)
}

.inner-section-h {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.05;
  margin-bottom: 20px
}

.inner-section-p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--sub);
  font-weight: 400;
  max-width: 700px
}

/* Case studies on product pages â€” improved layout */
.prod-page-cs-section {
  background: var(--bg2) !important;
  border-top: 1px solid var(--border) !important;
  padding: 60px 60px 72px !important;
}

.prod-page-cs-header {
  margin-bottom: 36px;
}

.prod-page-cs-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prod-page-cs-label::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.prod-page-cs-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--g1) !important;
}

.case-studies-grid-old-override {
  display: grid;
}

.case-study-card {
  background: var(--white);
  border: none;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .2s;
  cursor: pointer;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold);
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
}

.case-study-card:hover {
  background: var(--bg2);
  transform: translateY(-2px);
}

.case-study-card:hover::before {
  width: 100%;
}

.case-study-num {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(10, 61, 44, 0.25);
}

.case-study-industry {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.case-study-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--g1);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.case-study-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--sub);
  font-weight: 400;
  flex: 1;
}

.case-study-result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--g2);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.case-study-result::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media(max-width:900px) {
  .inner-info-topbar {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px 40px;
  }

  .inner-info-body {
    grid-template-columns: 1fr;
    padding: 40px 28px 60px;
  }

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

  .prod-page-cs-section {
    padding: 40px 28px 52px !important;
  }
}

@media(max-width:600px) {
  .inner-info-topbar {
    padding: 28px 20px 32px;
  }

  .inner-info-body {
    padding: 28px 20px 48px;
    gap: 32px;
  }

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

/* MOBILE */
@media(max-width:900px) {
  .case-studies-section {
    padding: 40px 28px
  }
}

@media(max-width:900px) {
  .blogs-inner {
    padding: 0 30px
  }

  .blogs-grid {
    grid-template-columns: 1fr
  }

  #hero {
    grid-template-columns: 1fr
  }

  .hero-right {
    display: none
  }

  .hero-left {
    padding: 100px 30px 60px
  }

  .hero-h1 {
    font-size: 48px
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 30px
  }

  .sol-content-inner {
    grid-template-columns: 1fr
  }

  .products-inner {
    padding: 0 0 0 30px
  }

  .products-header {
    padding-right: 30px
  }

  .reviews-inner {
    padding: 0 30px
  }

  .review-slide {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .standards-inner {
    padding: 0 30px
  }

  .standards-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-row {
    grid-template-columns: 1fr
  }

  .standards-top {
    flex-direction: column;
    align-items: flex-start
  }

  #contact {
    grid-template-columns: 1fr
  }

  .contact-left,
  .contact-right {
    padding: 60px 30px
  }

  .solutions-inner {
    padding: 0 30px
  }

  .solutions-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  header {
    padding: 0 24px
  }

  nav {
    gap: 16px
  }

  nav a {
    font-size: 12px
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px 28px;
    gap: 32px
  }

  .footer-contact-line {
    padding: 0 30px 20px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 18px 30px
  }

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

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

  .inner-body {
    padding: 48px 30px
  }

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

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

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

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

/* ===================================================================
   LIGHT THEME OVERRIDES â€” all dark sections removed
   =================================================================== */

/* â”€â”€ FULL PAGE OVERLAYS â”€â”€ */
.full-page {
  background: var(--bg) !important;
}

.fp-header {
  background: rgba(244, 249, 245, 0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(10, 61, 44, 0.1) !important;
  padding: 0 60px !important;
  height: 72px !important;
}

.fp-header-logo {
  color: var(--g1) !important;
  display: flex;
  align-items: center;
}

.fp-header-nav a {
  color: var(--muted) !important;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}

.fp-header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

.fp-header-nav a:hover::after {
  width: 100%;
}

.fp-header-nav a:hover {
  color: var(--g1) !important;
}

.fp-header-nav a.fp-nav-active {
  color: var(--gold) !important;
}

.fp-header-nav a.fp-nav-active::after {
  width: 100% !important;
  transition: none !important;
}

.fp-header-nav .fp-nav-cta {
  background: var(--g1) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 2px !important;
  border: none !important;
  font-size: 12px !important;
}

.fp-header-nav .fp-nav-cta::after {
  display: none !important;
}

.fp-header-nav .fp-nav-cta:hover {
  background: var(--g2) !important;
  color: var(--white) !important;
}

.fp-back-btn {
  background: none !important;
  border: 1.5px solid rgba(201, 150, 10, 0.5) !important;
  color: var(--gold) !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.07em !important;
  transition: background 0.2s !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
}

.fp-back-btn:hover {
  background: rgba(201, 150, 10, 0.1) !important;
}

/* Footer in full pages â€” keep green (brand) */
.fp-footer {
  background: var(--g1) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.fp-footer-brand-name {
  color: var(--white) !important;
}

.fp-footer-brand-sub {
  color: rgba(255, 255, 255, 0.4) !important;
}

.fp-footer-desc {
  color: rgba(255, 255, 255, 0.5) !important;
}

.fp-footer-col-title {
  color: rgba(201, 150, 10, 0.8) !important;
}

.fp-footer-col-links a {
  color: rgba(255, 255, 255, 0.5) !important;
}

.fp-footer-col-links a:hover {
  color: var(--gold) !important;
}

.fp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.fp-footer-copy {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* â”€â”€ ABOUT PAGE â”€â”€ */
.about-page-hero {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border) !important;
  min-height: 360px !important;
  padding: 100px 60px 60px !important;
}

.about-page-hero::before {
  background: radial-gradient(ellipse at 70% 50%, rgba(10, 61, 44, 0.04) 0%, transparent 65%) !important;
}

.about-hero-deco {
  border-color: rgba(10, 61, 44, 0.1) !important;
}

.about-hero-deco::before {
  border-color: rgba(10, 61, 44, 0.05) !important;
}

.about-hero-label {
  color: var(--gold) !important;
}

.about-hero-title {
  color: var(--g1) !important;
}

.about-hero-title span {
  color: var(--gold) !important;
  display: block;
}

.about-hero-sub {
  color: var(--sub) !important;
}

.about-story {
  background: var(--bg) !important;
}

.about-story-img-frame {
  border-color: rgba(10, 61, 44, 0.15) !important;
}

.about-story-label {
  color: var(--gold) !important;
}

.about-story-title {
  color: var(--g1) !important;
}

.about-story-body {
  color: var(--sub) !important;
}

.about-mv {
  background: var(--bg2) !important;
  padding-top: 80px !important;
}

.about-section-label {
  color: var(--gold) !important;
}

.about-section-title {
  color: var(--g1) !important;
}

.mv-premium-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.mv-premium-card:hover {
  background: var(--bg2) !important;
}

.mv-premium-num {
  color: rgba(10, 61, 44, 0.05) !important;
}

.mv-premium-label {
  color: var(--gold) !important;
}

.mv-premium-heading {
  color: var(--g1) !important;
}

.mv-premium-text {
  color: var(--sub) !important;
}

.about-why {
  background: var(--bg) !important;
  padding-top: 0 !important;
}

.about-mfg {
  background: var(--bg2) !important;
}

.mfg-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.mfg-card:hover {
  background: var(--bg) !important;
}

.mfg-card-num {
  color: rgba(10, 61, 44, 0.25) !important;
}

.mfg-card-name {
  color: var(--g1) !important;
}

.mfg-card-desc {
  color: var(--sub) !important;
}

.mfg-card-icon {
  color: var(--g2) !important;
  opacity: 1 !important;
}

.about-industries {
  background: var(--bg) !important;
}

.industry-pill {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.industry-pill:hover {
  border-color: rgba(201, 150, 10, 0.4) !important;
  background: var(--bg2) !important;
}

.industry-pill-name {
  color: var(--g1) !important;
}



/* â”€â”€ CATALOGUE PAGE â”€â”€ */
.cat-hero {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 100px 60px 60px !important;
}

.cat-hero::before {
  background: radial-gradient(ellipse at 80% 50%, rgba(10, 61, 44, 0.04) 0%, transparent 60%) !important;
}

.cat-hero-label {
  color: var(--gold) !important;
}

.cat-hero-title {
  color: var(--g1) !important;
}

.cat-hero-title span {
  color: var(--gold) !important;
}

.cat-hero-sub {
  color: var(--sub) !important;
}

.cat-grid-section {
  background: var(--bg) !important;
}

.cat-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.cat-card:hover {
  border-color: rgba(201, 150, 10, 0.4) !important;
  background: var(--bg2) !important;
}

.cat-card-img-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 40%) !important;
}

.cat-card-name {
  color: var(--g1) !important;
}

.cat-card-desc {
  color: var(--sub) !important;
}

.cat-card-link {
  color: var(--gold) !important;
}

/* â”€â”€ SOLUTION INNER PAGES (full-page versions) â”€â”€ */
.sol-page-hero {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border) !important;
  min-height: auto !important;
  padding: 80px 60px 60px !important;
}

.sol-page-hero-bg,
.sol-page-hero-bg::after {
  background: none !important;
}

.sol-page-hero-badge {
  color: var(--gold) !important;
  border-color: rgba(10, 61, 44, 0.15) !important;
}

.sol-page-hero-title {
  color: var(--g1) !important;
}

.sol-page-hero-title span {
  color: var(--gold) !important;
}

.sol-page-hero-sub {
  color: var(--sub) !important;
}

.sol-page-overview {
  background: var(--bg) !important;
}

.sol-page-process {
  background: var(--bg2) !important;
}

.sol-page-industries {
  background: var(--bg) !important;
}

.sol-page-related {
  background: var(--bg2) !important;
}

.sol-page-section-label {
  color: var(--gold) !important;
}

.sol-page-section-title {
  color: var(--g1) !important;
}

.sol-page-body-text {
  color: var(--sub) !important;
}

.process-step-num {
  border-color: rgba(10, 61, 44, 0.25) !important;
  color: var(--g1) !important;
  background: var(--bg) !important;
}

.process-step-line {
  background: rgba(10, 61, 44, 0.08) !important;
}

.process-step-title {
  color: var(--g1) !important;
}

.process-step-desc {
  color: var(--sub) !important;
}

.sol-industry-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.sol-industry-card:hover {
  border-color: rgba(201, 150, 10, 0.4) !important;
  background: var(--bg2) !important;
}

.sol-industry-name {
  color: var(--g1) !important;
}

.sol-industry-name::before {
  background: var(--gold) !important;
}

.sol-industry-row-label {
  color: var(--gold) !important;
}

.sol-industry-row-text {
  color: var(--sub) !important;
}

.sol-related-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.sol-related-card:hover {
  border-color: rgba(201, 150, 10, 0.4) !important;
  background: var(--bg2) !important;
}

.sol-related-card.active-sol {
  border-color: rgba(201, 150, 10, 0.5) !important;
  background: rgba(201, 150, 10, 0.05) !important;
}

.sol-related-num {
  color: rgba(10, 61, 44, 0.3) !important;
}

.sol-related-name {
  color: var(--g1) !important;
}

.sol-related-desc {
  color: var(--sub) !important;
}

.sol-related-link {
  color: var(--gold) !important;
}

/* â”€â”€ PRODUCT INNER PAGES â”€â”€ */
.inner-back {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1.5px solid rgba(201, 150, 10, 0.5) !important;
  padding: 8px 18px !important;
}

.inner-back:hover {
  background: rgba(201, 150, 10, 0.1) !important;
  color: var(--gold) !important;
}

/* â”€â”€ PRODUCT INNER PAGES â€” catalogue view overrides â”€â”€ */
.inner-gallery {
  background: var(--g1) !important;
}

.inner-gallery-img-cell-overlay {
  background: transparent !important;
}

.inner-gallery-cell-label {
  display: none !important;
}

.prod-page-cs-section {
  background: var(--white) !important;
  border-top: 1px solid var(--border) !important;
}

.prod-page-cs-label {
  color: var(--gold) !important;
}

.prod-page-cs-title {
  color: var(--g1) !important;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
  align-items: stretch;
}

.cs-img-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none !important;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s;
}

.cs-img-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.cs-img-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--g1);
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

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

.cs-img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 18, 9, 0.92) 0%, rgba(5, 18, 9, 0.55) 40%, rgba(5, 18, 9, 0.05) 100%);
  z-index: 1;
  transition: background 0.3s;
}

.cs-img-card:hover .cs-img-card-overlay {
  background: linear-gradient(to top, rgba(5, 18, 9, 0.97) 0%, rgba(5, 18, 9, 0.65) 50%, rgba(5, 18, 9, 0.12) 100%);
}

.cs-img-card-content {
  position: relative;
  z-index: 2;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-img-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cs-img-card-num {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}

.cs-img-card-industry {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 150, 10, 0.18);
  border: 1px solid rgba(201, 150, 10, 0.35);
  padding: 3px 10px;
  border-radius: 20px;
}

.cs-img-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.cs-img-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-img-card-result {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  margin-top: 4px;
}

.cs-img-card-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.cs-img-card-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--g1);
  background: var(--gold);
  border-radius: 20px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.cs-img-card:hover .cs-img-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.cs-img-card-cta:hover {
  background: var(--gold-l);
}

.prod-explore-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.prod-explore-card:hover {
  border-color: rgba(201, 150, 10, 0.4) !important;
  background: var(--bg2) !important;
}

.prod-explore-card-name {
  color: var(--g1) !important;
}

.prod-explore-card-link {
  color: var(--gold) !important;
}

/* Case Studies inline on product pages */
.prod-cs-content {
  background: var(--bg2) !important;
}

.prod-cs-meta {
  color: var(--gold) !important;
}

.prod-cs-title {
  color: var(--g1) !important;
}

.prod-cs-row-label {
  color: var(--muted) !important;
}

.prod-cs-row-text {
  color: var(--sub) !important;
}

.prod-cs-result {
  color: var(--sub) !important;
}

.prod-cs-img-overlay {
  opacity: 0.05 !important;
}

/* Update prod-page-cs-section padding for image cards */
.prod-page-cs-section {
  padding: 60px 60px 72px !important;
}

@media (max-width: 700px) {
  .case-studies-grid {
    grid-template-columns: 1fr !important;
  }

  .prod-page-cs-section {
    padding: 40px 20px 52px !important;
  }
}

/* â”€â”€ INNER INFO BODY layout fix â”€â”€ */
.inner-info {
  background: var(--bg);
}

.inner-info-body-wrap {
  padding: 52px 60px 72px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 900px) {
  .inner-info-body-wrap {
    padding: 40px 24px 52px;
  }
}

/* â”€â”€ BLOG & CASE STUDY OVERLAYS â”€â”€ */
#inner-blog-detail {
  background: var(--bg) !important;
}

.blog-detail-header {
  background: rgba(244, 249, 245, 0.98) !important;
  border-bottom-color: var(--border) !important;
  backdrop-filter: blur(12px);
}

.blog-detail-back {
  border-color: rgba(201, 150, 10, 0.4) !important;
  color: var(--gold) !important;
}

.blog-detail-back:hover {
  background: rgba(201, 150, 10, 0.1) !important;
}

.blog-detail-category {
  color: var(--gold) !important;
}

.blog-detail-title {
  color: var(--g1) !important;
}

.blog-detail-meta {
  color: var(--muted) !important;
  border-bottom-color: var(--border) !important;
}

.blog-detail-content {
  color: var(--sub) !important;
}

.blog-detail-content p {
  color: var(--sub) !important;
}

#inner-case-study {
  background: var(--bg) !important;
}

.cs-header {
  background: rgba(244, 249, 245, 0.98) !important;
  border-bottom-color: var(--border) !important;
  backdrop-filter: blur(12px);
}

.cs-back {
  border-color: rgba(201, 150, 10, 0.4) !important;
  color: var(--gold) !important;
}

.cs-back:hover {
  background: rgba(201, 150, 10, 0.1) !important;
}

.cs-label {
  color: var(--gold) !important;
}

.cs-title {
  color: var(--g1) !important;
}

.cs-industry-tag {
  background: rgba(10, 61, 44, 0.06) !important;
  color: var(--g2) !important;
  border-color: rgba(10, 61, 44, 0.12) !important;
}

.cs-section-title {
  color: rgba(10, 61, 44, 0.45) !important;
}

.cs-section-title::after {
  background: var(--border) !important;
}

.cs-section-text {
  color: var(--sub) !important;
}

.cs-result-box {
  background: rgba(201, 150, 10, 0.06) !important;
  border-color: rgba(201, 150, 10, 0.2) !important;
  color: var(--g1) !important;
}

.cs-stat {
  background: var(--white) !important;
  border-color: var(--border) !important;
}

.cs-stat-num {
  color: var(--g1) !important;
}

.cs-stat-label {
  color: var(--muted) !important;
}

/* â”€â”€ BLOGS SECTION ON HOMEPAGE â”€â”€ */
#blogs {
  background: var(--bg2) !important;
}

.blogs-heading {
  color: var(--g1) !important;
}

.blogs-heading span {
  color: var(--gold) !important;
}

.blog-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 61, 44, 0.1) !important;
  border-color: rgba(201, 150, 10, 0.4) !important;
  background: var(--bg) !important;
}

.blog-card-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.08) 100%) !important;
}

.blog-card-date {
  color: var(--gold) !important;
}

.blog-card-title {
  color: var(--g1) !important;
}

.blog-read-more {
  color: var(--gold) !important;
}

/* â”€â”€ REVIEWS SECTION â”€â”€ */
#reviews {
  background: var(--g1) !important;
}

/* â”€â”€ SOLUTIONS SECTION (homepage) â€” keep dark green bg â”€â”€ */
/* solutions section keeps dark green var(--g1) bg â€” brand colour */
/* The simplified content (just paragraph + button) works on dark bg too */
.sol-content-para {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  padding: 0 0 28px 72px;
  position: relative;
  z-index: 2;
}

/* â”€â”€ PRODUCTS GRID (homepage 4-col) â”€â”€ */
.products-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.prod-grid-card {
  --card-accent: var(--g1);
  background: var(--white);
  cursor: pointer;
  overflow: visible;
  position: relative;
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s, border-color 0.35s;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  display: block;
}

.prod-grid-card:nth-child(odd) {
  --card-accent: var(--g1);
}

.prod-grid-card:nth-child(even) {
  --card-accent: var(--gold);
}

.prod-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 61, 44, 0.12);
  border-color: rgba(201, 150, 10, 0.4);
  z-index: 1;
}

.prod-grid-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
}

.prod-grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
  opacity: 0.88;
}

.prod-grid-card:hover .prod-grid-card-img img {
  transform: scale(1.04);
  opacity: 1;
}

.prod-grid-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 61, 44, 0.35) 0%, transparent 55%);
}

.prod-grid-card-body {
  padding: 0 24px 26px;
  position: relative;
}

.prod-grid-card-badge {
  width: 56px;
  height: 56px;
  margin-top: -28px;
  margin-bottom: 14px;
  background: var(--white);
  border: 1.5px solid var(--card-accent);
  color: var(--card-accent);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.prod-grid-card:hover .prod-grid-card-badge {
  transform: rotate(90deg);
}

.prod-grid-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--g1);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.prod-grid-card-underline {
  width: 32px;
  height: 3px;
  background: var(--card-accent);
  transition: width 0.3s cubic-bezier(.4, 0, .2, 1);
}

.prod-grid-card:hover .prod-grid-card-underline {
  width: 48px;
}

.prod-grid-card-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 64px;
  background: var(--card-accent);
  border-top-left-radius: 100%;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  color: var(--white);
  transition: width 0.3s, height 0.3s;
}

.prod-grid-card:hover .prod-grid-card-corner {
  width: 72px;
  height: 72px;
}

.prod-grid-card-corner-arrow {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.prod-grid-card:hover .prod-grid-card-corner-arrow {
  transform: translate(2px, -2px);
}

.products-explore-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* â”€â”€ CATALOGUE TICKER â”€â”€ */
.cat-ticker-wrap {
  background: var(--g1);
  overflow: hidden;
  padding: 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.cat-ticker-track:hover {
  animation-play-state: paused;
}

.cat-ticker-item {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.cat-ticker-item::after {
  content: '\2726';
  color: rgba(201, 150, 10, 0.6);
  font-size: 9px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

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

/* â”€â”€ CONTACT SECTION (homepage â€” info only) â”€â”€ */
.contact-info-only {
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.contact-info-map-col {
  display: flex;
  flex-direction: column;
  height: calc(100% + 160px);
  margin: -80px 0;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.contact-info-card {
  background: var(--white);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.2s;
}

.contact-info-card:hover {
  background: var(--bg2);
}

.contact-info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--g1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-card-val {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--g1);
}

.contact-info-cta-wrap {
  margin-top: 28px;
}

.contact-info-map-card {
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-info-map-bar {
  background: var(--g1);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-info-map-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.contact-info-map-link {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-map-link:hover {
  color: var(--gold-l);
}

.contact-info-map-embed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  flex: 1;
  border: none;
  display: block;
}

/* â”€â”€ BLOGS VIEW ALL PAGE â”€â”€ */
#page-blogs-all .blogs-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 60px 80px;
}

#page-blogs-all .blogs-all-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px 48px;
}

#page-blogs-all .blogs-all-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#page-blogs-all .blogs-all-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

#page-blogs-all .blogs-all-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.0;
}

#page-blogs-all .blogs-all-title span {
  color: var(--gold);
}

#page-blogs-all .blogs-all-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--sub);
  max-width: 520px;
  margin-top: 14px;
  line-height: 1.7;
}

#page-blogs-all .ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s, border-color .3s, background .2s;
  display: flex;
  flex-direction: column;
}

#page-blogs-all .ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 61, 44, 0.1);
  border-color: rgba(201, 150, 10, 0.4);
  background: var(--bg);
}

#page-blogs-all .ba-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

#page-blogs-all .ba-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

#page-blogs-all .ba-card:hover .ba-card-img img {
  transform: scale(1.04);
}

#page-blogs-all .ba-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#page-blogs-all .ba-card-date {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

#page-blogs-all .ba-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--g1);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

#page-blogs-all .ba-card-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
  flex: 1;
}

#page-blogs-all .ba-card-rm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  transition: gap .3s;
}

#page-blogs-all .ba-card:hover .ba-card-rm {
  gap: 12px;
}

/* Blog detail overlay (light) */
#blog-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 61, 44, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

#blog-detail-overlay.open {
  display: flex;
}

.blog-overlay-box {
  background: var(--bg);
  border: 1px solid var(--border);
  max-width: 820px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 32px 80px rgba(10, 61, 44, 0.2);
}

.blog-overlay-close {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(244, 249, 245, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.blog-overlay-close-btn {
  background: none;
  border: 1.5px solid rgba(201, 150, 10, 0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}

.blog-overlay-close-btn:hover {
  background: rgba(201, 150, 10, 0.1);
}

.blog-overlay-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-overlay-body {
  padding: 40px 60px 60px;
}

.blog-overlay-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-overlay-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--g1);
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-overlay-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.blog-overlay-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 32px;
  display: block;
}

.blog-overlay-content {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--sub);
}

.blog-overlay-content p {
  margin-bottom: 20px;
}

.blog-overlay-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.blog-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-overlay-cta--outline {
  background: none;
  border: 1.5px solid rgba(201, 150, 10, 0.45);
  color: var(--gold);
}

.blog-overlay-cta--outline:hover {
  background: rgba(201, 150, 10, 0.08);
  border-color: var(--gold);
}

.blog-overlay-cta--solid {
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: #fff;
}

.blog-overlay-cta--solid:hover {
  background: #a87c08;
  border-color: #a87c08;
}

/* â”€â”€ CONTACT INNER PAGE â”€â”€ */
#page-contact .contact-full-inner {
  padding: 60px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

#page-contact .contact-full-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px 48px;
}

#page-contact .cfh-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

#page-contact .cfh-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

#page-contact .cfh-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g1);
  line-height: 1.0;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

#page-contact .cfh-title span {
  color: var(--gold);
}

#page-contact .cfh-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--sub);
  max-width: 480px;
  line-height: 1.75;
}

#page-contact .cf-info-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

#page-contact .cf-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  transition: background .2s;
}

#page-contact .cf-info-row:hover {
  background: var(--bg2);
}

#page-contact .cf-info-icon {
  width: 44px;
  height: 44px;
  background: var(--g1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#page-contact .cf-info-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

#page-contact .cf-info-val {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--g1);
}

@media (max-width: 900px) {
  .products-grid-4col {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info-only {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 30px;
  }

  .contact-info-map-col {
    height: auto;
    margin: 0;
  }

  .contact-info-map-embed {
    min-height: 280px;
  }

  #page-blogs-all .blogs-all-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
  }

  #page-blogs-all .blogs-all-hero {
    padding: 80px 30px 40px;
  }

  #page-contact .contact-full-inner {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  #page-contact .contact-full-hero {
    padding: 80px 30px 40px;
  }

  #blogs .blogs-all-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .products-grid-4col {
    grid-template-columns: 1fr 1fr;
  }

  #page-blogs-all .blogs-all-grid {
    grid-template-columns: 1fr;
  }

  .blog-overlay-body {
    padding: 28px 24px 48px;
  }
}

/* ===== STANDARDIZED HEADER BREADCRUMB ===== */
.fp-header-left .header-breadcrumb,
.inner-page-header-left .header-breadcrumb {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== HOME LOGO IN MAIN HEADER ===== */
.fp-header .fp-header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

/* =====================================================
   HAMBURGER MENU
   ===================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid rgba(10, 61, 44, 0.2);
  border-radius: 3px;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s;
  z-index: 1001;
}

.hamburger:hover {
  border-color: var(--gold);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--g1);
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  transform-origin: center;
}

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

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

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

/* Mobile nav overlay */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 61, 44, 0.45);
  backdrop-filter: blur(4px);
  z-index: 890;
  opacity: 0;
  transition: opacity 0.3s;
}

#mobile-nav-overlay.open {
  opacity: 1;
}

/* Mobile drawer */
#mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: var(--bg);
  z-index: 895;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

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

.mob-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 249, 245, 0.98);
  flex-shrink: 0;
}

.mob-nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--g1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mob-nav-close {
  width: 36px;
  height: 36px;
  background: none;
  border: 1.5px solid rgba(10, 61, 44, 0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--g1);
  font-size: 18px;
  line-height: 1;
  transition: border-color 0.2s;
}

.mob-nav-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mob-nav-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.mob-nav-links a {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g1);
  text-decoration: none;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s;
}

.mob-nav-links a:hover {
  background: var(--bg2);
  color: var(--gold);
}

.mob-nav-links a::after {
  content: '\2192';
  font-size: 14px;
  color: var(--gold);
}

.mob-nav-cta-wrap {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mob-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--g1);
  color: var(--white);
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  width: 100%;
  cursor: pointer;
  border: none;
  text-align: center;
}

.mob-nav-cta:hover {
  background: var(--g2);
}

/* FP header hamburger (for full-page overlays) */
.fp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(10, 61, 44, 0.25);
  border-radius: 3px;
  cursor: pointer;
  gap: 4px;
  padding: 7px;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.fp-hamburger:hover {
  border-color: var(--gold);
}

.fp-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--g1);
  transition: all 0.3s;
}

.fp-hamburger.open span:nth-child(1) {
  transform: translateY(5.75px) rotate(45deg);
}

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

.fp-hamburger.open span:nth-child(3) {
  transform: translateY(-5.75px) rotate(-45deg);
}

/* FP mobile dropdown */
.fp-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background: rgba(244, 249, 245, 0.99);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(10, 61, 44, 0.12);
  flex-direction: column;
  z-index: 10;
}

.fp-mobile-menu.open {
  display: flex;
}

.fp-mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g1);
  text-decoration: none;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s, color 0.15s;
}

.fp-mobile-menu a:hover {
  background: var(--bg2);
  color: var(--gold);
}

.fp-mobile-menu a::after {
  content: '\2192';
  color: var(--gold);
}

/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ===================================================== */

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

  /* HEADER */
  header {
    padding: 0 16px !important;
    height: 60px !important;
  }

  #main-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  /* HERO */
  #hero {
    flex-direction: column;
    min-height: auto !important;
    padding-top: 60px !important;
  }

  .hero-bg-video {
    height: 100%;
  }

  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(244, 249, 245, 0.97) 0%,
        rgba(244, 249, 245, 0.92) 45%,
        rgba(244, 249, 245, 0.75) 70%,
        rgba(244, 249, 245, 0.4) 100%) !important;
  }

  .hero-left {
    width: 100% !important;
    padding: 40px 20px 48px !important;
    min-height: 90vh !important;
    justify-content: center !important;
  }

  .hero-h1 {
    font-size: clamp(32px, 8vw, 48px) !important;
  }

  .hero-sub {
    max-width: 100% !important;
    font-size: 14px !important;
  }

  .hero-right {
    display: none !important;
  }

  .htl1,
  .htl2,
  .hero-crosshair {
    display: none !important;
  }

  /* ABOUT */
  #about {
    padding: 56px 0 !important;
  }

  .about-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 0 20px !important;
  }

  .about-heading {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

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

  .mv-item:first-child {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  /* PRODUCTS */
  #products {
    padding: 56px 0 !important;
  }

  .products-inner {
    padding: 0 0 0 20px !important;
  }

  .products-header {
    padding-right: 20px !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .products-heading {
    font-size: clamp(28px, 7vw, 44px) !important;
  }

  .products-grid-4col {
    grid-template-columns: 1fr 1fr !important;
  }

  .prod-cat {
    width: 180px !important;
  }

  /* SOLUTIONS */
  .solutions-inner {
    padding: 0 20px !important;
  }

  .solutions-top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .solutions-heading {
    font-size: clamp(28px, 7vw, 44px) !important;
  }

  .sol-content-para {
    padding-left: 0 !important;
  }

  .sol-content-inner {
    grid-template-columns: 1fr !important;
  }

  /* STANDARDS */
  .standards-inner {
    padding: 0 20px !important;
  }

  .standards-top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .standards-heading {
    font-size: clamp(28px, 7vw, 42px) !important;
  }

  .standards-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr !important;
  }

  /* CONTACT */
  #contact {
    padding: 56px 0 !important;
  }

  .contact-inner {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    gap: 28px !important;
  }

  .contact-heading {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

  .contact-form-card {
    padding: 24px 20px !important;
  }

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

  /* CONTACT INFO ONLY */
  .contact-info-only {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    gap: 28px !important;
  }

  /* BLOGS */
  .blogs-inner {
    padding: 0 20px !important;
  }

  .blogs-heading {
    font-size: clamp(28px, 7vw, 44px) !important;
  }

  .blogs-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .blogs-top-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    padding: 36px 20px 24px !important;
    gap: 28px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    padding: 16px 20px !important;
  }

  .footer-legal {
    justify-content: center !important;
  }

  /* FULL PAGE OVERLAYS HEADER */
  .fp-header {
    padding: 0 16px !important;
    height: 58px !important;
    position: sticky !important;
  }

  .fp-header-nav {
    display: none !important;
  }

  .fp-hamburger {
    display: flex !important;
  }

  /* ABOUT PAGE */
  .about-page-hero {
    padding: 70px 20px 40px !important;
  }

  .about-story {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 40px 20px !important;
  }

  .about-mv {
    padding: 40px 20px 40px !important;
  }

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

  .about-why {
    padding: 0 20px 40px !important;
  }

  .about-mfg {
    padding: 0 20px 40px !important;
  }

  .mfg-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .about-industries {
    padding: 0 20px 40px !important;
  }

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



  .about-hero-deco {
    display: none !important;
  }

  /* CATALOGUE PAGE */
  .cat-hero {
    padding: 70px 20px 40px !important;
  }

  .cat-grid-section {
    padding: 32px 20px 56px !important;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* SOLUTION PAGES */
  .sol-page-hero {
    padding: 70px 20px 40px !important;
  }

  .sol-page-overview,
  .sol-page-process,
  .sol-page-industries,
  .sol-page-related {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

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

  .sol-related-grid {
    grid-template-columns: 1fr !important;
  }

  /* INNER PRODUCT PAGES */
  .inner-page-header {
    padding: 0 16px !important;
    height: 58px !important;
  }

  .inner-page-header-nav {
    display: none !important;
  }

  .inner-back-header {
    font-size: 11px !important;
    padding: 7px 14px !important;
  }

  .inner-info-topbar {
    padding: 32px 20px 36px !important;
  }

  .inner-info-body-wrap {
    padding: 32px 20px 48px !important;
  }

  .inner-info-body {
    padding: 32px 20px 48px !important;
  }

  .inner-product-title {
    font-size: clamp(24px, 6vw, 38px) !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .inner-hero {
    padding: 60px 20px 36px !important;
  }

  .inner-hero-title {
    font-size: clamp(36px, 9vw, 60px) !important;
  }

  .inner-hero-dim,
  .inner-hero-badge,
  .inner-hero-crosshair {
    display: none !important;
  }

  .inner-body {
    padding: 40px 20px 56px !important;
  }

  .inner-gallery {
    grid-template-columns: 1fr 1fr !important;
  }

  .prod-explore-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .case-studies-grid {
    grid-template-columns: 1fr !important;
  }

  .prod-page-cs-section {
    padding: 40px 20px 48px !important;
  }

  .prod-explore-more {
    padding: 40px 20px !important;
  }

  /* CONTACT FULL PAGE */
  #page-contact .contact-full-inner {
    grid-template-columns: 1fr !important;
    padding: 32px 20px 48px !important;
    gap: 28px !important;
  }

  #page-contact .contact-full-hero {
    padding: 70px 20px 36px !important;
  }

  /* BLOGS ALL PAGE */
  #page-blogs-all .blogs-all-grid {
    grid-template-columns: 1fr 1fr !important;
    padding: 32px 20px 48px !important;
  }

  #page-blogs-all .blogs-all-hero {
    padding: 70px 20px 36px !important;
  }

  /* FP FOOTER */
  .fp-footer {
    padding: 36px 20px !important;
  }

  .fp-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .fp-footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
    padding-top: 20px !important;
  }

  /* REVIEWS */
  .reviews-inner {
    padding: 0 20px !important;
  }

  .review-slide {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* BLOG DETAIL */
  .blog-detail-header {
    padding: 14px 16px !important;
  }

  .blog-detail-body {
    padding: 28px 16px 72px !important;
  }

  .blog-overlay-body {
    padding: 24px 20px 40px !important;
  }

  #blog-detail-overlay {
    padding: 0 !important;
    align-items: flex-end !important;
  }

  .blog-overlay-box {
    max-height: 90dvh;
    border-radius: 8px 8px 0 0 !important;
  }

  /* CASE STUDY DETAIL */
  .cs-header {
    padding: 14px 16px !important;
  }

  .cs-body {
    padding: 28px 16px 72px !important;
  }

  .cs-stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* === 480px and below === */
@media (max-width: 480px) {

  /* HERO */
  .hero-h1 {
    font-size: clamp(28px, 9vw, 40px) !important;
    line-height: 1.05 !important;
  }

  .hero-left {
    padding: 36px 16px 44px !important;
  }

  .hero-btns {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* PRODUCTS */
  .products-inner {
    padding: 0 0 0 16px !important;
  }

  .products-grid-4col {
    grid-template-columns: 1fr 1fr !important;
  }

  /* STANDARDS */
  .standards-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-row {
    grid-template-columns: 1fr !important;
  }

  .stat-num {
    font-size: clamp(28px, 8vw, 40px) !important;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  /* CATALOGUE */
  .cat-grid {
    grid-template-columns: 1fr !important;
  }

  /* INDUSTRIES */
  .industries-grid {
    grid-template-columns: 1fr !important;
  }

  /* MFG */
  .mfg-grid {
    grid-template-columns: 1fr !important;
  }

  /* BLOGS ALL */
  #page-blogs-all .blogs-all-grid {
    grid-template-columns: 1fr !important;
  }

  /* FORM */
  .form-footer {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .contact-form .form-submit {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* CASE STUDIES */
  .cs-stats-grid {
    grid-template-columns: 1fr !important;
  }

  .prod-explore-grid {
    grid-template-columns: 1fr !important;
  }

  /* FP FOOTER */
  .fp-footer-grid {
    grid-template-columns: 1fr !important;
  }

  /* INNER INFO */
  .inner-info-topbar {
    padding: 24px 16px 28px !important;
  }

  .inner-info-body-wrap {
    padding: 24px 16px 40px !important;
  }

  .contact-form-card {
    padding: 20px 16px !important;
  }

  /* REVIEWS */
  .rev-controls {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .rev-progress {
    display: none !important;
  }
}

/* ===== TOUCH & ACCESSIBILITY IMPROVEMENTS ===== */
@media (hover: none) {

  /* On touch devices, show hover-state content immediately */
  .prod-cat-arrow {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  .cs-img-card-cta {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Prevent horizontal scroll on all pages */
.full-page,
.inner-page {
  overflow-x: hidden !important;
}

/* Safe area support for notched phones */
@supports (padding: max(0px)) {
  header {
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
  }

  #mobile-nav-drawer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Improve tap targets on mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 48px !important;
  }

  .blogs-nav-btn {
    width: 48px !important;
    height: 48px !important;
  }

  .fp-back-btn {
    min-height: 44px !important;
  }

  .inner-back-header {
    min-height: 44px !important;
  }

  /* Sol items larger tap area */
  .sol-item-head {
    padding: 20px 0 !important;
    min-height: 60px;
  }

  .sol-item:hover .sol-item-head,
  .sol-item.open .sol-item-head {
    padding: 20px 16px !important;
  }

  /* Products conveyor better on mobile */
  .conveyor-track {
    padding: 10px 16px 28px !important;
  }

  .prod-cat {
    width: 160px !important;
  }

  /* Reduce sol title on mobile */
  .sol-title {
    font-size: clamp(20px, 5.5vw, 32px) !important;
  }

  /* Ticker readable on mobile */
  .cat-ticker-item {
    font-size: 10px !important;
    padding: 0 20px !important;
    gap: 20px !important;
  }

  /* Inner pages header â€” show back button only */
  .inner-page-header {
    gap: 12px !important;
  }

  /* About float label */
  .about-float-label {
    font-size: 9px !important;
    padding: 9px 14px !important;
    left: -8px !important;
    bottom: -8px !important;
  }

  /* Remove complex grid bg that can cause overflow */
  body::before,
  body::after {
    display: none;
  }
}


/* Standalone page offset for fixed navbar */
.standalone-page-content {
  padding-top: 72px;
}

/* ===========================================================================
   INNER PAGES FOOTER â€” match index page (.site-footer / footer-v2) visual style
   Maps .fp-footer-* classes onto the same colours, typography, and layout
   used by the index footer. No existing rules were modified.
   =========================================================================== */

/* Container â€” same deep-green background as .site-footer */
.fp-footer {
  background: #0d3b26 !important;
  border-top: none !important;
  padding: 0 !important;
  margin-top: 80px;
}

/* Top grid â€” matches .footer-v2-top */
.fp-footer-grid {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
  gap: 0 !important;
  max-width: var(--max-w) !important;
  margin: 0 auto !important;
  padding: 32px 60px 26px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 0 !important;
}

/* Brand column â€” matches .footer-v2-brand */
.fp-footer-grid>*:first-child {
  padding-right: 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand name â€” matches .footer-v2 logo/brand heading */
.fp-footer-brand-name {
  font-family: 'Sora', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--white, #fff) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}

/* Brand sub-tagline â€” matches .footer-v2-badge / subtle label */
.fp-footer-brand-sub {
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 16px !important;
}

/* Description text â€” matches .footer-v2-desc */
.fp-footer-desc {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  max-width: 350px !important;
}

/* Nav column title â€” matches .footer-v2-col-title */
.fp-footer-col-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--gold, #c9960a) !important;
  margin-bottom: 10px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* Nav column links container â€” matches .footer-v2-links */
.fp-footer-col-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  text-align: left !important;
}

/* Nav column links â€” matches .footer-v2-links a */
.fp-footer-col-links a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  padding: 5px 0 !important;
  transition: color 0.2s !important;
}

.fp-footer-col-links a:hover {
  color: var(--gold, #c9960a) !important;
}

/* Bottom bar â€” matches .footer-v2-bottom */
.fp-footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: var(--max-w) !important;
  margin: 0 auto !important;
  padding: 12px 64px !important;
  border-top: none !important;
}

/* Copyright text â€” matches .footer-v2-copy */
.fp-footer-copy {
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.35) !important;
  letter-spacing: 0.03em !important;
}

/* Nav columns â€” centred layout matches .footer-v2-col */
.fp-footer-col-links+.fp-footer-col-title,
.fp-footer-grid>*:not(:first-child) {
  padding: 0 24px;
  text-align: left;
}

/* INNER PAGES FOOTER â€” RESPONSIVE: 1024px */
@media (max-width: 1024px) {
  .fp-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
    padding: 40px 32px 36px !important;
  }

  .fp-footer-grid>*:first-child {
    border-right: none !important;
    padding-right: 0 !important;
    grid-column: 1 / -1 !important;
  }

  .fp-footer-bottom {
    flex-direction: column !important;
    gap: 14px !important;
    text-align: center !important;
    padding: 20px 32px !important;
  }
}

/* INNER PAGES FOOTER â€” RESPONSIVE: 600px */
@media (max-width: 600px) {
  .fp-footer-grid {
    grid-template-columns: 1fr !important;
    padding: 32px 20px 28px !important;
  }

  .fp-footer-bottom {
    padding: 16px 20px !important;
  }
}

/* ===========================================================================
   MOBILE RESPONSIVENESS FIXES
   =========================================================================== */
@media (max-width: 1024px) {
  .products-grid-4col {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

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

  .hero-h1 {
    font-size: 3rem !important;
  }

  .hero-sub {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {

  /* Navbar */
  .fp-header-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  /* Hero */
  .hero-h1 {
    font-size: 2.2rem !important;
  }

  .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-left {
    padding: 20px !important;
  }

  /* About */
  .about-inner {
    flex-direction: column !important;
  }

  .about-left,
  .about-video-wrap {
    width: 100% !important;
    padding-right: 0 !important;
  }

  .about-video-wrap {
    margin-top: 2rem !important;
  }

  /* Products */
  .products-grid-4col {
    grid-template-columns: 1fr !important;
  }

  /* Solutions */
  .sol-list {
    flex-direction: column !important;
  }

  .sol-item {
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .sol-item-head {
    padding: 15px !important;
  }

  /* Standards */
  .standards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Blogs */
  .blogs-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact */
  .contact-info-only {
    flex-direction: column !important;
  }

  .contact-info-only>div {
    width: 100% !important;
    margin-bottom: 2rem !important;
  }

  /* Footer */
  .footer-v2-top {
    flex-direction: column !important;
  }

  .footer-v2-col {
    margin-bottom: 2rem !important;
  }

  .footer-v2-contact-bar {
    flex-direction: column !important;
  }

  .footer-v2-contact-cell {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 15px 0 !important;
  }

  .footer-v2-contact-cell--border {
    border-left: none !important;
  }

  .footer-v2-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 1.8rem !important;
  }

  .hero-tag-line {
    font-size: 0.9rem !important;
  }

  .sect-label {
    font-size: 0.8rem !important;
  }

  .about-heading,
  .products-heading,
  .solutions-heading,
  .standards-heading,
  .blogs-heading,
  .contact-heading {
    font-size: 1.8rem !important;
  }
}

/* FIX: Hide JS injected hamburger if a native one exists in the same header */
.fp-header:has(.hamburger) .fp-hamburger,
.inner-page-header:has(.hamburger) .fp-hamburger,
header:has(.hamburger) .fp-hamburger {
  display: none !important;
}

/* ===== SOLUTIONS LANDING PAGE ===== */
.sol-landing-hero-section {
  padding: 120px 5% 0;
  max-width: 1400px;
  margin: 0 auto;
}

.sol-landing-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.sol-landing-hero-left {
  padding-right: 20px;
}

.sol-landing-hero-left .sect-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.sol-landing-hero-left .hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--g1) !important;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.sol-landing-hero-left .hero-h1 .gold {
  color: var(--gold) !important;
}

.sol-landing-hero-left .hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--sub) !important;
  line-height: 1.8;
  max-width: 580px;
}

.sol-landing-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sol-hero-mockup-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

/* Background Wireframe Decorator */
.sol-hero-wireframe {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1.5px dashed rgba(5, 53, 28, 0.08);
  transform: rotate(45deg);
  z-index: 1;
}

.sol-landing-section {
  padding: 60px 5% 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.sol-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sol-landing-card {
  position: relative;
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sol-landing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold) !important;
  box-shadow: 0 20px 40px rgba(5, 53, 28, 0.08);
}

.sol-landing-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}

.sol-landing-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sol-landing-card:hover .sol-landing-card-img-wrap img {
  transform: scale(1.06);
}

.sol-landing-card-tag {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--g1);
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 24px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.sol-landing-card-icon-circle {
  position: absolute;
  left: 32px;
  top: 212px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--g1);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 12;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sol-landing-card-icon-circle svg {
  width: 24px;
  height: 24px;
}

.sol-landing-card-body {
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.sol-landing-card-num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sol-landing-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--g1) !important;
  margin-bottom: 12px;
}

.sol-landing-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--sub) !important;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}

.sol-landing-card-link-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.sol-landing-card-link-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--g1) !important;
}

.sol-landing-card-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  transition: all 0.3s ease;
}

.sol-landing-card:hover .sol-landing-card-arrow-circle {
  border-color: var(--gold) !important;
  background: var(--gold);
  color: #ffffff;
}

.sol-landing-card-arrow-circle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.sol-landing-card:hover .sol-landing-card-arrow-circle svg {
  transform: translateX(3px);
}

/* Bottom Bar Features Row */
.sol-landing-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 40px;
  margin-top: 60px;
  gap: 30px;
}

.sol-landing-feature-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.sol-landing-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(5, 53, 28, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g1);
  flex-shrink: 0;
}

.sol-landing-feature-icon svg {
  width: 22px;
  height: 22px;
}

.sol-landing-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sol-landing-feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--g1) !important;
}

.sol-landing-feature-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--sub) !important;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .sol-landing-bottom-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .sol-landing-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .sol-landing-hero-left {
    padding-right: 0;
  }
  
  .sol-landing-hero-left .hero-sub {
    margin: 0 auto;
  }
  
  .sol-landing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sol-landing-hero-left .hero-h1 {
    font-size: 38px;
  }
  
  .sol-landing-grid {
    grid-template-columns: 1fr;
  }
  
  .sol-landing-card {
    height: auto;
  }
  
  .sol-landing-bottom-bar {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}



/* FIX: Hide JS injected hamburger if a native one exists in the same header */