/* ============================================================
   ANSON CHEMICALS PVT LTD — FAST FIX BRAND
   Yellow #FFD600 · Red #D32F2F · White/Light Theme
   NO BLACK BACKGROUNDS — Industrial Premium Light Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Brand Colors */
  --yellow:      #FFD600;
  --product_colour: rgb(179, 56, 56);
  --yellow-deep: #F5C800;
  --yellow-dark: #B8960A;
  --yellow-light: #FFF9C4;
  --yellow-pale: #FFFDE7;
  --yellow-bg:   #FFFEF0;

  --red:         #D32F2F;
  --red-bright:  #E53935;
  --red-dark:    #B71C1C;
  --red-light:   #FFEBEE;

  --black:       #1A1A1A;
  --charcoal:    #2D2D2D;
  --slate:       #4A4A4A;

  /* Light Theme Backgrounds */
  --white:       #FFFFFF;
  --off-white:   #FAFAFA;
  --grey-bg:     #F5F5F5;
  --grey-light:  #EEEEEE;
  --grey-mid:    #757575;
  --grey-text:   #555555;
  --grey-border: #E0E0E0;

  /* Mapped legacy vars */
  --navy:        var(--black);
  --navy-mid:    var(--charcoal);
  --steel:       var(--slate);
  --blue-light:  var(--red);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --shadow-xs:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.09);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.15);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.18);

  --shadow-yellow: 0 8px 24px rgba(255,214,0,0.35);
  --shadow-red:    0 8px 24px rgba(211,47,47,0.35);

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      6px;
  --radius-md:   10px;
  --radius-lg:   16px;
}

/* ── BASE ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--grey-text); font-size: 0.97rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.site-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-image img{
  height:54px;
  width:auto;
  display:block;
  transition: var(--transition);
}

/* ── SECTION LABELS ──────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-label.on-dark { color: var(--yellow); }
.section-label.on-dark::before { background: var(--red); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.section-pad-lg { padding: 120px 0; }

@media (max-width: 768px) {
  .section-pad    { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
  .section-pad-lg { padding: 80px 0; }
}

/* Dividers */
.divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1rem 0 1.8rem;
}
.divider::before { content: ''; width: 40px; height: 4px; background: var(--yellow); border-radius: 2px; }
.divider::after  { content: ''; width: 8px;  height: 4px; background: var(--red);    border-radius: 2px; }
.divider.center  { justify-content: center; }

.divider-red    { width: 48px; height: 4px; background: var(--red);    margin: 1rem 0 1.8rem; border-radius: 2px; }
.divider-yellow { width: 48px; height: 4px; background: var(--yellow); margin: 1rem 0 1.8rem; border-radius: 2px; }
.divider-blue   { width: 48px; height: 4px; background: var(--red);    margin: 1rem 0 1.8rem; border-radius: 2px; }
.divider-red.center, .divider-yellow.center, .divider-blue.center { margin: 1rem auto 1.8rem; }

/* ── HEADER ──────────────────────────────────────────────── */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#main-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  gap: 32px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--black);
  letter-spacing: -1px;
  border-radius: 4px;
  border-bottom: 3px solid var(--red);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-name .yellow { color: var(--red); }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  text-transform: uppercase;
  margin-top: 3px;
}
.logo-since {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  background: var(--red);
  color: white;
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  margin-left: 4px;
  vertical-align: middle;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--black); background: var(--yellow-pale); }
.main-nav a.active { color: var(--black); font-weight: 700; }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}
.nav-cta {
  display: inline-block !important;
  font-family: var(--font-display) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: var(--red) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  margin-left: 12px;
  transition: var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--red-bright) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-red) !important;
}

/* Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px 12px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle:active {
  background: var(--yellow-pale);
  border-color: var(--red);
}
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--black); border-radius: 3px; transition: var(--transition); }
.nav-toggle.open { border-color: var(--red); background: var(--yellow-pale); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(7px,8px); background: var(--red); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px,-8px); background: var(--red); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  padding: 28px 24px 32px;
  border-top: 3px solid var(--yellow);
  border-bottom: 1px solid var(--grey-light);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  padding: 16px 14px;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav a:hover { 
  color: var(--red); 
  background: var(--yellow-pale);
  border-left-color: var(--red);
  padding-left: 18px;
}

@media (max-width: 991px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .header-inner { padding: 0 20px; }
}

/* ── TICKER BAR ──────────────────────────────────────────── */
.ticker-bar {
  background: var(--yellow);
  padding: 9px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ticker-item::after { content: '◆'; font-size: 0.45rem; color: var(--red); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-red {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: white; background: var(--red);
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  cursor: pointer; transition: var(--transition);
}
.btn-red:hover {
  background: var(--red-bright); border-color: var(--red-bright);
  color: white; transform: translateY(-2px); box-shadow: var(--shadow-red);
}
.btn-yellow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--yellow);
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  cursor: pointer; transition: var(--transition);
}
.btn-yellow:hover {
  background: var(--yellow-deep); border-color: var(--yellow-deep);
  color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-yellow);
}
.btn-outline-black {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: transparent;
  padding: 11px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  cursor: pointer; transition: var(--transition);
}
.btn-outline-black:hover {
  background: var(--black); color: var(--yellow);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: white; background: transparent;
  padding: 11px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer; transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }

/* Legacy aliases */
.btn-primary-red    { @extend .btn-red; }
.btn-primary-yellow { @extend .btn-yellow; }
.btn-primary-blue   { display:inline-block; font-family:var(--font-display); font-size:.88rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--black); background:var(--yellow); padding:13px 30px; border-radius:var(--radius); border:2px solid var(--yellow); cursor:pointer; transition:var(--transition); }
.btn-primary-blue:hover { background:var(--yellow-deep); border-color:var(--yellow-deep); color:var(--black); transform:translateY(-2px); box-shadow:var(--shadow-yellow); }
.btn-outline-blue { display:inline-block; font-family:var(--font-display); font-size:.88rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--red); background:transparent; padding:11px 28px; border-radius:var(--radius); border:2px solid var(--red); cursor:pointer; transition:var(--transition); }
.btn-outline-blue:hover { background:var(--red); color:white; transform:translateY(-2px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--yellow-pale);
  padding-top: 80px;
}
/* Big decorative yellow shape */
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 55%;
  height: 120%;

  background-image: url('assets/images/201.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;

  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, var(--red) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  border-radius: 3px;
  padding: 5px 14px;
  margin-bottom: 1.8rem;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse-dot 2s infinite; }
.hero-badge span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: white; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero-h1 .red-word { color: var(--red); display: block; }
.hero-h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 2px solid rgba(0,0,0,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 3px;
}

/* Hero product visual */
.hero-visual-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.hero-product-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-product-img {
  width: 100%;
  aspect-ratio: 1;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.hero-product-img img { width: 100%; height: 100%; object-fit: contain; }
.hero-product-tag {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--red);
  color: white;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
}
.hero-badge-card {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--black);
  color: white;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  border-left: 4px solid var(--yellow);
}
.hero-badge-card .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.hero-badge-card .lbl { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 3px; }

