/* ══════════════════════════════════════════
   LIBE — Long Island Business Enterprise
   Unified Style Sheet
   ══════════════════════════════════════════ */

:root {
  --color-navy:       #04558C;
  --color-navy-dark:  #033d6b;
  --color-navy-deep:  #042C53;
  --color-navy-abyss: #021D36;
  --color-orange:     #FB9C0A;
  --color-orange-hover:#e68900;
  --color-celeste:    #2749AA;
  --color-green:      #2BB673;
  --color-yellow:     #FEDE00;
  --color-red:        #CC3433;
  --color-black:      #414040;
  --color-white:      #FFFFFF;
  --color-light-bg:   #F5F6F8;
  --color-border:     #E2E4E8;
  --color-text-muted: #6B7280;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Instrument Sans', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.text-white { color: var(--color-white) !important; }
.text-muted-light { color: rgba(255,255,255,0.6) !important; }
.accent { color: var(--color-orange); }

/* ── Section base ── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-white { background: var(--color-white); }
.section-grey  { background: var(--color-light-bg); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(4,85,140,0.08);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-tag-light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
}
.section-sub {
  font-size: 16px;
  margin-top: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-orange);
  color: #000000;
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(251,156,10,0.3);
}
.btn-primary:hover {
  background: var(--color-orange-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251,156,10,0.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  padding: 12px 28px;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
}
.btn-cta {
  background: var(--color-orange);
  color: #000000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
}
.btn-cta:hover {
  background: var(--color-orange-hover);
  color: #000000;
  transform: translateY(-1px);
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn-text {
  color: var(--color-navy);
  font-weight: 600;
  padding: 0;
  font-size: 15px;
}
.btn-text:hover { color: var(--color-orange); }

/* ══════════════════════════════
   PRELOADER
   ══════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.preloader-logo {
  width: 160px;
  filter: brightness(0) invert(1);
}
.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.preloader-progress {
  width: 0%;
  height: 100%;
  background: var(--color-orange);
  border-radius: 3px;
}

/* ══════════════════════════════
   NAVBAR
   ══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid rgba(2, 29, 54, 0.08);
  transition: padding 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(2, 29, 54, 0.08);
  padding: 10px 40px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo {
  height: 44px;
  transition: height 0.3s ease;
}
.navbar.scrolled .nav-logo { height: 38px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: rgba(2, 29, 54, 0.72);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-navy);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta { font-size: 13px; padding: 9px 20px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  gap: 5px;
  width: 26px;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   NAVBAR DROPDOWN
   ══════════════════════════════ */
.nav-item.has-dropdown,
.nav-menu .menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item.has-dropdown > .nav-link,
.nav-menu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-caret {
  transition: transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown:focus-within .nav-caret,
.nav-menu .menu-item-has-children:hover > a .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  margin-left: 4px;
  cursor: pointer;
  color: inherit;
  border-radius: 4px;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-dropdown,
.nav-menu .menu-item-has-children .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid rgba(2, 29, 54, 0.08);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(2, 29, 54, 0.14);
  padding: 10px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.28s var(--ease-out-expo),
              transform 0.28s var(--ease-out-expo),
              visibility 0.28s linear;
  z-index: 1001;
}
.nav-dropdown::before,
.nav-menu .menu-item-has-children .sub-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown,
.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link,
.nav-menu .menu-item-has-children .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(2, 29, 54, 0.78);
  border-radius: 7px;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, padding 0.25s var(--ease-out-expo);
}
.nav-dropdown-link::before,
.nav-menu .menu-item-has-children .sub-menu a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--color-orange);
  transition: width 0.25s var(--ease-out-expo);
  margin-right: 0;
}
.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible,
.nav-menu .menu-item-has-children .sub-menu a:hover {
  background: rgba(2, 29, 54, 0.04);
  color: var(--color-navy);
  padding-left: 18px;
}
.nav-dropdown-link:hover::before {
  width: 8px;
  margin-right: 4px;
}

