/* ============== UNIVERSAL SAFETY NET (mobile hardening) ============== */
* { -webkit-tap-highlight-color: transparent; }
img, iframe { max-width: 100%; }

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

:root {
  --bg: #0D0D0D;
  --bg-2: #141414;
  --bg-3: #1C1C1C;
  --bg-4: #232323;
  --border: #2A2A2A;
  --border-2: #383838;
  --orange: #FF6B00;
  --orange-2: #FF8C00;
  --amber: #FFB800;
  --green: #00C853;
  --text: #FFFFFF;
  --text-2: #B0B0B0;
  --text-3: #707070;
  --radius: 4px;
  --radius-lg: 6px;
  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --shadow-orange: 0 18px 50px -20px rgba(255, 107, 0, 0.5);
  --easing: cubic-bezier(.2, .8, .2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font-family: inherit; }
:lang(gu) { font-family: 'Noto Sans Gujarati', 'DM Sans', sans-serif; }

/* selection */
::selection { background: var(--orange); color: #000; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); width: 100%; }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--easing), background .3s var(--easing), border-color .3s var(--easing);
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  border-bottom-color: var(--orange);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--pad);
  display: flex; align-items: center; gap: 32px;
  transition: padding .3s var(--easing);
}
.nav.scrolled .nav-inner { padding-top: 12px; padding-bottom: 12px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  background: var(--orange);
  color: #000;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  letter-spacing: 1px;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px -4px rgba(255, 107, 0, 0.5);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 400;
}
.logo-text em {
  font-style: normal;
  font-size: 11px;
  color: var(--text-2);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  position: relative; padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--orange);
  transition: width .3s var(--easing);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #000;
  font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: var(--radius);
  letter-spacing: 0.3px;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), background .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); background: var(--orange-2); }
.nav-cta .dot {
  width: 8px; height: 8px; background: #000; border-radius: 50%;
  animation: pulse-dot 1.4s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(0,0,0,0); }
}

.hamburger {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 8px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
}
.hamburger span {
  display: block; height: 2px; background: var(--text);
  transition: transform .3s var(--easing), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px var(--pad) 80px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: 20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--text-2); text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.02);
}
.eyebrow .pulse {
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
  100% { box-shadow: 0 0 0 12px rgba(255, 107, 0, 0); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--orange); position: relative; display: inline-block; }
.hero-title .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px; background: var(--orange);
  transform-origin: left; animation: line-draw 1.2s var(--easing) .3s both;
}
@keyframes line-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-sub .bullet { color: var(--orange); margin: 0 4px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-weight: 600; font-size: 15px;
  border-radius: var(--radius);
  letter-spacing: 0.4px;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: #000; }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; padding: 18px 28px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin-bottom: 28px;
}
.stat {
  position: relative; padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1; letter-spacing: 1px;
  color: var(--text);
  display: flex; align-items: baseline; gap: 2px;
}
.stat-num .suffix { font-size: 0.6em; color: var(--orange); margin-left: 2px; }
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-2);
  margin-top: 8px;
}

.hero-marquee {
  overflow: hidden; max-width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 36px; white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--text-3);
  animation: marquee 28s linear infinite;
}
.marquee-track span:nth-child(even) { color: var(--orange); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-visual {
  position: relative; z-index: 2;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  aspect-ratio: 3/4;
  animation: float 6s ease-in-out infinite;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7));
  pointer-events: none;
}
.hero-tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.dot-pulse {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,200,83,0.7);
  animation: pulse-ring-green 2s ease-out infinite;
}
@keyframes pulse-ring-green {
  0% { box-shadow: 0 0 0 0 rgba(0,200,83,0.7); }
  100% { box-shadow: 0 0 0 12px rgba(0,200,83,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============== SECTION SCAFFOLD ============== */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section-brands { background: var(--bg-2); }
.section-products { background: var(--bg); }
.section-why { background: var(--bg-2); }
.section-how { background: var(--bg); }
.section-about { background: var(--bg-2); }
.section-contact { background: var(--bg); }

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 760px; margin-left: auto; margin-right: auto;
  padding: 0 var(--pad);
}
.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 4px 0;
  position: relative;
}
.kicker.small { font-size: 11px; margin-bottom: 8px; }
.kicker::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--orange);
  margin-right: 12px; vertical-align: middle;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.section-title.left { text-align: left; }
.section-title .accent { color: var(--orange); }

.section-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-2);
  max-width: 640px; margin: 0 auto;
}