/* ── SNAPSHOT ────────────────────────────────────────────── */
.snapshot-section { background: var(--white); }
.snapshot-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--grey-light); }
.snapshot-item {
  padding: 36px 28px;
  border-right: 1px solid var(--grey-light);
  position: relative;
  transition: var(--transition);
  background: white;
}
.snapshot-item:last-child { border-right: none; }
.snapshot-item:hover { background: var(--yellow-pale); }
.snapshot-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.snapshot-item:hover::after { transform: scaleX(1); }
.snap-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 3px; }
.snap-num span { color: var(--red); }
.snap-label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 10px; display: block; }
.snap-desc { font-size: 0.875rem; color: var(--grey-text); line-height: 1.5; margin: 0; }
@media(max-width:991px){.snapshot-grid{grid-template-columns:repeat(2,1fr)}.snapshot-item:nth-child(2){border-right:none}.snapshot-item:nth-child(1),.snapshot-item:nth-child(2){border-bottom:1px solid var(--grey-light)}}
@media(max-width:575px){.snapshot-grid{grid-template-columns:1fr}.snapshot-item{border-right:none!important;border-bottom:1px solid var(--grey-light)!important}}

/* ── ABOUT HOME ──────────────────────────────────────────── */
.about-home { background: var(--off-white); }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grey-bg);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--yellow);
  padding: 12px 18px;
  border-radius: var(--radius);
  border-bottom: 2px solid var(--red);
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.about-img-badge .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--black); line-height: 1; }
.about-img-badge .lbl { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); margin-top: 2px; font-weight: 600; }

.about-feature-list { margin-top: 1.2rem; }
.about-feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--grey-light);
  font-size: 0.92rem; color: var(--grey-text);
}
.about-feature-list li:last-child { border-bottom: none; }
.about-feature-list .icon {
  width: 20px; height: 20px; background: var(--yellow); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.about-feature-list .icon::before { content: '✓'; color: var(--black); font-size: 0.65rem; font-weight: bold; }

/* ── MFG STRENGTH (on white) ─────────────────────────────── */
.mfg-strength {
  background:
    radial-gradient(circle at top right, rgba(255,214,0,0.18), transparent 28%),
    linear-gradient(180deg, #fcfcf8 0%, #f3f3f0 100%);
  position: relative;
  overflow: hidden;
}
.mfg-strength::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.mfg-shell {
  position: relative;
  z-index: 1;
}
.mfg-intro-panel,
.mfg-highlight-panel {
  height: 100%;
  border-radius: 22px;
}
.mfg-intro-panel {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-md);
  padding: 42px;
}
.mfg-intro-copy {
  max-width: 52ch;
}
.mfg-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.mfg-proof-card {
  background: linear-gradient(180deg, var(--white) 0%, #f7f7f4 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  min-height: 122px;
}
.mfg-proof-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.mfg-proof-label {
  display: block;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--grey-text);
}
.mfg-highlight-panel {
  background: linear-gradient(135deg, rgba(26,26,26,0.97) 0%, rgba(58,58,58,0.94) 100%);
  color: white;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mfg-highlight-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,214,0,0.38) 0%, rgba(255,214,0,0) 70%);
  pointer-events: none;
}
.mfg-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.mfg-panel-kicker::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--red);
}
.mfg-highlight-panel h3 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mfg-highlight-panel p {
  color: rgba(255,255,255,0.8);
}
.mfg-highlight-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}
.mfg-highlight-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}
.mfg-highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,214,0,0.16);
}
.mfg-blueprint {
  position: relative;
  margin-top: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 26px;
  padding: 30px;
  background:
    linear-gradient(rgba(211,47,47,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211,47,47,0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(250,250,247,0.98) 100%);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.mfg-blueprint::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,214,0,0.18), transparent 16%),
    radial-gradient(circle at 82% 72%, rgba(211,47,47,0.12), transparent 18%);
  pointer-events: none;
}
.mfg-blueprint-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.mfg-blueprint-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 6px;
}
.mfg-blueprint-head p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.mfg-blueprint-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}
.mfg-blueprint-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 20px;
}
.mfg-blueprint-grid::before {
  content: '';
  position: absolute;
  left: 11%;
  right: 11%;
  top: 82px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,214,0,0.95) 0%, rgba(211,47,47,0.7) 100%);
  box-shadow: 0 138px 0 rgba(26,26,26,0.1);
}
.mfg-node {
  position: relative;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 20px;
  padding: 22px 20px 20px;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mfg-node::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.95);
}
.mfg-node::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 100%);
}
.mfg-node:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(211,47,47,0.18);
}
.mfg-node-code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1;
  color: rgba(211,47,47,0.15);
  margin-bottom: 12px;
}
.mfg-node-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mfg-node-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--yellow-pale);
  border: 1px solid rgba(0,0,0,0.08);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.mfg-node h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.mfg-node p {
  font-size: 0.9rem;
  color: var(--grey-text);
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 991px) {
  .mfg-intro-panel,
  .mfg-highlight-panel {
    padding: 28px;
  }
  .mfg-proof-grid {
    grid-template-columns: 1fr;
  }
  .mfg-blueprint {
    padding: 24px;
  }
  .mfg-blueprint-head {
    align-items: start;
    flex-direction: column;
  }
  .mfg-blueprint-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mfg-blueprint-grid::before {
    left: 16%;
    right: 16%;
    top: 78px;
    box-shadow: 0 162px 0 rgba(26,26,26,0.1);
  }
}
@media (max-width: 767px) {
  .mfg-intro-panel,
  .mfg-highlight-panel,
  .mfg-blueprint,
  .mfg-node {
    padding: 22px;
  }
  .mfg-highlight-panel h3 {
    font-size: 1.7rem;
  }
  .mfg-blueprint-grid {
    grid-template-columns: 1fr;
  }
  .mfg-blueprint-grid::before {
    display: none;
  }
  .mfg-node::before {
    top: 18px;
    left: auto;
    right: 18px;
    width: 16px;
    height: 16px;
  }
}

/* ── PRODUCTS ────────────────────────────────────────────── */
/* ───────── PRODUCTS SECTION ───────── */

.products-section{
  background:var(--white);
}

/* Card */

.product-card{
  background:var(--white);
  border:1px solid var(--grey-light);
  border-radius:var(--radius-md);
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  transition:var(--transition);
  box-shadow:var(--shadow-xs);
  position:relative;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:var(--yellow);
}


/* Image Area */

.product-card-img{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:26px;
  height:220px;
  min-height:220px;
  border-bottom:3px solid var(--yellow);
  overflow:hidden;
  position:relative;
}

.product-card-img img{
  max-width:100%;
  max-height:170px;
  object-fit:contain;
  display:block;
  margin:auto;
  transition:transform .35s ease;
}


/* Hover animation */

.product-card:hover .product-card-img img{
  transform:scale(1.05);
}

.product-card:hover .product-card-img{
  border-bottom-color:var(--red);
}


/* No image placeholder */

.product-card-img .card-no-img{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
  height:100%;
  background:#F7F7F7;
}

.product-card-img .cni-name{
  font-family:var(--font-display);
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#D5D5D5;
}

.product-card-img .cni-label{
  font-family:var(--font-mono);
  font-size:.5rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#C8C8C8;
}


/* Card body */