.nav-dropdown-all {
  justify-content: space-between !important;
  gap: 12px !important;
  margin-top: 6px;
  padding-top: 14px !important;
  padding-bottom: 12px !important;
  border-top: 1px solid rgba(2, 29, 54, 0.08);
  font-weight: 600 !important;
  color: var(--color-orange) !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  border-radius: 0 0 8px 8px !important;
}
.nav-dropdown-all svg {
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-dropdown-all:hover {
  background: transparent !important;
  color: var(--color-orange) !important;
}
.nav-dropdown-all:hover svg {
  transform: translateX(3px);
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: #021d36;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 29, 54, 0.35) 0%,
    rgba(4, 44, 83, 0.25) 50%,
    rgba(2, 29, 54, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
}

.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hero-dot.is-active {
  width: 44px;
  background: rgba(255,255,255,0.35);
}
.hero-dot:hover {
  background: rgba(255,255,255,0.5);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,156,10,0.15);
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(251,156,10,0.25);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.line-wrap {
  display: block;
  overflow: hidden;
}
.line-inner {
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 620px;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero .btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--color-white);
  padding: 12px 28px;
  background: rgba(255,255,255,0.06);
}
.hero .btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.12);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.stat-num-wrap {
  display: flex;
  align-items: baseline;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-orange);
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; }
}

/* ══════════════════════════════
   TRUST BAR
   ══════════════════════════════ */
.trust-bar {
  background: var(--color-light-bg);
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
}
.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════
   BENEFITS
   ══════════════════════════════ */
#benefits {
  background:
    radial-gradient(circle at 15% 20%, rgba(4,85,140,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(251,156,10,0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-light-bg) 0%, var(--color-white) 100%);
  position: relative;
  overflow: hidden;
}
#benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(4,85,140,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
#benefits::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4,85,140,0.1) 30%, rgba(251,156,10,0.1) 70%, transparent);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--color-navy-deep);
  border: 1px solid rgba(4,85,140,0.15);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), rgba(251,156,10,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.benefit-card:hover {
  border-color: rgba(251,156,10,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(4,85,140,0.2);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover .benefit-num {
  color: var(--color-orange);
}
.benefit-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: all 0.5s;
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.75);
  transition: all 0.4s;
}
.benefit-card:hover .benefit-icon {
  color: var(--color-orange);
  background: rgba(251,156,10,0.12);
  border-color: rgba(251,156,10,0.2);
}
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.benefit-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══════════════════════════════
   ABOUT
   ══════════════════════════════ */
#about {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(4,85,140,0.02) 100%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image-inner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(4,85,140,0.18);
  position: relative;
  z-index: 2;
}
.about-image-inner img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-orange);
  border-radius: 20px;
  z-index: 1;
}
.about-exp-badge {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--color-navy-deep);
  color: var(--color-white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(2,25,52,0.4);
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.05);
}
.about-exp-num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-orange);
}
.about-exp-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.about-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-logo {
  width: 110px;
  height: auto;
  opacity: 0.7;
}
.about-content .section-tag { margin-bottom: 14px; }
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 14px;
}
.about-text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 15px;
}

.about-stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat-num-wrap {
  display: flex;
  align-items: baseline;
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: 0.02em;
}
.about-stat-suffix {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-orange);
}
.about-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
}
.about-checklist li svg { flex-shrink: 0; }

/* ══════════════════════════════
   STANDARDS & COMPLIANCE
   ══════════════════════════════ */
.standards-section {
  position: relative;
  overflow: hidden;
}
.standards-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(4,85,140,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.standard-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.standard-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out-expo);
}
.standard-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(4,85,140,0.25);
  box-shadow: 0 12px 28px rgba(4,85,140,0.08);
}
.standard-badge:hover::before {
  transform: scaleY(1);
}
.standard-code {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--color-navy);
  line-height: 1;
}
.standard-name {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .standards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .standards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .standard-badge { padding: 18px 14px; }
  .standard-code { font-size: 22px; }
}