/* ============== BRANDS ============== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 var(--pad);
  max-width: 980px;
  margin: 0 auto;
}
.brand-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 36px 32px;
  transition: transform .35s var(--easing), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.brand-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: translateX(-100%); transition: transform .6s var(--easing);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-orange); }
.brand-card:hover::after { transform: translateX(100%); }

.brand-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 2px;
  color: var(--text-3);
  margin-bottom: 12px;
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 6px;
}
.brand-card-feature .brand-name { color: var(--orange); }
.brand-tag {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.brand-specs {
  list-style: none; padding: 0; margin: 0 0 20px;
  border-top: 1px solid var(--border);
}
.brand-specs li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
}
.brand-specs li span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-3);
  text-transform: uppercase;
}
.brand-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============== FILTERS ============== */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 var(--pad);
}
.filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-2);
  transition: all .25s var(--easing);
}
.filter .count {
  font-size: 11px;
  background: var(--bg-4);
  padding: 2px 8px;
  border-radius: 100px;
  color: var(--text-3);
  font-weight: 700;
}
.filter:hover { border-color: var(--orange); color: var(--text); }
.filter.active {
  background: var(--orange); color: #000;
  border-color: var(--orange);
}
.filter.active .count { background: rgba(0,0,0,0.2); color: #000; }

/* ============== PRODUCT GRID ============== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.product-card-wide { grid-column: span 2; }

.product-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--easing), border-color .35s, box-shadow .35s, opacity .35s;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform-origin: left; transform: scaleX(0);
  transition: transform .4s var(--easing);
  z-index: 3;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card.hidden {
  display: none;
}
.product-card.fade-in {
  animation: fade-in .4s var(--easing);
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-badge {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  background: rgba(0,0,0,0.85);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 12px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.product-badge.bestseller { background: var(--orange); color: #000; border-color: var(--orange); }
.product-badge.heavy { background: var(--amber); color: #000; border-color: var(--amber); }

.product-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--easing);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.product-media-thread { background: #1a1a1a; }
.product-media-thread img { object-fit: contain; padding: 20px; }

.product-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
}
.product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--text);
}
.product-title span {
  display: block;
  color: var(--text-2);
  font-size: 18px;
  margin-top: 2px;
  letter-spacing: 0.8px;
}
.product-features {
  list-style: none; padding: 0; margin: 0 0 18px;
  flex: 1;
}
.product-features li {
  font-size: 13px;
  color: var(--text-2);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.5;
}
.product-features li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 12px; height: 2px; background: var(--orange);
}

.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-color {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-color i {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
}
.btn-enquire {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 14px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  transition: all .25s var(--easing);
}
.btn-enquire:hover {
  background: var(--orange); color: #000; border-color: var(--orange);
  transform: translateX(2px);
}

/* ============== WHY US ============== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.why-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 36px 28px 28px;
  transition: transform .35s var(--easing), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid transparent;
  transition: border-color .35s;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-orange); }
.why-card:hover::after { border-color: var(--orange); }

.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-3);
  margin-bottom: 28px;
}
.why-icon {
  font-size: 40px;
  color: var(--orange);
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.4));
}
.why-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============== HOW IT WORKS ============== */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.how-step {
  padding: 36px 32px;
  position: relative;
  border-right: 1px dashed var(--border-2);
}
.how-step:last-child { border-right: 0; }
.how-step::before {
  content: ''; position: absolute; top: 60px;
  right: -8px;
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  display: none;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}
.step-num::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--orange);
}
.step-bar {
  display: none;
}
.how-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 280px;
}

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.about-text p strong.accent { color: var(--orange); }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-tags .tag {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-2);
  transition: all .25s;
}
.about-tags .tag:hover { border-color: var(--orange); color: var(--orange); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
}
.about-stat.highlight {
  background: var(--bg);
  border-color: var(--orange);
}
.about-stat.highlight::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(255,107,0,0.3), transparent 70%);
}
.about-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--text);
}
.about-stat.highlight .num { color: var(--orange); }
.about-stat .num i {
  font-style: normal;
  font-size: 0.55em;
  color: var(--orange);
  vertical-align: super;
}
.about-stat.highlight .num i { color: var(--text); }
.about-stat .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 8px;
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  margin: 0 auto 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }

.info-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 22px 24px;
  transition: all .25s var(--easing);
}
.info-card:hover { transform: translateX(4px); border-color: var(--orange); }
.info-card.whatsapp { border-left-color: var(--green); }
.info-card.whatsapp:hover { border-color: var(--green); }
.info-icon {
  font-size: 24px;
  width: 44px; height: 44px;
  background: var(--bg-4);
  display: grid; place-items: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-card.whatsapp .info-label { color: var(--green); }
.info-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.info-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.form-title { margin-bottom: 14px; }
.form-title h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.form-title p { font-size: 13px; color: var(--text-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  display: flex; flex-direction: column;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-2);
  text-transform: uppercase;
  gap: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: none;
  font-weight: 400;
  transition: border-color .2s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form 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='%23FF6B00' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form select option,
.contact-form select optgroup { background: var(--bg); color: var(--text); }

.map-wrap {
  padding: 0 var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.map-wrap iframe {
  width: 100%; height: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  filter: invert(0.92) hue-rotate(180deg) contrast(0.85) brightness(1.05);
}

/* ============== FOOTER ============== */
.footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  margin: 20px 0 24px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-logo { margin-bottom: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s;
  font-size: 16px;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-col a,
.footer-col span {
  font-size: 14px;
  color: var(--text-2);
  transition: color .25s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.3px;
}
.footer-bottom-inner .om-link {
  color: var(--orange); font-weight: 600;
}

/* ============== FLOATING WHATSAPP ============== */
.fab-wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 60px; height: 60px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(0,200,83,0.5);
  transition: transform .25s var(--easing);
  animation: pulse-fab 2.4s infinite;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes pulse-fab {
  0%, 100% { box-shadow: 0 12px 30px -6px rgba(0,200,83,0.5); }
  50% { box-shadow: 0 12px 30px -2px rgba(0,200,83,0.8), 0 0 0 12px rgba(0,200,83,0.08); }
}

/* ============== SCROLL ANIMATIONS ============== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRODUCT DETAIL PAGE (products/product.html)
   ============================================================ */

/* card overlay link — makes whole card clickable but keeps button */
.card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.product-card { cursor: pointer; }
.product-card .product-foot {
  position: relative;
  z-index: 3; /* keep enquire button above overlay link */
}
/* badge already has z-index 4 from earlier rule */

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding-top: 96px;
}
.breadcrumb-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding-top: 18px; padding-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-3);
}
.breadcrumb-inner a {
  color: var(--text-2);
  transition: color .2s;
}
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-inner .sep { color: var(--text-3); }
.breadcrumb-inner .current { color: var(--text); }

/* ===== PDP LAYOUT ===== */
.pdp { background: var(--bg); }
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(60px, 8vw, 96px);
  align-items: start;
}

/* ===== GALLERY ===== */
.pdp-gallery {
  position: sticky; top: 90px;
}
.main-image-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  aspect-ratio: 4/3;
}
.main-image {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.main-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--easing);
}
.main-image:hover img { transform: scale(1.04); }

.main-badge {
  position: absolute; top: 16px; left: 16px; z-index: 5;
  background: rgba(0,0,0,0.85);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 14px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.main-badge.bestseller { background: var(--orange); color: #000; border-color: var(--orange); }
.main-badge.heavy { background: var(--amber); color: #000; border-color: var(--amber); }

.thumb-strip {
  display: flex; gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}
.thumb-strip::-webkit-scrollbar { height: 6px; }
.thumb-strip::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 0; }

.thumb {
  flex: 0 0 88px;
  width: 88px; height: 88px;
  border: 2px solid var(--border);
  background: #f0f0f0;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.thumb:hover { border-color: var(--orange); transform: translateY(-2px); }
.thumb.active { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange) inset; }
.thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ===== INFO COLUMN ===== */
.pdp-info { padding-top: 4px; }

.badges-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.brand-pill {
  display: inline-block;
  background: var(--orange); color: #000;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
}
.cat-pill {
  display: inline-block;
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
}

.pdp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.pdp-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.pdp-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pdp-block { margin-bottom: 28px; }
.block-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ===== SPECS TABLE ===== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-row { border-bottom: 1px solid var(--border); }
.spec-row:nth-child(odd) { background: rgba(255, 107, 0, 0.03); }
.spec-row td { padding: 12px 14px; vertical-align: top; }
.spec-label {
  color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  width: 40%;
  white-space: nowrap;
}
.spec-value {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ===== FEATURES LIST ===== */
.features-list {
  list-style: none; padding: 0; margin: 0;
}
.features-list li {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px dashed var(--border);
}
.features-list li:last-child { border-bottom: 0; }
.features-list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 14px; height: 2px; background: var(--orange);
}

/* ===== COMPATIBLE PILLS ===== */
.compatible-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.compat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-3);
  color: var(--text-2);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 100px;
}