.product-card-body{
  padding:22px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.product-tag{
  font-family:var(--font-mono);
  font-size:.58rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:6px;
}

.product-card h4{
  font-family:var(--font-display);
  font-size:1.05rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--black);
  margin-bottom:8px;
}

.product-card p{
  font-size:.85rem;
  color:var(--grey-text);
  flex:1;
  line-height:1.55;
}


/* Footer */

.product-card-footer{
  padding:14px 22px;
  border-top:1px solid var(--grey-light);
  background:var(--yellow-pale);
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.product-packs{
  font-family:var(--font-mono);
  font-size:.58rem;
  letter-spacing:.1em;
  color:var(--grey-mid);
}

/* ── PCARD (Full-Image Product Card) ──────────────────── */
.pcard {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pcard-inner {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  overflow: hidden;
}
.pcard-bg-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.pcard:hover .pcard-bg-img { transform: scale(1.04); }
.pcard-bg-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-icon { font-size: 4rem; opacity: 0.3; }
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px 20px;
  z-index: 2;
}
.pcard-overlay-cat {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.pcard-overlay-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.pcard-overlay-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.pcard-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  z-index: 3;
}
.pcard-dot { opacity: 0.5; }
.pcard-pack-count { flex: 1; }
.pcard-view-btn { color: var(--red); font-weight: 900; }

/* Responsive */
@media (max-width: 991px) {
  .pcard-inner { aspect-ratio: 1/1.2; }
  .pcard-overlay { padding: 28px 18px; }
  .pcard-overlay-title { font-size: 1.2rem; }
}
@media (max-width: 767px) {
  .pcard-inner { aspect-ratio: 1/1.3; }
  .pcard-overlay { padding: 24px 16px; }
  .pcard-overlay-title { font-size: 1.1rem; }
  .pcard-bottom-bar { font-size: 0.68rem; padding: 10px 16px; gap: 8px; }
  
  /* Updated mobile nav for tablet */
  .mobile-nav { top: 72px; }
  .mobile-nav a { font-size: 0.98rem; padding: 14px 12px; }
}

/* Products Card Grid */
.products-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* ── INDUSTRIES ──────────────────────────────────────────── */
.industries-section { background: var(--grey-bg); }
.industries-section > .container > .row.g-3 {
  display: none;
}
.industries-carousel {
  position: relative;
}
.industries-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.industries-nav-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.industries-nav {
  min-width: 54px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}
.industries-nav:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}
.industries-nav:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}
.industries-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.industries-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.15);
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.industries-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--red);
}
.industries-track-wrap {
  overflow: hidden;
}
.industries-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.industries-track::-webkit-scrollbar {
  display: none;
}
.industry-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: calc((100% - 44px) / 3);
  scroll-snap-align: start;
}
.industry-tile {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 18px;
  border-top: 3px solid var(--grey-light);
  padding: 30px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  min-height: 100%;
}
.industry-tile:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  border-top-color: var(--red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-yellow);
}
.industry-tile .ind-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  background: var(--yellow-pale);
  border: 1px solid rgba(0,0,0,0.08);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.industry-tile h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--black); margin-bottom: 8px; transition: var(--transition); }
.industry-tile p { font-size: 0.86rem; color: var(--grey-text); margin: 0; transition: var(--transition); line-height: 1.55; }
.industry-tile:hover p { color: rgba(0,0,0,0.7); }
@media (max-width: 991px) {
  .industry-slide {
    flex: 0 0 calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
  }
}
@media (max-width: 767px) {
  .industries-carousel-top {
    align-items: start;
    flex-direction: column;
  }
  .industry-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .industry-tile {
    padding: 24px 20px;
  }
}
@media (max-width: 991px) {
  .industry-slide {
    flex: 0 0 calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
  }
}
@media (max-width: 767px) {
  .industries-carousel-top {
    align-items: start;
    flex-direction: column;
  }
  .industry-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .industry-tile {
    padding: 24px 20px;
  }
}

/* ── QUALITY ─────────────────────────────────────────────── */
.quality-highlight { background: var(--black); }
.quality-item { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.quality-item:last-child { border-bottom: none; }
.quality-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--yellow); line-height: 1; min-width: 48px; }
.quality-item h5 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: white; margin-bottom: 3px; }
.quality-item p { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ── WHY PARTNER ─────────────────────────────────────────── */
.why-section { background: var(--off-white); }
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.why-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card .step-num { font-family: var(--font-display); font-size: 4.5rem; font-weight: 900; color: var(--grey-light); line-height: 1; position: absolute; top: 12px; right: 18px; transition: var(--transition); }
.why-card:hover .step-num { color: rgba(255,214,0,0.3); }
.why-card .why-icon { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.why-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--black); margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: var(--grey-text); margin: 0; line-height: 1.6; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:991px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:575px){.why-grid{grid-template-columns:1fr}}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before { content:''; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border:50px solid rgba(255,255,255,0.07); border-radius:50%; }
.cta-banner::after  { content:''; position:absolute; left:-50px; bottom:-100px; width:260px; height:260px; border:40px solid rgba(255,255,255,0.05); border-radius:50%; }
.cta-banner h2 { color: white; font-size: clamp(1.9rem,4vw,3.2rem); }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta-inner { position: relative; z-index: 1; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--black); padding: 80px 0 0; border-top: 4px solid var(--yellow); }
.footer-logo-section { margin-bottom: 1.8rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.footer-logo .logo-name { color: white; }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); max-width: 280px; line-height: 1.65; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1.2rem; padding-bottom: 8px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-icon { width: 28px; height: 28px; background: rgba(255,214,0,0.12); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-bottom { margin-top: 56px; padding: 18px 0; border-top: 1px solid rgba(255,214,0,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); margin: 0; }
.cert-badge { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,214,0,0.5); border: 1px solid rgba(255,214,0,0.2); padding: 3px 9px; border-radius: 2px; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 60%, var(--red-dark) 100%);
  padding: 130px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content:''; position:absolute; top:0; right:0; width:40%; height:100%; background:var(--yellow); clip-path:polygon(40% 0, 100% 0, 100% 100%, 10% 100%); opacity:0.06; }
.page-hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, var(--red) 100%); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 1.4rem; }
.breadcrumb-nav a { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: var(--transition); }
.breadcrumb-nav a:hover { color: var(--yellow); }
.breadcrumb-nav span { font-family: var(--font-mono); font-size: 0.62rem; color: rgba(255,255,255,0.2); }
.breadcrumb-nav .current { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); }
.page-hero h1 { color: white; margin-bottom: 0.9rem; }
.page-hero .lead { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 580px; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.mission-card { background: var(--black); padding: 36px 32px; border-left: 5px solid var(--yellow); border-radius: var(--radius-md); }
.mission-card h3 { color: var(--yellow); margin-bottom: 0.9rem; }
.mission-card p  { color: rgba(255,255,255,0.6); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 2rem; }
.value-item { text-align: center; padding: 28px 20px; background: var(--white); border: 1px solid var(--grey-light); border-top: 3px solid var(--yellow); border-radius: var(--radius-md); transition: var(--transition); box-shadow: var(--shadow-xs); }
.value-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-top-color: var(--red); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.value-item h5 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin-bottom: 7px; }
.value-item p { font-size: 0.84rem; color: var(--grey-text); margin: 0; }
@media(max-width:767px){.values-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.values-grid{grid-template-columns:1fr}}