/* ── Certification logo marquee ── */
.cert-marquee {
  position: relative;
  margin: 0 0 56px;
  padding: 28px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(4,85,140,0.06);
}
.cert-marquee::before,
.cert-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.cert-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.cert-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f6f9fc 0%, rgba(246,249,252,0) 100%);
}
.cert-marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: certScroll 38s linear infinite;
  will-change: transform;
}
.cert-marquee:hover .cert-marquee-track {
  animation-play-state: paused;
}
.cert-logo {
  flex: 0 0 auto;
  height: 70px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out-expo);
}
.cert-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.cert-logo:hover {
  transform: translateY(-4px) scale(1.06);
}
@keyframes certScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .cert-marquee { margin-bottom: 40px; padding: 22px 0; border-radius: 14px; }
  .cert-marquee-track { gap: 28px; animation-duration: 30s; }
  .cert-logo { height: 52px; width: 95px; }
  .cert-marquee::before, .cert-marquee::after { width: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .cert-marquee-track { animation: none; }
}

/* ══════════════════════════════
   PRODUCTS (Homepage Section)
   ══════════════════════════════ */
.products-section {
  background: var(--color-white);
  position: relative;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #edf4f9;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), #ffb74d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 2;
}
.product-card:hover::before {
  transform: scaleX(1);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(4,85,140,0.12);
  border-color: transparent;
}
.product-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}
.product-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(251,156,10,0.92);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.product-body {
  padding: 20px 22px 24px;
}
.product-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.product-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.product-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-navy);
  background: rgba(4,85,140,0.06);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}
.product-card:hover .product-tags span {
  background: rgba(4,85,140,0.1);
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  transition: gap 0.3s;
}
.product-link:hover {
  gap: 10px;
  color: var(--color-orange-hover);
}
.products-bottom {
  text-align: center;
  margin-top: 48px;
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s var(--ease-out-expo);
  background: transparent;
  cursor: pointer;
}
.btn-outline-navy:hover {
  background: var(--color-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4,85,140,0.25);
}

/* ══════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════ */
.why-us {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.why-us-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.why-us .section-header h2 { color: var(--color-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-item {
  text-align: center;
  padding: 0 28px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.why-item:last-child {
  border-right: none;
}
.why-bg-num {
  position: absolute;
  bottom: 195px;
  right: 8px;
  font-family: var(--font-heading);
  font-size: 110px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--accent, var(--color-orange));
  transition: all 0.5s var(--ease-out-expo);
}
.why-item:hover .why-icon {
  background: var(--accent);
  color: var(--color-white);
  border-color: var(--accent);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 24px rgba(251,156,10,0.2);
}
.why-stat {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}
.why-stat-unit {
  color: var(--accent, var(--color-orange));
  font-size: 36px;
}
.why-line {
  width: 36px;
  height: 2px;
  background: var(--accent, var(--color-orange));
  margin: 0 auto 18px;
  border-radius: 2px;
  transition: width 0.5s var(--ease-out-expo);
}
.why-item:hover .why-line {
  width: 56px;
}
.why-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.why-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(4,85,140,0.06);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-item-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
}
.contact-map-placeholder {
  background: var(--color-light-bg);
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
}

/* Form */
.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(4,85,140,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  position: relative;
  margin-bottom: 18px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-light-bg);
  font-size: 15px;
  color: var(--color-black);
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(4,85,140,0.08);
}
.form-group label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 15px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  left: 12px;
  font-size: 11px;
  color: var(--color-navy);
  background: var(--color-white);
  font-weight: 600;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--color-red);
  background: rgba(204,52,51,0.03);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43,182,115,0.1);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.form-success p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: var(--color-navy-deep);
  padding-top: 70px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--color-orange);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--color-orange); }
.footer-col a.btn-cta { color: #000000; }
.footer-col a.btn-cta:hover { color: #000000; }

.footer-bottom {
  background: var(--color-navy-abyss);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom .social-link {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

/* ══════════════════════════════
   PRODUCT SHOWCASE
   ══════════════════════════════ */
.showcase-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy-abyss) 100%);
  position: relative;
  overflow: hidden;
}
.showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.showcase-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,156,10,0.15) 50%, transparent);
}