/* ===== COLOUR ROW ===== */
.color-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.color-row .color-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.color-row .color-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

/* ===== CTA ROW ===== */
.cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.btn-lg { padding: 18px 26px; font-size: 15px; }
.btn-lg svg { flex-shrink: 0; }

.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text-2);
  background: transparent;
  transition: all .25s var(--easing);
}
.share-btn:hover { color: var(--orange); border-color: var(--orange); }
.share-btn.copied { color: var(--green); border-color: var(--green); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.45;
}
.trust-item strong {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.trust-icon {
  font-size: 24px;
  width: 40px; height: 40px;
  background: var(--bg-4);
  display: grid; place-items: center;
  border-radius: var(--radius);
  flex-shrink: 0;
  color: var(--orange);
}

/* ===== RELATED SECTION ===== */
.related-section {
  background: var(--bg-2);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--border);
}
.related-section .section-head { margin-bottom: 36px; }
.related-grid { gap: 20px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; padding-bottom: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pdp-grid { gap: 36px; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--orange);
    padding: 12px 0;
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s var(--easing);
  }
  .nav-links.open { display: flex; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a {
    padding: 14px var(--pad);
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav-links a:last-child { border-bottom: 0; }

  .hero { padding: 110px var(--pad) 56px; gap: 36px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { padding: 16px; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 280px; }

  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: 0; border-bottom: 1px dashed var(--border-2); padding: 24px var(--pad); }
  .how-step:last-child { border-bottom: 0; }

  /* PDP — stack gallery + info */
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
  .breadcrumb { padding-top: 80px; }
  .trust-strip { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
}

@media (max-width: 560px) {
  .brands-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: auto; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .logo-text strong { font-size: 15px; letter-spacing: 1.5px; }
  .logo-text em { font-size: 10px; }
  .filter { padding: 8px 14px; font-size: 12px; }
  .fab-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; }

  /* PDP small mobile */
  .cta-row .btn-lg, .cta-row .share-btn { width: 100%; justify-content: center; }
  .spec-label { width: 45%; font-size: 10px; }
  .spec-row td { padding: 10px 12px; }
  .thumb { flex: 0 0 64px; width: 64px; height: 64px; }
}

@media (max-width: 380px) {
  :root { --pad: 16px; }
  .logo-mark { width: 36px; height: 36px; font-size: 20px; }
  .logo-text em { display: none; }
  .info-value { font-size: 20px; }
  .product-title { font-size: 22px; }
  .product-title span { font-size: 15px; }
}

/* ============== REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE-FIRST OVERRIDES (appended last so they win the cascade)
   Breakpoints: 1024 / 820 / 768 / 480 / 380
   ============================================================ */

/* horizontal-overflow guard, applies everywhere */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }

/* fluid typography globally */
.hero-title { font-size: clamp(32px, 9vw, 120px); }
.section-title { font-size: clamp(28px, 6vw, 88px); }
.product-title, .why-card h3, .how-step h3 { font-size: clamp(20px, 3vw, 32px); }

/* keep iOS from auto-zooming form fields on focus */
input, select, textarea { font-size: 16px; }

/* disable hover lifts/scales on touch devices */
@media (hover: none) {
  .product-card:hover,
  .brand-card:hover,
  .why-card:hover,
  .info-card:hover,
  .about-tags .tag:hover,
  .footer-social a:hover,
  .nav-cta:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .fab-wa:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .product-card:hover .product-media img,
  .product-card:hover::before { transform: none !important; }
}

/* ===== TABLET (≤1024px): products to 2 cols ===== */
@media (max-width: 1024px) {
  :root { --pad: 32px; }
  .section { padding: clamp(60px, 9vw, 120px) 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pdp-grid { gap: 32px; }
}

/* ===== TABLET PORTRAIT (≤820px): nav becomes hamburger drawer ===== */
@media (max-width: 820px) {
  :root { --pad: 24px; }

  /* nav: hide horizontal links, show drawer */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--orange);
    padding: 8px 0 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--easing), transform .25s var(--easing);
    display: flex;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    padding: 18px var(--pad);
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-links a:last-of-type { border-bottom: 0; }
  .nav-links .nav-cta-mobile {
    margin: 12px var(--pad) 0;
    padding: 16px 0;
    background: var(--orange);
    color: #000;
    text-align: center;
    border-radius: var(--radius);
    border-bottom: 0;
    justify-content: center;
    font-weight: 700;
  }

  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  /* hero */
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
    padding-bottom: 50px;
    gap: 36px;
  }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }

  /* sections */
  .brands-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 280px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step {
    border-right: 0;
    border-bottom: 1px dashed var(--border-2);
    padding: 24px var(--pad);
  }
  .how-step:last-child { border-bottom: 0; }

  /* PDP — stack gallery + info */
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
  .breadcrumb { padding-top: 80px; }
  .trust-strip { grid-template-columns: 1fr; gap: 14px; padding: 18px; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ===== MOBILE LARGE (≤768px) ===== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex-shrink: 0; }
}