/* ── MFG PAGE ────────────────────────────────────────────── */
.mfg-section     { background: var(--white); }
.mfg-section.alt { background: var(--off-white); }
.mfg-section.dark { background: var(--black); }

.process-flow { display: flex; align-items: stretch; overflow-x: auto; margin-top: 2rem; gap: 0; }
.process-step { flex: 1; min-width: 110px; text-align: center; }
.process-step-inner { background: var(--white); border: 1px solid var(--grey-light); border-top: 3px solid var(--yellow); padding: 22px 14px; height: 100%; transition: var(--transition); }
.process-step:hover .process-step-inner { background: var(--black); }
.process-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 7px; }
.process-step h6 { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--black); margin-bottom: 5px; transition: var(--transition); }
.process-step p { font-size: 0.74rem; color: var(--grey-mid); margin: 0; transition: var(--transition); }
.process-step:hover .process-step-inner h6, .process-step:hover .process-step-inner p { color: white; }
.process-arrow { display: flex; align-items: center; padding: 0; color: var(--yellow); font-size: 1.4rem; font-weight: bold; }

.infra-list { margin-top: 1rem; }
.infra-list li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--grey-light); font-size: 0.92rem; color: var(--grey-text); }
.infra-list li:last-child { border-bottom: none; }
.infra-list .bullet { width: 20px; height: 20px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 0.58rem; color: var(--black); font-weight: bold; border-radius: 3px; }

.capacity-stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 2rem; }
.cap-stat { text-align: center; padding: 24px 16px; background: var(--white); border: 1px solid var(--grey-light); border-top: 3px solid var(--yellow); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.cap-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--black); line-height: 1; }
.cap-num span { color: var(--red); font-size: 1.5rem; }
.cap-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-mid); margin-top: 5px; display: block; }
@media(max-width:767px){.capacity-stat-row{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.capacity-stat-row{grid-template-columns:1fr}}

/* ── QUALITY PAGE ────────────────────────────────────────── */
.quality-page-section     { background: var(--white); }
.quality-page-section.alt { background: var(--off-white); }
.test-card { background: var(--white); border: 1px solid var(--grey-light); border-top: 3px solid var(--yellow); border-radius: var(--radius-md); padding: 28px 24px; height: 100%; transition: var(--transition); position: relative; box-shadow: var(--shadow-xs); }
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--red); }
.test-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--red); border-radius:0 0 var(--radius-md) var(--radius-md); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
.test-card:hover::after { transform: scaleX(1); }
.test-icon { font-size: 1.9rem; margin-bottom: 14px; display: block; }
.test-card h5 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin-bottom: 8px; }
.test-card p  { font-size: 0.86rem; color: var(--grey-text); margin: 0; }
.compliance-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 2rem; }
.compliance-item { padding: 18px 16px; background: var(--white); border: 1px solid var(--grey-light); border-left: 4px solid var(--yellow); display: flex; align-items: center; gap: 12px; transition: var(--transition); border-radius: 0 var(--radius) var(--radius) 0; }
.compliance-item:hover { background: var(--yellow-pale); border-left-color: var(--red); box-shadow: var(--shadow-sm); }
.comp-icon { font-size: 1.4rem; }
.comp-text h6 { font-family: var(--font-display); font-size: 0.86rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--black); margin-bottom: 2px; }
.comp-text p  { font-size: 0.74rem; color: var(--grey-mid); margin: 0; }
@media(max-width:767px){.compliance-row{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.compliance-row{grid-template-columns:1fr}}

/* ── PRODUCTS PAGE ───────────────────────────────────────── */
.products-page { background: var(--off-white); }
.product-full-card { background: var(--white); border: 1px solid var(--grey-light); border-top: 4px solid var(--yellow); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; transition: var(--transition); box-shadow: var(--shadow-xs); }
.product-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-top-color: var(--red); }
.product-full-img { background: #FFFFFF; border-bottom: 1px solid var(--grey-light); display: block; overflow: hidden; position: relative; line-height: 0; }
.product-full-img img { width: 100%; height: auto; display: block; object-fit: contain; transition: transform 0.4s ease; }
.product-full-card:hover .product-full-img img { transform: scale(1.02); }
.product-full-img .no-img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 200px; width: 100%; background: #FAFAFA; }
.product-full-img .no-img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; width: 100%; height: 100%; background: #FAFAFA; border-bottom: 1px solid #EFEFEF; }
.product-full-img .no-img-placeholder svg { opacity: 0.18; }
.product-full-img .no-img-placeholder .pip-brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; letter-spacing: 0.16em; color: #E0E0E0; text-transform: uppercase; line-height: 1; }
.product-full-img .no-img-placeholder .pip-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.24em; text-transform: uppercase; color: #CACACA; }
.product-full-body { padding: 26px; }
.product-full-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--black); margin-bottom: 10px; }
.product-full-body p  { font-size: 0.9rem; color: var(--grey-text); margin-bottom: 0.9rem; }
.product-features { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.feature-chip { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); border: 1px solid rgba(0,0,0,0.15); background: var(--yellow-light); padding: 3px 9px; border-radius: 3px; }
.pack-info { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.07em; color: var(--grey-mid); margin-bottom: 14px; }
.pack-info strong { color: var(--grey-text); }

/* Filter */
.filter-btn { transition: all .3s !important; }
.filter-btn.active, .filter-btn[data-filter="all"] { background: var(--yellow) !important; color: var(--black) !important; border-color: var(--yellow) !important; }
.filter-btn:hover { background: var(--yellow-pale) !important; color: var(--black) !important; border-color: var(--yellow) !important; }

/* ── INDUSTRIES PAGE ─────────────────────────────────────── */
.industry-page-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--radius-md); overflow: hidden; height: 100%; transition: var(--transition); box-shadow: var(--shadow-xs); }
.industry-page-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--yellow); }
.industry-card-header { background: var(--black); padding: 28px 24px; display: flex; align-items: center; gap: 14px; border-bottom: 3px solid var(--yellow); }
.industry-card-header .ind-icon { font-size: 2.2rem; }
.industry-card-header h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--yellow); margin: 0; }
.industry-card-body { padding: 22px 24px; }
.industry-card-body p { font-size: 0.88rem; color: var(--grey-text); margin-bottom: 0.9rem; }
.app-list li { font-size: 0.84rem; color: var(--grey-text); padding: 5px 0; border-bottom: 1px dashed var(--grey-light); display: flex; align-items: center; gap: 8px; }
.app-list li:last-child { border-bottom: none; }
.app-list li::before { content: '→'; color: var(--red); font-size: 0.78rem; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-page { background: var(--off-white); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--grey-light); border-top: 4px solid var(--yellow); border-radius: var(--radius-md); padding: 44px 36px; box-shadow: var(--shadow-sm); }
.contact-info-wrap { background: var(--black); border-radius: var(--radius-md); border-top: 4px solid var(--red); padding: 44px 36px; height: 100%; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 5px; }
.form-control { display: block; width: 100%; padding: 11px 14px; font-family: var(--font-body); font-size: 0.93rem; color: var(--black); background: var(--off-white); border: 1.5px solid var(--grey-border); border-radius: var(--radius); transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--yellow); background: var(--white); box-shadow: 0 0 0 3px rgba(255,214,0,0.15); }
.form-control.textarea { min-height: 110px; resize: vertical; }
select.form-control { cursor: pointer; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon { width: 38px; height: 38px; background: rgba(255,214,0,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.contact-detail h6 { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--yellow); margin-bottom: 3px; }
.contact-detail p  { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.6; }
.map-placeholder { background: var(--grey-bg); border: 1px solid var(--grey-light); border-radius: var(--radius-md); height: 280px; display: flex; align-items: center; justify-content: center; margin-top: 1.5rem; }
.map-placeholder span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-mid); }