.showcase-viewport {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
.showcase-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.showcase-card {
  flex: 0 0 268px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.showcase-card:hover {
  border-color: rgba(251,156,10,0.3);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.showcase-img {
  background: var(--color-white);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  position: relative;
  overflow: hidden;
}
.showcase-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.03), transparent);
  pointer-events: none;
}
.showcase-img img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out-expo);
}
.showcase-card:hover .showcase-img img {
  transform: scale(1.08);
}

.showcase-info {
  padding: 24px 24px 28px;
}
.showcase-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: 10px;
}
.showcase-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.showcase-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  line-height: 1.5;
}
.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  transition: all 0.3s;
}
.showcase-cta:hover {
  color: var(--color-white);
  gap: 10px;
}

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.showcase-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
}
.showcase-arrow:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #000;
}
.showcase-dots {
  display: flex;
  gap: 10px;
}
.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.4s var(--ease-out-expo);
}
.showcase-dot.active {
  background: var(--color-orange);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(251,156,10,0.4);
}

/* ══════════════════════════════
   GSAP ANIMATION TARGETS
   ══════════════════════════════ */
.hero-content,
.hero-scroll-hint {
  visibility: hidden;
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════ */

/* ── Breadcrumb ── */
.pd-breadcrumb-section {
  padding: 100px 0 0;
  background: var(--color-white);
}
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.pd-breadcrumb a {
  color: var(--color-navy);
  font-weight: 500;
  transition: color 0.3s;
}
.pd-breadcrumb a:hover {
  color: var(--color-orange);
}
.pd-breadcrumb svg {
  color: var(--color-border);
  flex-shrink: 0;
}
.pd-breadcrumb span {
  color: var(--color-text-muted);
}

/* ── Product Hero ── */
.pd-hero {
  padding: 48px 0 64px;
  background: var(--color-white);
}
.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.pd-gallery {
  position: sticky;
  top: 100px;
}
.pd-main-image {
  position: relative;
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 420px;
  cursor: zoom-in;
}
.pd-main-image img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out-expo);
}
.pd-main-image:hover img {
  transform: scale(1.05);
}
.pd-zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: all 0.3s;
  border: 1px solid var(--color-border);
}
.pd-zoom-btn:hover {
  background: var(--color-orange);
  color: #000;
  border-color: var(--color-orange);
}

.pd-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.pd-thumb {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  background: var(--color-light-bg);
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pd-thumb:hover {
  border-color: var(--color-navy);
}
.pd-thumb.active {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 1px var(--color-orange);
}

/* Product Info */
.pd-info {
  padding-top: 8px;
}
.pd-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: 12px;
}
.pd-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.pd-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.pd-specs {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.pd-spec-row {
  display: flex;
  padding: 14px 20px;
  font-size: 14px;
  transition: background 0.2s;
}
.pd-spec-row:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.pd-spec-row:hover {
  background: var(--color-light-bg);
}
.pd-spec-label {
  flex: 0 0 120px;
  font-weight: 600;
  color: var(--color-navy);
}
.pd-spec-value {
  color: var(--color-text-muted);
}

.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.pd-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 10px 0;
  transition: all 0.3s;
}
.pd-next-btn:hover {
  color: var(--color-orange);
  gap: 12px;
}

/* ── Details & Specifications ── */
.pd-details {
  padding: 0 0 80px;
  background: var(--color-white);
}
.pd-section-block {
  margin-bottom: 48px;
}
.pd-section-block:last-child {
  margin-bottom: 0;
}
.pd-section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-orange);
  display: inline-block;
}

/* Description */
.pd-description {
  max-width: 860px;
  margin-bottom: 48px;
}
.pd-section-image {
  margin: 0 0 24px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-light-bg);
}
.pd-section-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}
.pd-description p {
  font-size: 16px;
  color: var(--color-black);
  line-height: 1.8;
  margin-bottom: 20px;
}
.pd-description p:last-child {
  margin-bottom: 0;
}