/* ===== MOBILE SMALL (≤640px): products to 1 col ===== */
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: auto; }
  .product-media { aspect-ratio: 4/3; max-height: 280px; }
  .product-media img { max-height: 280px; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  :root { --pad: 20px; }
  .section { padding: 48px 0; }

  /* hero finer tweaks */
  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat:nth-child(odd) { border-right: 0; }
  .eyebrow { font-size: 10px; padding: 6px 12px; letter-spacing: 1.5px; }

  /* logo shrink */
  .logo-mark { width: 38px; height: 38px; font-size: 21px; }
  .logo-text strong { font-size: 14px; letter-spacing: 1.5px; }
  .logo-text em { font-size: 9px; }

  /* product cards */
  .product-card { border-radius: var(--radius); }
  .product-body { padding: 18px; }
  .product-title { font-size: 22px; }
  .product-title span { font-size: 15px; }
  .product-features li { font-size: 13px; }
  .product-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-enquire {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    min-height: 44px;
  }
  .product-color { justify-content: flex-start; }
  .product-badge {
    top: 10px; right: 10px;
    font-size: 9px;
    padding: 5px 10px;
    letter-spacing: 1.5px;
  }

  /* about */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .about-stat { padding: 24px 20px; }
  .about-stat .num { font-size: 56px; }

  /* contact form — bigger touch targets */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .info-card { padding: 18px 20px; gap: 14px; }
  .info-icon { width: 40px; height: 40px; font-size: 22px; }
  .info-value { font-size: 22px; }

  /* footer collapse */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* WhatsApp FAB */
  .fab-wa {
    width: 56px;
    height: 56px;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: 16px;
  }

  /* marquee — slow it down on mobile */
  .marquee-track {
    animation-duration: 40s;
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* PDP */
  .pdp-title { font-size: clamp(28px, 8vw, 40px); }
  .cta-row .btn-lg, .cta-row .share-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .specs-table .spec-row td { padding: 10px 12px; }
  .specs-table .spec-label { width: 45%; font-size: 10px; }
  .thumb { flex: 0 0 64px; width: 64px; height: 64px; }
}

/* ===== MOBILE TINY (≤380px) ===== */
@media (max-width: 380px) {
  :root { --pad: 16px; }
  .section { padding: 40px 0; }

  .logo-text em { display: none; }
  .logo-text strong { font-size: 13px; letter-spacing: 1px; }
  .logo-mark { width: 36px; height: 36px; font-size: 20px; }

  .hero-title { font-size: 32px; line-height: 1; }
  .hero-sub { font-size: 14px; }

  .filter {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.2px;
  }
  .filter .count { font-size: 10px; padding: 1px 6px; }

  .product-title { font-size: 20px; }
  .product-badge { font-size: 9px; padding: 4px 8px; }

  .about-stat .num { font-size: 44px; }
  .about-stat .lbl { font-size: 10px; letter-spacing: 1.5px; }

  .info-card { padding: 16px; gap: 12px; }
  .info-value { font-size: 20px; }

  .container { padding-left: var(--pad); padding-right: var(--pad); }
}

/* ===== TOUCH-TARGET MINIMUMS (accessibility) ===== */
@media (max-width: 820px) {
  .nav-links a,
  .btn,
  .filter,
  .btn-enquire,
  .footer-social a,
  .info-card,
  .share-btn { min-height: 44px; }
}

/* ============================================================
   PRODUCTION MOBILE HOTFIXES (round 2)
   Targeted overrides for production bugs found on www.shreeharpackaging.in.
   Selectors match the actual classes used in this codebase
   (.hero-ctas / .marquee-track / .filters / .eyebrow / .fab-wa / .map-wrap).
   ============================================================ */

html, body { overflow-x: hidden !important; max-width: 100vw !important; }

/* ---- HOTFIX 1: hero CTA button text on mobile ---- */
@media (max-width: 768px) {
  .hero-ctas { display: flex !important; flex-direction: column !important; gap: 10px !important; }
  .hero-ctas .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 16px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-indent: 0 !important;
  }
  .hero-ctas .btn-primary {
    background: #FF6B00 !important;
    color: #000 !important; /* black on orange for AA contrast */
    border-color: #FF6B00 !important;
  }
  .hero-ctas .btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  }
  .hero-ctas .btn * {
    color: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ---- HOTFIX 3: marquee brand strip on mobile ---- */
@media (max-width: 768px) {
  .hero-marquee {
    width: 100% !important;
    overflow: hidden !important;
    min-height: 50px !important;
    display: block !important;
  }
  .marquee-track {
    display: inline-flex !important;
    gap: 28px !important;
    white-space: nowrap !important;
    animation: marquee 35s linear infinite !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
  }
  .marquee-track span {
    display: inline-block !important;
    flex-shrink: 0 !important;
  }
}

/* ---- HOTFIX 4: filter pills — horizontal scroll on small screens ---- */
@media (max-width: 768px) {
  .filters {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .filters::-webkit-scrollbar { display: none !important; }
  .filter {
    flex: 0 0 auto !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
  }
}

/* ---- HOTFIX 5: eyebrow pill + hero title overflow ---- */
@media (max-width: 768px) {
  .eyebrow {
    font-size: 9px !important;
    padding: 6px 12px !important;
    letter-spacing: 1px !important;
    white-space: normal !important;
    max-width: calc(100vw - 32px) !important;
    text-align: center !important;
    line-height: 1.45 !important;
  }
  .hero-title {
    font-size: clamp(32px, 9vw, 56px) !important;
    line-height: 1.02 !important;
    word-wrap: break-word !important;
  }
  .hero-sub { font-size: 14px !important; line-height: 1.6 !important; }
  .hero { padding-left: 16px !important; padding-right: 16px !important; }
}

/* ---- HOTFIX 7: WhatsApp FAB + map breathing room ---- */
@media (max-width: 768px) {
  .map-wrap { margin-bottom: 80px !important; }
  .fab-wa {
    bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
    right: 16px !important;
    width: 56px !important;
    height: 56px !important;
    z-index: 9999 !important;
  }
}

/* ---- HOTFIX 8: product card ENQUIRE button full-width on mobile ---- */
@media (max-width: 768px) {
  .product-foot {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .product-foot .btn-enquire {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
    min-height: 44px !important;
    justify-content: center !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .product-foot .product-color { justify-content: flex-start !important; }
  .product-media { max-height: 280px !important; }
  .product-media img { max-height: 280px !important; object-fit: cover !important; }
}

/* ---- HOTFIX 9: form inputs / submit ---- */
@media (max-width: 768px) {
  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="email"],
  .contact-form select,
  .contact-form textarea {
    width: 100% !important;
    font-size: 16px !important; /* prevents iOS zoom on focus */
    min-height: 48px !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
  }
  .contact-form textarea {
    min-height: 120px !important;
    resize: vertical !important;
  }
  .contact-form button[type="submit"],
  .contact-form .btn-block {
    width: 100% !important;
    min-height: 52px !important;
    padding: 16px !important;
    font-size: 15px !important;
  }
}

/* ---- HOTFIX 10: hamburger nav drawer ---- */
@media (max-width: 820px) {
  .nav-links {
    width: 100% !important;
    z-index: 998 !important;
  }
  .nav-links.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav-links a {
    padding: 18px var(--pad) !important;
    border-bottom: 1px solid #1C1C1C !important;
    font-size: 16px !important;
    min-height: 48px !important;
    text-align: left !important;
  }
}

/* ============================================================
   PRODUCTION MOBILE HOTFIXES (round 3 — appended LAST = wins cascade)
   ============================================================ */

/* ---- BUG C: hero subtitle wrap ---- */
@media (max-width: 768px) {
  .hero-sub {
    font-size: 14px !important;
    line-height: 1.6 !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }
  .hero-sub .bullet { display: inline !important; }
}

/* ---- BUG A: HERO CTA TEXT VISIBILITY (nuclear override) ---- */
.hero-ctas .btn,
.hero-ctas a,
.hero-ctas .btn-primary,
.hero-ctas .btn-outline,
.hero .btn-primary,
.hero .btn-outline {
  font-size: 15px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
  font-weight: 600 !important;
  text-indent: 0 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 16px 24px !important;
  min-height: 52px !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  white-space: nowrap !important;
  text-overflow: clip !important;
}

.hero-ctas .btn-primary,
.hero .btn-primary {
  background: #FF6B00 !important;
  color: #0D0D0D !important; /* black on orange — AAA contrast */
}

.hero-ctas .btn-outline,
.hero .btn-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

.hero-ctas .btn *,
.hero-ctas a *,
.hero .btn-primary *,
.hero .btn-outline * {
  color: inherit !important;
  font-size: inherit !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* SVG icon inside primary CTA stays as an icon, not collapsed */
.hero-ctas .btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

/* kill any pseudo-elements that may be covering text */
.hero-ctas .btn::before,
.hero-ctas .btn::after,
.hero .btn-primary::before,
.hero .btn-outline::before {
  display: none !important;
  content: none !important;
}

/* Mobile-specific: stack vertically, full width */
@media (max-width: 768px) {
  .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .hero-ctas .btn,
  .hero .btn-primary,
  .hero .btn-outline {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ---- BUG B: KILL hero min-height:100vh on mobile (the void) ---- */
/* This is the actual root cause. The hero has min-height: 100vh which
   forces ~700px+ extra empty space below the stacked content on phones.
   Reset it so .hero grows naturally with its content. */
@media (max-width: 1100px) {
  .hero {
    min-height: 0 !important;
    height: auto !important;
    align-items: start !important;
  }
}

/* ---- BUG B: marquee box must NOT inherit any tall height ---- */
.hero-marquee {
  height: auto !important;
  min-height: 56px !important;
  max-height: 80px !important;
  padding: 16px 0 !important;
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  display: block !important;
}

.marquee-track {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  height: auto !important;
  align-items: center !important;
  gap: 32px !important;
  animation: marquee 30s linear infinite !important;
  white-space: nowrap !important;
  position: relative !important;
}

.marquee-track span {
  flex-shrink: 0 !important;
  display: inline-block !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .hero-marquee {
    min-height: 48px !important;
    max-height: 60px !important;
    padding: 12px 0 !important;
  }
  .marquee-track {
    animation-duration: 25s !important;
    gap: 24px !important;
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
  }
}

/* === FINAL CTA TEXT VISIBILITY OVERRIDE === */
.hero-ctas .btn-primary,
.hero-ctas a.btn-primary,
a.btn-primary {
  color: #0D0D0D !important;
  background-color: #FF6B00 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  text-indent: 0 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  text-transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 16px 24px !important;
  min-height: 52px !important;
  border-radius: 8px !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-decoration: none !important;
  overflow: visible !important;
  -webkit-text-fill-color: #0D0D0D !important;
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
}

.hero-ctas a.btn-outline,
a.btn-outline {
  background-color: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero-ctas .btn svg,
a.btn-primary svg,
a.btn-outline svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  fill: none !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-shrink: 0 !important;
}

.hero-ctas .btn::before,
.hero-ctas .btn::after,
a.btn-primary::before,
a.btn-primary::after,
a.btn-outline::before,
a.btn-outline::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 768px) {
  .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .hero-ctas .btn,
  .hero-ctas a.btn {
    width: 100% !important;
  }
}

/* ============================================================
   ROOT-CAUSE FIX (round 4): grid-item min-content propagation
   ============================================================
   Diagnosis: the marquee-track inside .hero-content has
   white-space: nowrap + width: max-content, which sets its
   min-content size to ~1800px (the unwrapped row of brand names).
   CSS grid items default to min-width: auto, so .hero-content
   (a grid child of .hero) refused to shrink below ~1800px on a
   390px viewport. That blew up .hero-ctas to 1844px wide and
   pushed the button text off-screen to the right. overflow:hidden
   on .hero clipped the visual but left the layout damage intact.
   Fix: break the propagation with min-width: 0 on the chain. */
.hero,
.hero-content,
.hero-visual,
.hero-marquee,
.hero-ctas,
.hero-stats {
  min-width: 0 !important;
  max-width: 100% !important;
}

.hero-marquee {
  width: 100% !important;
  overflow: hidden !important;
}

/* keep the marquee animation working — track must still expand to
   its content; the parent above now clips it correctly */
.marquee-track {
  width: max-content !important;
}

/* ============================================================
   SEO content sections (Industries + FAQ)
   ============================================================ */

/* INDUSTRIES GRID */
.section-industries { background: var(--bg); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.industry-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s var(--easing), border-color .3s, box-shadow .3s;
}
.industry-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.industry-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: inline-block;
  line-height: 1;
}
.industry-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text);
}
.industry-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* FAQ */
.section-faq { background: var(--bg-2); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color .2s;
  letter-spacing: 0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
  transition: transform .25s var(--easing);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--orange); }
.faq-item p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}
.faq-item p a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.faq-item p a:hover { color: var(--orange-2); }