/* ── PRODUCT SPEC BADGE ──────────────────────────────────── */
.spec-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.62rem; background: var(--yellow-light); border: 1px solid var(--yellow-dark); color: var(--black); padding: 3px 9px; border-radius: 3px; }
.spec-badge.red { background: var(--red-light); border-color: var(--red); color: var(--red-dark); }

/* ── SECTION PULLOUT STAT ────────────────────────────────── */
.pullout-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.pullout-num span { color: var(--red); font-size: 2rem; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1{transition-delay:.1s}.delay-2{transition-delay:.2s}.delay-3{transition-delay:.3s}.delay-4{transition-delay:.4s}.delay-5{transition-delay:.5s}

/* ── UTILITIES ───────────────────────────────────────────── */
.bg-white    { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-grey     { background: var(--grey-bg); }
.bg-black    { background: var(--black); }
.bg-yellow   { background: var(--yellow); }
.bg-red      { background: var(--red); }
.bg-navy     { background: var(--black); }
.bg-dark     { background: var(--charcoal); }

.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow-dark); }
.text-white  { color: white !important; }
.text-black  { color: var(--black); }
.text-grey   { color: var(--grey-text); }
.text-center { text-align: center; }

.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.d-flex{display:flex}.gap-2{gap:1rem}.gap-3{gap:1.5rem}.align-center{align-items:center}.flex-wrap{flex-wrap:wrap}

/* Brand stripe */
.brand-stripe { height: 5px; background: linear-gradient(90deg, var(--black) 0%, var(--black) 33%, var(--red) 33%, var(--red) 66%, var(--yellow) 66%, var(--yellow) 100%); }

/* Product image from upload */
.product-hero-real { background: var(--yellow-pale) !important; border: 2px solid var(--yellow) !important; padding: 20px; }
.product-hero-real img { width: 100%; height: 100%; object-fit: contain; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST FIXES
   ══════════════════════════════════════════════════════════ */

/* ── TABLET (≤991px) ── */
@media (max-width: 991px) {

  /* Header */
  .header-inner { padding: 0 16px; height: 72px; gap: 12px; }
  .site-logo { gap: 0; }
  .logo-image img { height: 48px; }
  .logo-text { display: none; }
  .logo-name { font-size: 1rem; }
  .logo-sub { font-size: 0.54rem; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; top: 72px; }

  /* Top info bar responsive */
  body > div:first-child > div { gap: 3px !important; }
  body > div:first-child > div > div:first-child { gap: 12px !important; flex-wrap: wrap; }
  body > div:first-child span { font-size: 0.55rem !important; }

  /* Hero — hide image panel on tablet, will show on mobile below text */
  .hero-visual-panel { display: none !important; }
  .hero-section { min-height: auto; padding-top: 100px; }
  .hero-section::before { display: none !important; } /* hide yellow diagonal shape */
  .hero-section { background: var(--yellow-pale); }
  .hero-content { padding: 48px 24px 40px; width: 100%; display: block !important; }
  .hero-h1 { font-size: clamp(2.4rem, 8vw, 3.6rem); line-height: 0.95; margin-bottom: 1.2rem; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; margin-bottom: 1.8rem; }
  .hero-badge { margin-bottom: 1.4rem; }
  .hero-ctas { margin-bottom: 2.4rem; gap: 12px; }
  .hero-stats { gap: 20px; padding-top: 1.6rem; border-top: 2px solid rgba(0,0,0,0.1); }
  
  /* Hero row — remove center alignment on tablet */
  .hero-section .row { align-items: flex-start !important; }

  /* Snapshot grid — 2 cols */
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshot-item:nth-child(2) { border-right: none; }
  .snapshot-item:nth-child(1),
  .snapshot-item:nth-child(2) { border-bottom: 1px solid var(--grey-light); }

  /* Why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Values grid */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process flow — allow wrap */
  .process-flow { flex-wrap: wrap; }

  /* Capacity stats — 2 cols */
  .capacity-stat-row { grid-template-columns: repeat(2, 1fr); }

  /* Compliance */
  .compliance-row { grid-template-columns: repeat(2, 1fr); }

  /* About badge — medium size on tablet */
  .about-img-badge { padding: 10px 14px; }
  .about-img-badge .num { font-size: 1.5rem; }
  .about-img-badge .lbl { font-size: 0.52rem; }

  /* Products card grid — 2 cols */
  .products-card-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }

  /* Product detail layout */
  .pd-layout { grid-template-columns: 1fr !important; gap: 32px; }
  .pd-image-col { max-width: 480px; }

  /* Page hero padding */
  .page-hero { padding: 100px 0 56px; }
}