/* ── Spec Tables ── */
.pd-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}
.pd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.pd-table thead {
  background: var(--color-navy);
}
.pd-table th {
  color: var(--color-white);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  text-align: center;
  white-space: nowrap;
}
.pd-table th:first-child {
  text-align: left;
}
.pd-table td {
  padding: 12px 16px;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  white-space: nowrap;
}
.pd-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-navy);
  white-space: normal;
  min-width: 220px;
}
.pd-table tbody tr:hover {
  background: rgba(4,85,140,0.02);
}
.pd-table tbody tr:last-child td {
  border-bottom: none;
}
.pd-table tbody tr:nth-child(even) {
  background: var(--color-light-bg);
}
.pd-table tbody tr:nth-child(even):hover {
  background: rgba(4,85,140,0.04);
}

/* ── Recommended Products ── */
.pd-recommended {
  padding: 80px 0;
  background: var(--color-light-bg);
}
.pd-rec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.pd-rec-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}
.pd-rec-viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  transition: gap 0.3s;
}
.pd-rec-viewall:hover {
  gap: 10px;
  color: var(--color-orange-hover);
}

.pd-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pd-rec-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  isolation: isolate;
}
.pd-rec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(4,85,140,0.1);
  border-color: transparent;
}
.pd-rec-img {
  height: 200px;
  background: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.pd-rec-img img {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out-expo);
}
.pd-rec-card:hover .pd-rec-img img {
  transform: scale(1.08);
}
.pd-rec-info {
  padding: 20px;
}
.pd-rec-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: 6px;
  display: block;
}
.pd-rec-info h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.5px;
}

/* ── Inquiry Form ── */
.pd-inquiry {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.pd-inquiry-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.pd-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.pd-inquiry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pd-inquiry-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.pd-inquiry-info > p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}

.pd-inquiry-promises {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.pd-promise {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pd-promise-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(251,156,10,0.1);
  border: 1px solid rgba(251,156,10,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
}
.pd-promise strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}
.pd-promise span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.pd-inquiry-contact {
  display: flex;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pd-inquiry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: color 0.3s;
}
.pd-inquiry-item:hover {
  color: var(--color-orange);
}
.pd-inquiry-item svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

.pd-inquiry-form {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.pd-form-header {
  margin-bottom: 28px;
}
.pd-form-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.pd-form-header p {
  font-size: 13px;
  color: var(--color-text-muted);
}
.pd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pd-form-group {
  position: relative;
  margin-bottom: 16px;
}
.pd-form-group input,
.pd-form-group textarea {
  width: 100%;
  padding: 16px 18px 8px;
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--color-black);
  outline: none;
  transition: all 0.3s;
}
.pd-form-group input:focus,
.pd-form-group textarea:focus {
  border-color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(4,85,140,0.08);
}
.pd-form-group label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
}
.pd-form-group textarea ~ label {
  top: 20px;
}
.pd-form-group input:focus ~ label,
.pd-form-group input:not(:placeholder-shown) ~ label,
.pd-form-group textarea:focus ~ label,
.pd-form-group textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: translateY(0);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-navy);
}
.pd-form-group input[readonly] {
  background: rgba(4,85,140,0.04);
  color: var(--color-navy);
  font-weight: 500;
}
.pd-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ── Lightbox ── */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.pd-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.pd-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,29,54,0.95);
  backdrop-filter: blur(20px);
}
.pd-lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-lightbox-img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out-expo);
}
.pd-lightbox.active .pd-lightbox-img {
  transform: scale(1);
}
.pd-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}
.pd-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}
.pd-lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}
.pd-lightbox-arrow:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #000;
}
.pd-lightbox-prev { left: 24px; }
.pd-lightbox-next { right: 24px; }

.pd-lightbox-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  z-index: 10;
}

/* ══════════════════════════════════════════
   PRODUCT LISTING PAGE
   ══════════════════════════════════════════ */

/* ── Page Header ── */
.pl-header {
  padding: 110px 0 48px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.pl-header-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.pl-header .pd-breadcrumb {
  margin-bottom: 24px;
}
.pl-header .pd-breadcrumb a {
  color: rgba(255,255,255,0.6);
}
.pl-header .pd-breadcrumb a:hover {
  color: var(--color-orange);
}
.pl-header .pd-breadcrumb svg {
  color: rgba(255,255,255,0.25);
}
.pl-header .pd-breadcrumb span {
  color: rgba(255,255,255,0.4);
}
.pl-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pl-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

/* Search */
.pl-search-wrap {
  position: relative;
  max-width: 520px;
}
.pl-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}
.pl-search {
  width: 100%;
  padding: 16px 48px 16px 52px;
  background: var(--color-white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  color: var(--color-black);
  outline: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s;
}
.pl-search::placeholder {
  color: var(--color-text-muted);
}
.pl-search:focus {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 0 3px rgba(251,156,10,0.3);
}
.pl-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-light-bg);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.2s;
}
.pl-search-clear.visible {
  display: flex;
}
.pl-search-clear:hover {
  background: var(--color-border);
  color: var(--color-navy);
}

