/* ============================================================
   MNTC MultiNational Trading Corp — Global Stylesheet v2
   Palette: Navy #0A1F44 | Gold #C9A84C | Grey #6B7280 | White #FFFFFF | Light #F4F6F9
   ============================================================ */

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

:root {
  --navy:        #0A1F44;
  --navy-dark:   #071530;
  --navy-mid:    #122B5E;
  --navy-light:  #1a3a7a;
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-pale:   #FDF6E3;
  --grey:        #6B7280;
  --grey-light:  #9CA3AF;
  --grey-bg:     #F4F6F9;
  --grey-border: #E2E8F0;
  --white:       #FFFFFF;
  --text:        #1E293B;
  --text-light:  #64748B;
  --success:     #16A34A;
  --error:       #DC2626;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.18);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container { width: 92%; max-width: 1240px; margin: 0 auto; }
.container-wide { width: 96%; max-width: 1400px; margin: 0 auto; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-light); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.gold-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.75rem 0 1.25rem;
  border-radius: 2px;
}
.section-desc { max-width: 640px; font-size: 1.02rem; color: var(--text-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
  text-align: center; justify-content: center;
}
.btn-primary  { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy-dark); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }

/* ---------- Section ---------- */
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }
.section-grey { background: var(--grey-bg); }

/* ---------- Tags ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(201,168,76,.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.25);
  letter-spacing: 0.04em;
}
.tag-navy { background: rgba(10,31,68,.08); color: var(--navy); border-color: rgba(10,31,68,.15); }
.tag-green { background: rgba(22,163,74,.1); color: var(--success); border-color: rgba(22,163,74,.2); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 0.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,.55);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.topbar-right a:hover { color: var(--gold); }
.topbar-sep { color: rgba(255,255,255,.2); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 1.5rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.nav-logo-img { height: 48px; width: auto; display: block; }
.footer-logo-img { height: 56px; width: auto; display: block; }
.nav-logo-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.nav-logo-tag  { font-size: 0.62rem; font-weight: 500; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* Search bar */
.nav-search {
  flex: 1; max-width: 540px;
  display: flex;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}
.nav-search-select {
  padding: 0 0.85rem;
  border: none; border-right: 1px solid var(--grey-border);
  background: var(--grey-bg);
  font-family: var(--font-body); font-size: 0.8rem;
  color: var(--text); cursor: pointer; outline: none;
  min-width: 130px;
}
.nav-search-input {
  flex: 1; padding: 0 1rem;
  border: none; outline: none;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--white);
}
.nav-search-input::placeholder { color: var(--grey-light); }
.nav-search-btn {
  padding: 0 1.2rem;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer;
  font-size: 1rem; transition: background var(--transition);
}
.nav-search-btn:hover { background: var(--navy-mid); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-action-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 500; color: var(--text);
  transition: all var(--transition); cursor: pointer;
  background: none; border: 1px solid transparent;
  white-space: nowrap;
}
.nav-action-btn:hover { background: var(--grey-bg); border-color: var(--grey-border); }
.nav-action-btn.primary {
  background: var(--gold); color: var(--navy-dark);
  border-color: var(--gold); font-weight: 700;
}
.nav-action-btn.primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* Category nav bar */
.cat-nav {
  background: var(--navy);
  border-bottom: 2px solid rgba(201,168,76,.2);
}
.cat-nav-inner {
  display: flex; align-items: center;
  height: 44px; gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0 1rem;
  height: 100%;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
}
.cat-nav-link:hover, .cat-nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.cat-nav-link .cat-icon { font-size: 0.95rem; }

/* Mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--grey-border);
}
.nav-mobile a {
  padding: 0.85rem 1.5rem; font-size: 0.92rem; font-weight: 500;
  color: var(--text); border-left: 3px solid transparent;
  display: block; transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--navy); border-left-color: var(--gold); background: var(--grey-bg); }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0A1F44 55%, #0d2a5c 100%);
  padding: 64px 0 56px;
  position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.1), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px; padding: 0.35rem 0.9rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.5); } }

.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }

.hero-rfq {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
}
.hero-rfq h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.35rem; }
.hero-rfq p  { font-size: 0.84rem; margin-bottom: 1.25rem; }
.rfq-form { display: flex; flex-direction: column; gap: 0.75rem; }
.rfq-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text); outline: none; width: 100%;
  transition: border-color var(--transition);
}
.rfq-input:focus { border-color: var(--navy); }
.rfq-input::placeholder { color: var(--grey-light); }
.rfq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.rfq-submit {
  background: var(--gold); color: var(--navy-dark);
  border: none; padding: 0.85rem;
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition); width: 100%;
}
.rfq-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.rfq-note { font-size: 0.72rem; color: var(--grey-light); text-align: center; margin-top: 0.25rem; }

.hero-stats {
  display: flex; gap: 2rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold); display: block; }
.hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.cats-section { padding: 64px 0; }
.cats-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  display: block;
}
.cat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(10,31,68,.06), rgba(10,31,68,.02));
  border: 1px solid rgba(10,31,68,.08);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 1rem;
  transition: all var(--transition);
}
.cat-card:hover .cat-card-icon { background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05)); border-color: rgba(201,168,76,.3); }
.cat-card-name { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.cat-card-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.cat-card-count { font-size: 0.72rem; color: var(--gold); font-weight: 600; margin-top: 0.5rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: calc(12.5% + 30px); right: calc(12.5% + 30px);
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 0;
}
.how-step { text-align: center; padding: 2rem 1rem; position: relative; z-index: 1; }
.how-num {
  width: 60px; height: 60px;
  background: var(--white); border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--gold);
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px var(--grey-bg);
}
.how-step h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 0.95rem; }
.how-step p  { font-size: 0.84rem; }

/* ============================================================
   TRUST / FEATURES STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.trust-strip-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.trust-item { text-align: center; }
.trust-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.trust-title { font-weight: 700; color: var(--white); font-size: 0.88rem; margin-bottom: 0.2rem; }
.trust-desc  { font-size: 0.75rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FEATURED SECTORS
   ============================================================ */
.sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.sector-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer;
  min-height: 200px;
  display: flex; align-items: flex-end;
  transition: transform var(--transition);
  border: 1px solid var(--grey-border);
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sector-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.sector-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,21,48,.95) 0%, rgba(7,21,48,.5) 50%, transparent 100%);
}
.sector-content { position: relative; z-index: 2; padding: 1.5rem; }
.sector-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.sector-sub   { font-size: 0.78rem; color: rgba(255,255,255,.6); margin-top: 0.2rem; }
.sector-link  { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.3rem; }

/* ============================================================
   MARKETS STRIP
   ============================================================ */
.markets-strip { padding: 56px 0; }
.markets-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2rem;
}
.market-pill {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border: 1.5px solid var(--grey-border);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  transition: all var(--transition); cursor: default;
  background: var(--white);
}
.market-pill:hover { border-color: var(--gold); color: var(--navy); box-shadow: 0 2px 12px rgba(201,168,76,.15); }
.market-flag { font-size: 1.2rem; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.service-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.svc-title { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.svc-desc  { font-size: 0.84rem; color: var(--text-light); }
.svc-link  { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-top: 1rem; transition: gap var(--transition); }
.service-card:hover .svc-link { gap: 0.6rem; }

/* ============================================================
   WHY MNTC
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-pt { display: flex; gap: 1rem; }
.why-pt-num {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--navy-dark);
  margin-top: 2px;
}
.why-pt-title { font-weight: 700; color: var(--navy); font-size: 0.92rem; margin-bottom: 0.2rem; }
.why-pt-desc  { font-size: 0.85rem; color: var(--text-light); }
.why-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-stat {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; text-align: center;
}
.why-stat:first-child { grid-column: span 2; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); border: 1px solid rgba(201,168,76,.2); }
.why-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; }
.why-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.35rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy), #0d2a5c);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.85rem; }
.cta-banner p  { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 2rem; font-size: 1.02rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CATEGORY PAGE HERO
   ============================================================ */
.cat-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.cat-hero-inner { position: relative; z-index: 2; }
.cat-hero-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.cat-hero-breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.cat-hero-breadcrumb a:hover { color: var(--gold); }
.cat-hero-breadcrumb span { color: rgba(255,255,255,.25); }
.cat-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cat-hero-desc { color: rgba(255,255,255,.7); max-width: 600px; margin: 0.75rem 0 1.5rem; font-size: 1rem; }
.cat-hero-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cat-hero-tag {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); border-radius: 100px;
  padding: 0.3rem 0.85rem; font-size: 0.75rem; font-weight: 500;
}

/* Category page body */
.cat-body { padding: 56px 0; }
.cat-sidebar-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }

.sidebar-box {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.sidebar-title {
  font-family: var(--font-head); font-size: 0.95rem; color: var(--navy);
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-border);
}
.sidebar-links { display: flex; flex-direction: column; gap: 0.35rem; }
.sidebar-links a {
  font-size: 0.84rem; color: var(--text-light);
  padding: 0.4rem 0.5rem; border-radius: var(--radius-sm);
  transition: all var(--transition); display: flex; align-items: center; justify-content: space-between;
}
.sidebar-links a:hover { color: var(--navy); background: var(--grey-bg); }
.sidebar-links a.active { color: var(--gold); font-weight: 600; background: rgba(201,168,76,.08); }
.sidebar-count { font-size: 0.72rem; color: var(--grey-light); }

/* Product/service listing cards */
.listing-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.listing-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 1.25rem; padding: 1.25rem;
  transition: all var(--transition);
}
.listing-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.3); }
.listing-img {
  width: 120px; height: 100px;
  background: var(--grey-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0;
}
.listing-body { min-width: 0; }
.listing-name { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.listing-desc { font-size: 0.83rem; color: var(--text-light); margin-bottom: 0.6rem; line-height: 1.6; }
.listing-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.listing-meta { font-size: 0.76rem; color: var(--grey-light); margin-top: 0.5rem; }
.listing-action { flex-shrink: 0; display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; justify-content: center; min-width: 140px; }
.listing-moq { font-size: 0.78rem; color: var(--text-light); }
.listing-moq strong { color: var(--navy); font-size: 0.9rem; }

/* ============================================================
   FORMS (Inquiry / Contact)
   ============================================================ */
.form-page { padding: 72px 0; }
.form-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.form-box {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-box h2 { margin-bottom: 0.5rem; }
.form-box .form-intro { margin-bottom: 2rem; font-size: 0.92rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.45rem; }
.form-label span { color: var(--error); }
.form-control {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,31,68,.08); }
.form-control::placeholder { color: var(--grey-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  background: var(--navy); color: var(--white);
  border: none; width: 100%; padding: 1rem;
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition); margin-top: 0.5rem;
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-note { font-size: 0.75rem; color: var(--grey-light); text-align: center; margin-top: 0.75rem; }
.form-success, .form-error {
  display: none; padding: 1rem 1.25rem;
  border-radius: var(--radius); margin-top: 1rem;
  font-size: 0.88rem; font-weight: 500;
}
.form-success { background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.25); color: var(--success); }
.form-error   { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.25); color: var(--error); }

.form-sidebar-card {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 2rem; color: var(--white); margin-bottom: 1.25rem;
}
.form-sidebar-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.form-sidebar-card p  { color: rgba(255,255,255,.65); font-size: 0.88rem; }
.sidebar-contact-item { display: flex; gap: 0.75rem; margin-top: 1rem; align-items: flex-start; }
.sidebar-contact-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.sidebar-contact-text { font-size: 0.85rem; color: rgba(255,255,255,.7); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 560px; font-size: 1.02rem; }
.page-breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.page-breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.page-breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); padding: 64px 0 0; border-top: 1px solid rgba(201,168,76,.15); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.55); line-height: 1.8; margin: 0.85rem 0 1.25rem; max-width: 240px; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-soc {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,.55);
  transition: all var(--transition);
}
.footer-soc:hover { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.3); color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-head); color: var(--white);
  font-size: 0.9rem; margin-bottom: 1rem;
  padding-bottom: 0.65rem; border-bottom: 1px solid rgba(201,168,76,.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-i { display: flex; gap: 0.65rem; margin-bottom: 0.75rem; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.82rem; color: rgba(255,255,255,.55); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; font-size: 0.78rem; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .trust-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid::before { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-layout { grid-template-columns: 1fr; }
  .cat-sidebar-layout { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .nav-search { display: none; }
  .nav-toggle { display: flex; }
  .cat-nav { display: none; }
  .topbar { display: none; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .listing-card { grid-template-columns: 80px 1fr; }
  .listing-action { display: none; }
  .rfq-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cats-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