/* ── MOBILE (≤767px) ── */
@media (max-width: 767px) {

  /* Top info bar — stack and reduce on mobile */
  body > div:first-child { padding: 4px 0 !important; }
  body > div:first-child > div { gap: 2px !important; justify-content: space-between !important; }
  body > div:first-child > div > div:first-child { gap: 10px !important; }
  body > div:first-child > div > div:first-child > span { font-size: 0.52rem !important; }

  /* Typography */
  h1 { font-size: clamp(2rem, 9vw, 2.8rem) !important; }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  h3 { font-size: 1.3rem; }

  /* Section padding */
  .section-pad    { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }
  .section-pad-lg { padding: 72px 0; }

  /* Hero */
  .hero-section { min-height: auto !important; padding-top: 90px; }
  .hero-content { width: 100%; padding: 36px 20px 32px !important; display: block !important; visibility: visible !important; }
  .hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 1.1rem; }
  .hero-badge { margin-bottom: 1.3rem; padding: 4px 12px; }
  .hero-badge span { font-size: 0.58rem; letter-spacing: 0.1em; }
  .hero-sub { font-size: 0.93rem; margin-bottom: 1.6rem; line-height: 1.6; }
  .hero-ctas { flex-direction: column; gap: 9px; margin-bottom: 2.2rem; }
  .hero-ctas .btn-red,
  .hero-ctas .btn-outline-black { text-align: center; display: block; padding: 14px 20px; }
  .hero-stats { gap: 12px; padding-top: 1.3rem; }
  .hero-stat-num { font-size: 1.7rem; }
  .hero-stat-item { min-width: calc(50% - 14px); }
  
  /* Hero visual panel — show below text on mobile */
  .hero-visual-panel { display: block !important; width: 100%; padding: 32px 0; flex: 0 0 100%; max-width: 100%; }
  .hero-section .row { flex-direction: column !important; }
  .col-lg-6 { flex: 0 0 100%; max-width: 100%; }
  .hero-product-wrap { max-width: 100%; }
  .hero-product-img { aspect-ratio: 1; max-height: 320px; }

  /* Snapshot — 1 col */
  .snapshot-grid { grid-template-columns: 1fr; }
  .snapshot-item { border-right: none !important; border-bottom: 1px solid var(--grey-light) !important; }
  .snap-num { font-size: 2.4rem; }

  /* About img frame — shorter on mobile */
  .about-img-frame { aspect-ratio: 16/9; }
  .about-img-badge { padding: 8px 12px; bottom: 12px; left: 12px; }
  .about-img-badge .num { font-size: 1.3rem; }
  .about-img-badge .lbl { font-size: 0.48rem; letter-spacing: 0.1em; }

  /* MFG cards — 2 col */
  .row .col-lg-3 { flex: 0 0 50%; max-width: 50%; }

  /* Why grid — 1 col */
  .why-grid { grid-template-columns: 1fr; }

  /* Values — 1 col */
  .values-grid { grid-template-columns: 1fr; }

  /* Capacity — 2 col */
  .capacity-stat-row { grid-template-columns: repeat(2, 1fr); }

  /* Compliance — 1 col */
  .compliance-row { grid-template-columns: 1fr; }

  /* Products grid — 1 col */
  .products-card-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Product full cards */
  .product-full-card { margin-bottom: 16px; }

  /* Filter bar */
  .filter-row { gap: 6px; }
  .filter-btn { font-size: 0.72rem; padding: 7px 12px; }
  .filter-btn .filter-count { display: none; }

  /* Contact */
  .contact-form-wrap,
  .contact-info-wrap { padding: 24px 18px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* CTA banner */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }

  /* Page hero */
  .page-hero { padding: 88px 0 44px; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* Quality items */
  .quality-item { gap: 14px; }
  .quality-num { font-size: 1.6rem; min-width: 38px; }

  /* Packaging table — allow scroll */
.packaging-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.packaging-table { min-width: 560px; }

/* Drum Supply Page */
.drum-hero {
  background: radial-gradient(circle at 12% 18%, rgba(255,214,0,0.2), transparent 40%),
              radial-gradient(circle at 88% 18%, rgba(235,106,49,0.18), transparent 35%),
              linear-gradient(130deg, #f6f5ef 0%, #fbfaf4 45%, #f1efe6 100%);
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--grey-light);
}
.drum-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
}
.drum-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey-text);
  max-width: 560px;
}
.drum-hero-copy h1 {
  letter-spacing: 0.02em;
}
.drum-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1.6rem 0 2rem;
}
.drum-pill {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
  box-shadow: var(--shadow-xs);
}
.drum-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.drum-hero-art {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drum-hero-art svg {
  width: min(360px, 90%);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
}
.drum-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,0.35) 0%, rgba(255,214,0,0) 70%);
  filter: blur(2px);
  z-index: -1;
}
.drum-section {
  padding: 80px 0;
  background: var(--white);
}
.drum-section.alt {
  background: var(--off-white);
}
.drum-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.drum-kpi {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.drum-kpi-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
}
.drum-kpi-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 6px;
}
.drum-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.drum-highlight-card {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
}
.drum-highlight-card.alt {
  background: linear-gradient(140deg, #0f1b28 0%, #17283a 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.drum-highlight-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  margin-bottom: 12px;
}
.drum-highlight-card.alt .drum-highlight-label {
  color: #ffd24a;
}
.drum-highlight-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 1.5rem 0;
}
.drum-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
}
.drum-highlight-card.alt .drum-stat-num {
  color: #fff;
}
.drum-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.drum-highlight-card.alt .drum-stat-label {
  color: rgba(255,255,255,0.6);
}
.drum-checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.drum-checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.drum-checklist li::before {
  content: "•";
  color: #ffd24a;
  position: absolute;
  left: 0;
  top: 0;
}
.drum-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.drum-carousel {
  position: relative;
}
.drum-carousel-top {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.drum-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.drum-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.18);
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.drum-dot.active {
  width: 26px;
  border-radius: 999px;
  background: var(--red);
}
.drum-track-wrap {
  overflow: hidden;
}
.drum-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
  width: 100%;
}
.drum-track::-webkit-scrollbar {
  display: none;
}
.drum-slide {
  width: 100%;
  scroll-snap-align: start;
}
.drum-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drum-card-feature .drum-card-media {
  background: #f4f2ea;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  position: relative;
}
.drum-card-media img {
  width: min(240px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.18));
}
.drum-card-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.14);
  display: grid;
  gap: 4px;
  min-width: 88px;
}
.drum-badge-top {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.drum-badge-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
}
.drum-badge-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.drum-card-body {
  padding: 22px 22px 26px;
}
.drum-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.drum-card-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
}
.drum-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--grey-text);
  font-size: 0.88rem;
}
.drum-cta {
  background: linear-gradient(120deg, #1a2633 0%, #111822 100%);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: #fff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
}
.drum-cta h2 { color: #fff; margin-bottom: 8px; }
.drum-cta p { color: rgba(255,255,255,0.75); margin: 0; max-width: 560px; }

/* About Page (ASK-style) */
.about-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #2b2b2b;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/carousel-1.png');
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 28px 0;
}
.about-hero-content h1 {
  margin: 0 0 6px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.about-hero-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.about-hero-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.about-hero-breadcrumb span { margin: 0 6px; }

.about-founder {
  background: var(--white);
}
.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}
.about-founder-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-xs);
  position: relative;
}
.about-founder-img {
  width: 100%;
  padding-top: 80%;
  background-size: cover;
  background-position: center;
}
.about-founder-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #c27c2e;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
}
.about-founder-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-xs);
  padding: 26px 26px 24px;
}
.about-founder-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.about-founder-panel blockquote {
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
  color: var(--grey-text);
  font-size: 0.92rem;
}
.about-founder-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.about-founder-metrics div {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  padding: 12px 12px;
  text-align: center;
}
.about-founder-metrics .metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
}
.about-founder-metrics .metric-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.about-founder-vm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.vm-card {
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--off-white);
}
.vm-card h4 {
  margin: 0 0 6px;
  font-size: 0.9rem;
}
.about-founder-sign {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--grey-mid);
}
.about-founder-sign .name {
  display: block;
  font-weight: 700;
  color: var(--black);
}

.about-timeline {
  background: var(--off-white);
}
.about-timeline h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #b8732a;
}
.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.about-timeline-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--grey-light);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.about-timeline-card .time-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #b8732a;
  margin-bottom: 8px;
}
.about-timeline-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--grey-text);
}