/* ── Main Layout ── */
.pl-main {
  padding: 48px 0 80px;
  background: var(--color-light-bg);
}
.pl-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── Sidebar ── */
.pl-sidebar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 90px;
}
.pl-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.pl-sidebar-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.5px;
}
.pl-sidebar-close {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.2s;
}
.pl-sidebar-close:hover {
  background: var(--color-light-bg);
  color: var(--color-navy);
}
.pl-cat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pl-cat-btn {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pl-cat-btn:hover {
  background: var(--color-light-bg);
  color: var(--color-navy);
}
.pl-cat-btn.active {
  background: rgba(4,85,140,0.06);
  color: var(--color-navy);
  font-weight: 600;
}
.pl-cat-btn.active::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--color-orange);
  border-radius: 3px;
  margin-right: 10px;
  flex-shrink: 0;
}
.pl-cat-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-light-bg);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 28px;
  text-align: center;
}
.pl-cat-btn.active .pl-cat-count {
  background: rgba(4,85,140,0.1);
  color: var(--color-navy);
}

/* ── Content area ── */
.pl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pl-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  transition: all 0.2s;
}
.pl-filter-toggle:hover {
  border-color: var(--color-navy);
}
.pl-result-info {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ── Product Grid ── */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pl-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  isolation: isolate;
  position: relative;
  display: block;
}
.pl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), #ffb74d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 2;
}
.pl-card:hover::before {
  transform: scaleX(1);
}
.pl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(4,85,140,0.1);
  border-color: transparent;
}
.pl-card-img {
  height: 180px;
  background: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pl-card-img img {
  max-height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out-expo);
}
.pl-card:hover .pl-card-img img {
  transform: scale(1.08);
}
.pl-card-body {
  padding: 18px 20px 20px;
  background: var(--color-light-bg);
}
.pl-card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  margin-bottom: 6px;
}
.pl-card-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.pl-card-body p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pl-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  transition: gap 0.3s;
}
.pl-card:hover .pl-card-link {
  gap: 9px;
  color: var(--color-orange-hover);
}