@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 14px; padding: 16px 48px 16px 18px; }
  .faq-item p { padding: 0 18px 18px; font-size: 13px; }
}

/* SEO FOOTER BLOCK */
.footer-seo {
  border-top: 1px solid var(--border);
  padding: 28px 0 8px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.7;
}
.footer-seo p { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.footer-seo strong { color: var(--text-2); }

/* ============================================================
   CLS HARDENING (Core Web Vitals: target CLS < 0.1)
   ============================================================
   Reserves explicit space for every element that loads
   asynchronously (images, fonts, animated content) so the
   layout doesn't reflow between first paint and final paint. */

/* Fix 2: pin product image container dimensions so cards
   reserve the right amount of space before <img> decode. */
.product-media {
  aspect-ratio: 4 / 3 !important;
  width: 100% !important;
  height: auto !important;
  background: #1C1C1C !important;
  overflow: hidden !important;
  contain: layout paint;
}
.product-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.product-media-thread {
  aspect-ratio: 1 / 1 !important; /* threads use square preview */
}
.product-media-thread img {
  object-fit: contain !important;
  padding: 20px !important;
}

/* Fix 5: hero visual reserves space even before image decodes */
.hero-visual {
  aspect-ratio: 3 / 4;
  min-height: 360px;
  contain: layout paint;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix 4: marquee can't be zero-height while waiting for animation */
.hero-marquee {
  min-height: 60px !important;
  contain: layout;
}

/* Stats counters: tabular numerals so '0' and '500+' occupy the
   same width — animating from 0 to final value no longer shifts
   anything around them. */
.stat-num,
.about-stat .num {
  font-variant-numeric: tabular-nums;
  min-width: 1ch;
}
.stat {
  min-height: 76px;
}

/* Filter pills can't jiggle when toggled active (active state
   uses different border color which could change box size by 1px) */
.filter { box-sizing: border-box; }

/* Tell layout engine that hero / industries / FAQ / footer
   sections each form an isolated containment context — paint
   inside doesn't trigger layout outside. */
.hero,
.section-industries,
.section-faq,
.footer {
  contain: layout style;
}

/* ============================================================
   FONT FALLBACK WITH MATCHED METRICS (anti-CLS, font-correct)
   ============================================================
   The previous CLS fix used display=optional, which suppressed
   Bebas Neue entirely on slow networks. Reverted to display=swap
   in <head> + preload of the Bebas Neue woff2 file. To prevent
   the swap-moment shift, we declare a "Bebas Neue Fallback"
   font that wraps a local condensed font (Impact / Arial Black)
   and adjusts its metrics to match Bebas Neue's narrow x-height
   and tight ascent/descent. Result: until Bebas Neue arrives,
   the page renders in adjusted-Impact at the same visual height,
   so the swap doesn't reflow anything.
*/

@font-face {
  font-family: 'Bebas Neue Fallback';
  src: local('Impact'), local('Arial Black');
  size-adjust: 110%;
  ascent-override: 90%;
  descent-override: 25%;
  line-gap-override: 0%;
}

/* Apply the Bebas Neue + Fallback chain everywhere the design
   uses Bebas Neue. Listed explicitly so the cascade reaches every
   heading variant without affecting body / mono / Gujarati type. */
.hero-title,
.section-title,
.brand-name,
.product-title,
.pdp-title,
.why-card h3,
.how-step h3,
.industry-card h3,
.logo-mark,
.logo-text strong,
.stat-num,
.about-stat .num,
.marquee-track,
.step-num,
.info-value,
.form-title h3,
.footer-col h4 {
  font-family: 'Bebas Neue', 'Bebas Neue Fallback', Impact, 'Arial Black', sans-serif !important;
}

/* Hero title hardening: explicit weight, spacing and case so
   that even if every fallback path triggers, the visual identity
   stays close to the intended Bebas Neue look. */
.hero-title,
h1.hero-title,
.hero h1 {
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
}