@media (max-width: 992px) {
  .about-founder-grid { grid-template-columns: 1fr; }
  .about-timeline-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .about-timeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
  .drum-hero { padding: 110px 0 70px; }
  .drum-hero-grid { grid-template-columns: 1fr; }
  .drum-hero-art { order: -1; min-height: 360px; }
  .drum-kpi-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drum-highlight-grid { grid-template-columns: 1fr; }
  .drum-track { grid-auto-columns: calc((100% - 20px) / 2); }
  .drum-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .drum-hero { padding: 100px 0 60px; }
  .drum-hero-lead { font-size: 0.96rem; }
  .drum-kpi-row { grid-template-columns: 1fr; }
  .drum-track { grid-auto-columns: 100%; }
  .drum-hero-ctas { flex-direction: column; }
  .drum-hero-ctas .btn-outline-black,
  .drum-hero-ctas .btn-red { width: 100%; text-align: center; }
}

  /* Product detail */
  .pd-layout { grid-template-columns: 1fr !important; }
  .pd-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .pd-nav-row { flex-direction: column; gap: 10px; }
  .pd-nav-card { min-width: unset; width: 100%; }
  .pd-nav-all { text-align: center; }
  .pd-cta-btns { flex-direction: column; }
  .pd-image-ctas { flex-direction: row; }

  /* Ticker */
  .ticker-item { font-size: 0.72rem; padding: 0 20px; }

  /* Bulk CTA */
  .bulk-cta { padding: 24px 20px; }
  .bulk-cta-content { flex-direction: column; }
  .bulk-cta-content .btn-red { display: block; text-align: center; }

  /* Mission card */
  .mission-card { padding: 24px 20px; }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {

  /* Top info bar — ultra-compact on very small screens */
  body > div:first-child { padding: 3px 0 !important; }
  body > div:first-child > div { gap: 0 !important; flex-direction: column !important; align-items: flex-start !important; }
  body > div:first-child > div > div:first-child { gap: 8px !important; width: 100%; }
  body > div:first-child > div > div:first-child > span { font-size: 0.48rem !important; display: block !important; }
  body > div:first-child > div > span:last-child { font-size: 0.48rem !important; margin-top: 3px !important; }

  .header-inner { padding: 0 12px; height: 68px; gap: 8px; }
  .site-logo { gap: 0; }
  .logo-image img { height: 44px; }
  .logo-name { font-size: 0.92rem; }
  .logo-sub { font-size: 0.5rem; }

  /* Mobile nav for small phones */
  .mobile-nav { top: 68px; padding: 20px 14px 24px; }
  .mobile-nav a { font-size: 0.90rem; padding: 11px 8px; margin-bottom: 5px; }
  .nav-toggle { padding: 8px 10px; }
  .nav-toggle span { width: 26px; height: 2.8px; gap: 5px; }

  /* Hero section for very small mobile */
  .hero-section { padding-top: 85px; min-height: auto !important; }
  .hero-content { padding: 28px 16px 24px !important; display: block !important; visibility: visible !important; }
  .hero-h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); margin-bottom: 0.9rem; }
  .hero-badge { margin-bottom: 1.1rem; padding: 3px 10px; }
  .hero-badge span { font-size: 0.54rem; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 1.4rem; line-height: 1.6; }
  .hero-ctas { margin-bottom: 2rem; gap: 8px; }
  .hero-ctas .btn-red,
  .hero-ctas .btn-outline-black { padding: 12px 16px; font-size: 0.75rem; }
  .hero-stats { gap: 10px; padding-top: 1.1rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.54rem; margin-top: 2px; }

  /* Hero stats — 2x2 grid */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 1.2rem; }
  .hero-stat-item { min-width: unset; }
  .hero-section::before { display: none !important; }

  /* MFG cards — 1 col */
  .row .col-lg-3 { flex: 0 0 100%; max-width: 100%; }

  /* Capacity — 1 col */
  .capacity-stat-row { grid-template-columns: 1fr; }

  /* Snapshot snap-desc hide on very small */
  .snap-desc { display: none; }

  /* About badge — ultra-compact on very small screens */
  .about-img-badge { padding: 6px 10px; bottom: 10px; left: 10px; }
  .about-img-badge .num { font-size: 1.1rem; }
  .about-img-badge .lbl { font-size: 0.44rem; letter-spacing: 0.08em; }

  /* About features compact */
  .about-feature-list li { font-size: 0.84rem; }

  /* Process steps — 2 cols */
  .process-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .process-arrow { display: none; }
  .process-step { min-width: unset; }

  /* pcard — portrait aspect on very small */
  .pcard-inner { aspect-ratio: 4/5; }

  /* Product detail prev/next */
  .pd-nav-name { font-size: 0.82rem; }
}