/* ── Empty state ── */
.pl-empty {
  text-align: center;
  padding: 80px 20px;
}
.pl-empty svg {
  margin-bottom: 20px;
}
.pl-empty h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.pl-empty p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ── Pagination ── */
.pl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.pl-page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
  padding: 0 4px;
}
.pl-page-btn:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.pl-page-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}
.pl-page-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.pl-page-dots {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ── Mobile sidebar overlay ── */
.pl-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.pl-sidebar-overlay.active {
  display: block;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: right 0.4s var(--ease-out-expo);
    box-shadow: -10px 0 40px rgba(2, 29, 54, 0.18);
    z-index: 1000;
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 18px; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  /* Mobile dropdown — inline reveal, scrollable */
  .nav-menu {
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 80px;
    overflow-y: auto;
  }
  .nav-item.has-dropdown,
  .nav-menu .menu-item-has-children {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
  }
  .nav-item.has-dropdown > .nav-link,
  .nav-menu .menu-item-has-children > a {
    width: 100%;
    padding-right: 40px;
  }
  .nav-caret { display: none; }
  .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: -8px;
    width: 36px;
    height: 36px;
    color: var(--color-navy);
  }
  .nav-dropdown-toggle.is-open {
    transform: rotate(180deg);
  }
  .nav-dropdown,
  .nav-menu .menu-item-has-children .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.35s var(--ease-out-expo);
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 0;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
  }
  .nav-item.has-dropdown.is-open .nav-dropdown,
  .nav-menu .menu-item-has-children.is-open .sub-menu {
    max-height: 720px;
    padding: 6px 0 10px;
  }
  .nav-dropdown-link,
  .nav-menu .menu-item-has-children .sub-menu a {
    font-size: 14px;
    padding: 8px 14px;
    white-space: normal;
  }
  .nav-dropdown-link:hover,
  .nav-menu .menu-item-has-children .sub-menu a:hover {
    padding-left: 18px;
  }
  .nav-dropdown-all {
    font-size: 11px !important;
    padding: 12px 14px !important;
  }
  .nav-item.has-dropdown:hover .nav-caret,
  .nav-item.has-dropdown:focus-within .nav-caret {
    transform: none;
  }
  .nav-item.has-dropdown:hover > .nav-dropdown,
  .nav-item.has-dropdown:focus-within > .nav-dropdown,
  .nav-menu .menu-item-has-children:hover > .sub-menu,
  .nav-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-inner { gap: 40px; }
  .hero { padding-top: 100px; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { padding: 28px 22px; }
  .benefit-num { font-size: 44px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-img { height: 180px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { padding: 0 24px 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .why-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .why-item:nth-child(n+3) { padding-top: 32px; border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .showcase-card { flex: 0 0 250px; }
  .showcase-img { height: 220px; padding: 24px; }
  .showcase-img img { max-height: 170px; }

  /* Product Detail responsive */
  .pd-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pd-gallery {
    position: static;
  }
  .pd-rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pd-inquiry-contact {
    gap: 20px;
  }

  /* Product Listing responsive */
  .pl-layout {
    grid-template-columns: 1fr;
  }
  .pl-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    border-radius: 0;
    border: none;
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.4s var(--ease-out-expo);
    padding: 24px;
  }
  .pl-sidebar.open {
    left: 0;
    box-shadow: 10px 0 40px rgba(0,0,0,0.2);
  }
  .pl-sidebar-close {
    display: flex;
  }
  .pl-filter-toggle {
    display: flex;
  }
  .pl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 36px; }

  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(28px, 7vw, 38px); }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
  .hero-scroll-hint { display: none; }
  .hero-slider-dots { right: 50%; transform: translateX(50%); bottom: 20px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-img { height: 160px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 28px 0; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .why-item:last-child { border-bottom: none; }
  .why-stat { font-size: 42px; }
  .why-bg-num { font-size: 80px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .trust-bar-inner {
    justify-content: center;
    gap: 20px;
  }
  .trust-item span { font-size: 12px; }

  .about-image-accent { display: none; }
  .about-exp-badge { right: 10px; bottom: -15px; padding: 14px 18px; }
  .about-exp-num { font-size: 32px; }
  .about-stats-row { gap: 20px; }
  .about-stat-num { font-size: 28px; }
  .about-checklist { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 24px; }
  .contact-map-placeholder { display: none; }

  .showcase-section { padding: 70px 0 60px; }
  .showcase-card { flex: 0 0 240px; }
  .showcase-img { height: 190px; padding: 20px; }
  .showcase-img img { max-height: 150px; }
  .showcase-info { padding: 20px; }
  .showcase-info h3 { font-size: 19px; }
  .showcase-arrow { width: 40px; height: 40px; }
  .showcase-controls { gap: 14px; margin-top: 24px; }

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

  /* Product Detail mobile */
  .pd-breadcrumb-section {
    padding-top: 80px;
  }
  .pd-breadcrumb {
    font-size: 13px;
    gap: 6px;
  }
  .pd-hero {
    padding: 32px 0 48px;
  }
  .pd-main-image {
    min-height: 300px;
    padding: 24px;
  }
  .pd-main-image img {
    max-height: 240px;
  }
  .pd-thumbs {
    gap: 8px;
  }
  .pd-thumb {
    padding: 6px;
    border-radius: 8px;
  }
  .pd-actions {
    flex-direction: column;
  }
  .pd-actions .btn {
    justify-content: center;
  }
  .pd-rec-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pd-rec-grid {
    grid-template-columns: 1fr;
  }
  .pd-inquiry {
    padding: 70px 0;
  }
  .pd-inquiry-contact {
    flex-direction: column;
    gap: 12px;
  }
  .pd-inquiry-form {
    padding: 24px;
    border-radius: 16px;
  }
  .pd-form-row {
    grid-template-columns: 1fr;
  }
  .pd-lightbox-arrow {
    width: 42px;
    height: 42px;
  }
  .pd-lightbox-prev { left: 12px; }
  .pd-lightbox-next { right: 12px; }

  /* Product Listing mobile */
  .pl-header {
    padding: 90px 0 36px;
  }
  .pl-grid {
    grid-template-columns: 1fr;
  }
  .pl-card-img {
    height: 160px;
  }
  .pl-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pl-page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ══════════════════════════════
   DOWNLOADS PAGE
   ══════════════════════════════ */
.dl-section {
  padding: 64px 0 96px;
  background: var(--color-light-bg);
}

.dl-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.dl-chip {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-navy);
  background: #ffffff;
  border: 1px solid rgba(2, 29, 54, 0.12);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  letter-spacing: 0.01em;
}
.dl-chip:hover {
  border-color: var(--color-navy);
  transform: translateY(-1px);
}
.dl-chip.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(2, 29, 54, 0.18);
}

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

.dl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(2, 29, 54, 0.08);
  border-radius: 14px;
  padding: 28px 26px 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo);
}
.dl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange) 0%, #ce302d 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out-expo);
}
.dl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 29, 54, 0.16);
  box-shadow: 0 18px 44px rgba(2, 29, 54, 0.10);
}
.dl-card:hover::before {
  transform: scaleX(1);
}

.dl-card-icon {
  position: relative;
  width: 52px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ce302d;
  background: linear-gradient(160deg, rgba(206, 48, 45, 0.08) 0%, rgba(206, 48, 45, 0.02) 100%);
  border: 1px solid rgba(206, 48, 45, 0.18);
  border-radius: 8px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.dl-card-icon svg {
  width: 26px;
  height: 26px;
}
.dl-card-ext {
  position: absolute;
  bottom: -6px;
  right: -8px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #ffffff;
  background: #ce302d;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(206, 48, 45, 0.32);
}

.dl-card-body {
  flex: 1;
  margin-bottom: 22px;
}
.dl-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  background: rgba(2, 29, 54, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.dl-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 8px;
}
.dl-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.dl-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(2, 29, 54, 0.08);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.dl-card-cta svg {
  transition: transform 0.4s var(--ease-out-expo);
}
.dl-card:hover .dl-card-cta {
  color: #ce302d;
}
.dl-card:hover .dl-card-cta svg {
  transform: translateY(2px);
}

.dl-card-feature {
  background: linear-gradient(160deg, #ffffff 0%, rgba(2, 29, 54, 0.03) 100%);
  border-color: rgba(2, 29, 54, 0.14);
}
.dl-card-feature .dl-card-icon {
  color: var(--color-navy);
  background: linear-gradient(160deg, rgba(2, 29, 54, 0.08) 0%, rgba(2, 29, 54, 0.02) 100%);
  border-color: rgba(2, 29, 54, 0.18);
}
.dl-card-feature .dl-card-ext {
  background: var(--color-navy);
  box-shadow: 0 4px 10px rgba(2, 29, 54, 0.28);
}
.dl-card-feature::before {
  background: linear-gradient(90deg, var(--color-navy) 0%, #48a1d3 100%);
}

.dl-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.dl-help {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.dl-help::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.dl-help-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: var(--color-orange);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.dl-help-body {
  flex: 1;
  position: relative;
  z-index: 1;
}
.dl-help-body h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 4px;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.dl-help-body p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.dl-help .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .dl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .dl-section { padding: 40px 0 72px; }
  .dl-grid { grid-template-columns: 1fr; gap: 16px; }
  .dl-filter { gap: 8px; margin-bottom: 28px; }
  .dl-chip { font-size: 12px; padding: 8px 14px; }
  .dl-card { padding: 24px 22px 18px; }
  .dl-card-title { font-size: 16.5px; }
  .dl-help {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    gap: 16px;
  }
}