/* Hero Banner Carousel Override */
.hero-section { display: none !important; }
.hero-banner {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,214,0,0.18), transparent 20%),
    linear-gradient(135deg, #f5f6ef 0%, #fbfaf3 45%, #f3f1e6 100%);
}
.hero-banner-carousel {
  position: relative;
  min-height: calc(100vh - 80px);
}
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  background:
    radial-gradient(circle at 14% 20%, rgba(255,214,0,0.22), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(211,47,47,0.08), transparent 22%),
    linear-gradient(90deg, #faf7e5 0%, #fffdf4 40%, #f7f6f1 100%);
}
.hero-banner-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250,247,229,0.9) 0%, rgba(250,247,229,0.82) 34%, rgba(255,255,255,0.1) 62%, rgba(255,255,255,0.02) 100%);
}
.hero-banner-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 42px 0 54px;
}
.hero-banner-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 34px;
  align-items: center;
}
.hero-banner-card {
  position: relative;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px);
  padding: 38px 40px 34px;
}
.hero-banner-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 5px;
  border-radius: 30px 0 10px 0;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 100%);
}
.hero-banner .hero-badge {
  margin-bottom: 1.5rem;
}
.hero-banner .hero-h1 {
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 1.35rem;
}
.hero-banner .hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: #424242;
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero-banner .hero-stats {
  gap: 28px;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.hero-banner .hero-stat-item {
  min-width: 110px;
}
.hero-banner-media {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner-image-shell {
  position: relative;
  z-index: 2;
  width: min(92%, 760px);
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,249,249,0.96) 100%);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
  overflow: hidden;
}
.hero-banner-image-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.4;
}
.hero-banner-image-shell::after {
  content: 'FAST FIX PRODUCT SPOTLIGHT';
  position: absolute;
  left: 24px;
  top: 22px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.hero-banner-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  max-height: 80vh;
  object-fit: contain;
  object-position: var(--hero-banner-position);
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.16));
  transform: scale(1.02);
}
.hero-banner-glow {
  position: absolute;
  right: 2%;
  top: 14%;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,0.48) 0%, rgba(255,214,0,0.16) 36%, rgba(255,214,0,0) 72%);
  filter: blur(14px);
}
.hero-banner-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
}
.hero-banner-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-banner-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,0.14);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-banner-dot.active {
  width: 34px;
  background: var(--red);
}
@media (max-width: 991px) {
  .hero-banner {
    min-height: auto;
    padding-top: 100px;
  }
  .hero-banner-carousel,
  .hero-banner-inner {
    min-height: 760px;
  }
  .hero-banner-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-banner-card {
    padding: 30px 30px 28px;
  }
  .hero-banner-media,
  .hero-banner-image-shell {
    min-height: 360px;
  }
  .hero-banner-image {
    max-width: 560px;
    max-height: 330px;
  }
  .hero-banner-ui {
    bottom: 18px;
  }
}
@media (max-width: 767px) {
  .hero-banner {
    padding-top: 90px;
  }
  .hero-banner-carousel,
  .hero-banner-inner {
    min-height: 820px;
  }
  .hero-banner-shade {
    background: linear-gradient(180deg, rgba(250,247,229,0.92) 0%, rgba(250,247,229,0.82) 42%, rgba(255,255,255,0.18) 100%);
  }
  .hero-banner-card {
    order: 2;
    padding: 24px 20px;
    border-radius: 24px;
  }
  .hero-banner-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero-banner-media {
    order: 1;
    min-height: 280px;
    margin-top: 0;
  }
  .hero-banner-image-shell {
    width: 100%;
    min-height: 280px;
    border-radius: 28px;
  }
  .hero-banner-image {
    max-width: 100%;
    max-height: 250px;
    object-position: center center;
  }
  .hero-banner-glow {
    width: 78%;
    right: 11%;
    top: 4%;
  }
  .hero-banner .hero-h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 0.94;
  }
  .hero-banner .hero-sub {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .hero-banner .hero-ctas {
    flex-direction: column;
    gap: 9px;
    margin-bottom: 2rem;
  }
  .hero-banner .hero-ctas .btn-red,
  .hero-banner .hero-ctas .btn-outline-black {
    text-align: center;
    display: block;
    padding: 14px 20px;
  }
  .hero-banner .hero-stats {
    gap: 12px;
    padding-top: 1.3rem;
  }
  .hero-banner-ui {
    position: static;
    padding: 12px 0 0;
  }
}
@media (max-width: 480px) {
  .hero-banner {
    padding-top: 85px;
  }
  .hero-banner-carousel,
  .hero-banner-inner {
    min-height: 760px;
  }
  .hero-banner-card {
    padding: 22px 16px;
  }
  .hero-banner-media,
  .hero-banner-image-shell {
    min-height: 230px;
  }
  .hero-banner-image {
    max-height: 210px;
  }
  .hero-banner .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* Hero Banner - Reference Style Override */
.hero-banner {
  position: relative;
  min-height: clamp(620px, 86vh, 820px);
  padding-top: 82px;
  border-top: 4px solid #2f5d7f;
  background: #0f1f2c;
}
.hero-banner-carousel {
  position: relative;
  min-height: inherit;
}
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  background-image: var(--hero-banner-image);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.hero-banner-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.38) 24%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 68%, rgba(0,0,0,0.06) 100%);
}
.hero-banner-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 44px 0 90px;
}
.hero-banner-overlay {
  width: min(100%, 430px);
  color: #fff;
}
.hero-banner .hero-badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 1.15rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.hero-banner .hero-badge .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffe066;
}
.hero-banner .hero-badge span {
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  letter-spacing: 0.12em;
  font-size: 0.62rem;
}
.hero-banner .hero-h1 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.06;
  margin-bottom: 1.15rem;
  letter-spacing: 0;
}
.hero-banner .hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 1.6rem;
}
.hero-banner .hero-ctas {
  margin-bottom: 0;
}
.hero-banner .hero-ctas .btn-red {
  background: #eb6a31;
  border-color: #eb6a31;
  color: #fff;
  min-width: 240px;
  text-align: center;
}
.hero-banner .hero-ctas .btn-outline-black {
  display: none;
}
.hero-banner .hero-stats {
  display: none;
}
.hero-banner-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 4;
}
.hero-banner-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-banner-dot {
  width: 58px;
  height: 4px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-banner-dot.active {
  background: #eb6a31;
}
.hero-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 58px;
  height: 58px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.95);
  font-size: 74px;
  line-height: 0.6;
  cursor: pointer;
  transition: var(--transition);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-banner-arrow:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.hero-banner-arrow.prev {
  left: 34px;
}
.hero-banner-arrow.next {
  right: 34px;
}
.hero-banner-grid,
.hero-banner-card,
.hero-banner-media,
.hero-banner-image-shell,
.hero-banner-image,
.hero-banner-glow {
  display: none !important;
}
@media (max-width: 991px) {
  .hero-banner {
    min-height: 680px;
    padding-top: 98px;
  }
  .hero-banner-inner {
    padding: 36px 0 80px;
  }
  .hero-banner-overlay {
    width: min(100%, 450px);
  }
  .hero-banner-arrow.prev { left: 12px; }
  .hero-banner-arrow.next { right: 12px; }
}
@media (max-width: 767px) {
  .hero-banner {
    min-height: 620px;
    padding-top: 84px;
  }
  .hero-banner-slide {
    background-position: 64% 18% !important;
    background-size: contain !important;
    background-color: #d6d9dd;
  }
  .hero-banner-shade {
    background: linear-gradient(180deg, rgba(8,16,28,0.22) 0%, rgba(8,16,28,0.38) 46%, rgba(8,16,28,0.72) 100%);
  }
  .hero-banner-inner {
    align-items: flex-end;
    padding: 6px 0 30px;
  }
  .hero-banner-overlay {
    width: 100%;
    max-width: none;
    background: rgba(8,16,28,0.58);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    border-radius: 20px;
    padding: 10px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-banner .hero-badge {
    order: 1;
    margin-top: 0;
    margin-bottom: 0.38rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    box-shadow: none;
  }
  .hero-banner .hero-h1 { order: 2; }
  .hero-banner .hero-sub { order: 3; }
  .hero-banner .hero-ctas { order: 4; }
  .hero-banner .hero-badge span {
    font-size: 0.4rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.72);
  }
  .hero-banner .hero-h1 {
    font-size: clamp(1.12rem, 5.6vw, 1.52rem);
    line-height: 1.01;
    margin-bottom: 0.3rem;
  }
  .hero-banner .hero-sub {
    font-size: 0.68rem;
    line-height: 1.3;
    max-width: none;
    margin-bottom: 0.46rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-banner .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0;
  }
  .hero-banner .hero-ctas .btn-red {
    width: 100%;
    min-width: 0;
    padding: 9px 8px;
    font-size: 0.54rem;
    letter-spacing: 0.04em;
  }
  .hero-banner .hero-ctas .btn-outline-black {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 9px 8px;
    font-size: 0.54rem;
    letter-spacing: 0.04em;
    text-align: center;
    color: #fff;
    border-color: rgba(255,255,255,0.62);
    background: rgba(255,255,255,0.08);
  }
  .hero-banner-ui {
    bottom: 6px;
    text-align: center;
  }
  .hero-banner-dot {
    width: 20px;
    height: 3px;
  }
  .hero-banner-dots {
    justify-content: center;
  }
  .hero-banner-arrow {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-banner {
    min-height: 560px;
    padding-top: 82px;
  }
  .hero-banner-carousel,
  .hero-banner-inner {
    min-height: 560px;
  }
  .hero-banner-slide {
    background-position: 62% 14% !important;
    background-size: contain;
  }
  .hero-banner-overlay {
    padding: 8px 9px 9px;
  }
  .hero-banner .hero-badge { margin-top: 0; }
  .hero-banner .hero-h1 {
    font-size: clamp(0.98rem, 5.4vw, 1.28rem);
    margin-bottom: 0.26rem;
  }
  .hero-banner .hero-sub {
    font-size: 0.62rem;
    -webkit-line-clamp: 1;
    margin-bottom: 0.36rem;
  }
  .hero-banner .hero-badge span {
    font-size: 0.36rem;
    letter-spacing: 0.04em;
  }
  .hero-banner .hero-ctas {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}
