@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=DM+Mono:wght@400;500&display=swap');

/* ═══════════════════════════════════════════
   SILVERAXIS GLOBAL TRADING — DESIGN SYSTEM
═══════════════════════════════════════════ */

:root {
  --navy:        #042C53;
  --navy-mid:    #0C447C;
  --navy-light:  #185FA5;
  --navy-pale:   #E3F0FC;
  --steel:       #B5D4F4;
  --accent:      #C8901A;
  --accent-warm: #E8A020;
  --accent-light:#FDF3E0;
  --white:       #ffffff;
  --off-white:   #F5F7FA;
  --gray-50:     #F8FAFC;
  --gray-100:    #EEF1F5;
  --gray-300:    #C5CDD8;
  --gray-500:    #8492A6;
  --gray-600:    #636e7c;
  --gray-700:    #3D4A5C;
  --gray-900:    #1A202C;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --font-mono:   'DM Mono', monospace;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(4,44,83,0.07);
  --shadow-md:   0 6px 24px rgba(4,44,83,0.11);
  --shadow-lg:   0 16px 48px rgba(4,44,83,0.15);
  --trans:       0.28s cubic-bezier(0.4,0,0.2,1);
  --max-w:       1200px;
  --nav-h:       92px;
}

*, *::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(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
p { text-align: justify; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── SECTION LABELS — hidden globally ── */
/* section-label class kept in markup but suppressed visually site-wide */
.section-label { display: none !important; }

/* ── HEADINGS ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700; color: var(--gray-900); line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--navy-light); }
.section-sub {
  font-size: 16px; color: var(--gray-500);
  margin-top: 14px; line-height: 1.75; max-width: 560px;
}
.section-divider {
  width: 40px; height: 2px; border-radius: 2px;
  background: linear-gradient(to right, var(--accent-warm), var(--navy-light));
  margin: 14px 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: none; transition: all var(--trans); white-space: nowrap;
  cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent-warm); color: var(--white); }
.btn-accent:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy-pale); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--gray-100);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--trans);
  height: var(--nav-h);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; height: var(--nav-h); gap: 0; }
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; margin-right: 36px; text-decoration: none; }
.nav-logo-mark { width: 180px; height: 56px; border-radius: 9px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nav-logo-mark img { width: 180px; height: 56px; object-fit: contain; display: block; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); }
.nav-logo-text .sub { font-size: 9.5px; font-weight: 500; letter-spacing: 0.12em; color: var(--gray-500); text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: 13.5px; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm); transition: var(--trans); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--navy-pale); }
.nav-link.no-dropdown svg { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.rfq-btn { background: var(--navy); color: white; border: none; padding: 9px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 13.5px; transition: var(--trans); white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; }
.rfq-btn:hover { background: var(--navy-mid); }
.mobile-toggle { display: none; background: none; border: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0; flex-shrink: 0; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: var(--trans); }
.mobile-menu { position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: white; padding: 24px 28px; overflow-y: auto; z-index: 1100; transform: translateX(100%); transition: transform var(--trans); pointer-events: none; }
.mobile-menu.open { transform: translateX(0); pointer-events: all; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:last-child { border-bottom: none; }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; color: white; margin-bottom: 12px; letter-spacing: -0.01em; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════
   HERO SLIDER
══════════════════════════════════ */
.hero {
  margin-top: var(--nav-h); position: relative; overflow: hidden;
  height: calc(100vh - var(--nav-h)); min-height: 560px; max-height: 860px;
}
.hero-slides { display: flex; width: 300%; transition: transform 0.75s cubic-bezier(0.4,0,0.2,1); }
.hero-slide {
  width: 33.333%; position: relative;
  height: calc(100vh - var(--nav-h)); min-height: 560px; max-height: 860px;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,44,83,0.82) 0%, rgba(4,44,83,0.38) 55%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 28px; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-badge { display: none; } /* badge/tagline removed from hero */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 78px); font-weight: 700;
  color: white; line-height: 1.06; margin-bottom: 22px;
  max-width: 700px; letter-spacing: -0.02em;
}
.hero-desc { font-size: 17px; color: rgba(255,255,255,1); margin-bottom: 36px; max-width: 500px; line-height: 1.72; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 56px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 9px; }
.trust-badge .icon { width: 30px; height: 30px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.trust-badge .text { font-size: 12.5px; color: rgba(255,255,255,0.82); font-weight: 500; }
.hero-controls { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 7px; height: 7px; border-radius: 100px; background: rgba(255,255,255,0.35); border: none; transition: all 0.3s; cursor: pointer; padding: 0; }
.hero-dot.active { width: 26px; background: white; }
.hero-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; pointer-events: none; }
.hero-arrow { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: var(--trans); font-size: 18px; }
.hero-arrow:hover { background: rgba(255,255,255,0.25); }

/* ══════════════════════════════════
   HOME — IMAGE MOSAIC (replaces icon categories)
══════════════════════════════════ */
.home-mosaic { padding: 0; background: var(--white); }
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 380px 280px;
  gap: 3px;
}
.mosaic-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--navy);
}
.mosaic-item:first-child { grid-column: span 2; grid-row: span 1; }
.mosaic-item:nth-child(5) { grid-column: span 2; }

.mosaic-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
/* Fallback gradient backgrounds used when no real image is placed */
.mosaic-item .mosaic-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.55s ease;
}
.mosaic-item:hover .mosaic-bg { transform: scale(1.06); }
.mosaic-item:hover .mosaic-img { transform: scale(1.06); }

.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,44,83,0.82) 0%, rgba(4,44,83,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 26px;
  transition: background var(--trans);
}
.mosaic-item:hover .mosaic-overlay {
  background: linear-gradient(to top, rgba(4,44,83,0.92) 0%, rgba(4,44,83,0.35) 60%, transparent 100%);
}
.mosaic-cat {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-warm); margin-bottom: 6px;
}
.mosaic-name {
  font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px);
  font-weight: 700; color: white; line-height: 1.15;
  letter-spacing: -0.01em;
}
.mosaic-sub {
  font-size: 13.5px; color: rgba(255,255,255,0.75);
  margin-top: 5px; line-height: 1.5;
}
.mosaic-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 12px; font-weight: 600;
  color: white; opacity: 0; transform: translateY(6px);
  transition: all 0.3s ease;
}
.mosaic-item:hover .mosaic-arrow { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   HOME — FEATURED PRODUCTS
══════════════════════════════════ */
.products-home { padding: 80px 0; background: var(--off-white); }
.section-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.section-top h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; color: var(--gray-900); letter-spacing: -0.01em; }

.prod-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-home-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: var(--trans); display: flex; flex-direction: column;
}
.prod-home-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.prod-home-img {
  height: 210px; position: relative; overflow: hidden;
  background: var(--gray-100);
}
.prod-home-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.prod-home-card:hover .prod-home-img img { transform: scale(1.05); }
/* emoji fallback still works */
.prod-home-img-emoji {
  height: 210px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative;
}
.prod-home-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent-warm); color: white;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  padding: 4px 10px; border-radius: 100px; letter-spacing: 0.08em;
}
.prod-home-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.prod-home-cat { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-light); margin-bottom: 7px; }
.prod-home-name { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.2; }
.prod-home-spec { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.prod-home-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.prod-home-moq { font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); letter-spacing: 0.04em; }
.prod-home-moq strong { color: var(--gray-900); font-weight: 600; }
.quick-quote { background: var(--navy-pale); color: var(--navy); border: none; padding: 8px 14px; border-radius: var(--radius-sm); font-size: 12.5px; font-weight: 600; transition: var(--trans); }
.quick-quote:hover { background: var(--navy); color: white; }
.prod-home-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.prod-home-mini { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: var(--trans); cursor: pointer; }
.prod-home-mini:hover { box-shadow: var(--shadow-md); border-color: var(--navy-light); transform: translateY(-2px); }
.prod-home-mini-img { height: 120px; overflow: hidden; }
.prod-home-mini-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.prod-home-mini:hover .prod-home-mini-img img { transform: scale(1.06); }
.prod-home-mini-body { padding: 14px 16px; }
.prod-home-mini-name { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 3px; }
.prod-home-mini-sub { font-size: 12px; color: var(--gray-500); }

/* ══════════════════════════════════
   HOME — WHY SECTION (image left)
══════════════════════════════════ */
.why { padding: 0; background: var(--navy); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.why-image-panel {
  position: relative; overflow: hidden; min-height: 600px;
}
.why-image-panel .why-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.why-image-panel:hover .why-img { transform: scale(1.03); }
.why-image-panel .why-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}
.why-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
}
.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: white; line-height: 1.12; letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.why-content .why-intro {
  font-size: 15.5px; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 36px; max-width: 440px;
}
.why-features { display: flex; flex-direction: column; gap: 18px; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); transition: var(--trans);
}
.why-feature:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.16); }
.feat-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(232,160,32,0.15); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.feat-text .title { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
.feat-text .desc { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.certs { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.cert-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); padding: 7px 13px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.06em; }

/* ══════════════════════════════════
   HOME — INDUSTRIES (image visual panels)
══════════════════════════════════ */
.industries { padding: 80px 0; background: var(--white); }
.industries > .container > h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; color: var(--gray-900); letter-spacing: -0.01em; margin-bottom: 36px; }
.tabs-nav { display: flex; gap: 2px; border-bottom: 2px solid var(--gray-100); margin-bottom: 48px; overflow-x: auto; scrollbar-width: none; }
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn { padding: 11px 18px; font-size: 13.5px; font-weight: 500; color: var(--gray-500); background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: var(--trans); cursor: pointer; }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 600; }
.tab-btn:hover:not(.active) { color: var(--gray-700); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.industry-content h3 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.01em; }
.industry-content p { font-size: 15.5px; color: var(--gray-700); line-height: 1.75; margin-bottom: 26px; }
.industry-products { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.industry-tag { background: var(--navy-pale); color: var(--navy); padding: 6px 13px; border-radius: 100px; font-size: 12.5px; font-weight: 500; }

/* Image-based industry visual */
.industry-visual {
  border-radius: var(--radius); overflow: hidden;
  height: 360px; position: relative;
}
.industry-visual .ind-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.industry-visual:hover .ind-img { transform: scale(1.04); }
.industry-visual .ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,44,83,0.5) 0%, transparent 60%);
}
/* Emoji fallback */
.industry-visual-overlay { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 96px; }

/* ══════════════════════════════════
   ABOUT PAGE — IMAGE-ORIENTED
══════════════════════════════════ */
.about-editorial { background: var(--white); }

/* Full-bleed image hero for about page */
.about-hero {
  margin-top: var(--nav-h);
  position: relative; height: 70vh; min-height: 500px; max-height: 720px;
  overflow: hidden;
}
.about-hero-img {
  width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.9;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(3,31,58,0.65) 0%, rgba(3,31,58,0.45) 55%, transparent 100%);
  display: flex; justify-content: flex-end;
}
.about-hero-content { padding: 0 48px; max-width: var(--max-w); margin: 0 0 0 auto; text-align: right;}
.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 82px); font-weight: 700;
  color: white; line-height: 1.04; letter-spacing: -0.02em;
  max-width: 700px; margin-left: auto; margin-top: 50px; margin-right: 40px;
}
.about-hero-content h1 em { font-style: italic; color: white; }
.about-hero-content p {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 520px; line-height: 1.72; margin-left: auto;
}

/* About image-text chapter — alternating */
.about-chapter {
  padding: 0;
  border-bottom: 1px solid var(--gray-100);
}
.about-chapter:last-child { border-bottom: none; }
.about-chapter-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.about-chapter-split.reversed { direction: rtl; }
.about-chapter-split.reversed > * { direction: ltr; }

.about-chapter-img {
  position: relative; overflow: hidden;
}
.about-chapter-img img {
  width: 100%; height: 100%; min-height: 500px;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}
.about-chapter-img:hover img { transform: scale(1.04); }
.about-chapter-img .img-caption {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em; text-transform: uppercase;
}

.about-chapter-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px; background: var(--white);
}
.about-chapter-content.bg-off { background: var(--off-white); }
.about-chapter-content.bg-navy { background: var(--navy); }

.about-chapter-num {
  font-family: var(--font-display); font-size: 72px; font-weight: 700;
  color: var(--gray-100); line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.04em; display: block;
}
.about-chapter-content.bg-navy .about-chapter-num { color: rgba(255,255,255,0.08); }

.about-chapter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--gray-900); line-height: 1.12;
  letter-spacing: -0.015em; margin-bottom: 20px;
}
.about-chapter-content.bg-navy h2 { color: white; }

.about-chapter-content p {
  font-size: 15.5px; color: var(--gray-600, #4A5568); line-height: 1.85;
  margin-bottom: 18px;
}
.about-chapter-content p:last-of-type { margin-bottom: 0; }
.about-chapter-content.bg-navy p { color: rgba(255,255,255,0.65); }
.about-chapter-content p strong { color: var(--gray-900); font-weight: 600; }
.about-chapter-content.bg-navy p strong { color: white; }

/* About principles — full-width image strip */
.about-principles-strip {
  position: relative; height: 420px; overflow: hidden;
}
.about-principles-strip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-principles-strip .strip-overlay {
  position: absolute; inset: 0;
  background: rgba(4,44,83,0.80);
  display: flex; align-items: center;
}
.principles-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
  width: 100%;
}
.principle-block { text-align: center; }
.principle-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.principle-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; margin-bottom: 8px; }
.principle-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* About dark quote strip */
.about-value-strip { background: var(--gray-900); padding: 80px 0; position: relative; overflow: hidden; }
.about-value-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-value-overlay { position: absolute; inset: 0; background: rgba(8,18,30,0.88); }
.about-value-strip .container { position: relative; z-index: 1; }
.about-value-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-value-quote { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 600; color: white; line-height: 1.25; letter-spacing: -0.01em; font-style: italic; }
.about-value-quote::before { content: '\201C'; color: var(--accent-warm); }
.about-value-quote::after { content: '\201D'; color: var(--accent-warm); }
.about-value-right p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 24px; }
.about-cert-list { display: flex; flex-direction: column; gap: 10px; }
.about-cert-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.about-cert-item::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-warm); flex-shrink: 0; }

/* ══════════════════════════════════
   PRODUCTS PAGE — EDITORIAL SPLIT
══════════════════════════════════ */
/* About chapter stats & process steps */
.about-chapter-stats { display: flex; gap: 32px; margin: 20px 0 28px; padding: 20px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.about-stat-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--navy); line-height: 1; }
.about-stat-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-top: 4px; }
.about-chapter-content.bg-navy .about-chapter-stats { border-color: rgba(255,255,255,0.1); }
.about-chapter-content.bg-navy .about-stat-num { color: var(--accent-warm); }
.about-chapter-content.bg-navy .about-stat-label { color: rgba(255,255,255,0.5); }
.about-process-steps { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; }
.about-process-step { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); }
.about-chapter-content.bg-off .about-process-step { background: var(--gray-50); }
.about-process-icon { min-width: 32px; height: 32px; border-radius: 7px; background: var(--navy-pale); color: var(--navy); font-family: var(--font-mono); font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-process-step > div:last-child { font-size: 14px; color: var(--gray-700); line-height: 1.65; }
.about-process-step strong { color: var(--gray-900); font-weight: 600; display: block; margin-bottom: 2px; }

.products-editorial { padding: 0 0 100px; background: var(--white); }
.prod-page-intro { padding: 80px 0 72px; position: relative; overflow: hidden; }
.prod-page-intro-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7;}
.prod-page-intro-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(4,44,83,0.9) 0%, rgba(4,44,83,0.7) 60%, rgba(4,44,83,0.5) 100%); }
.prod-page-intro .container { position: relative; z-index: 1; }
.prod-page-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.prod-page-intro-left h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: white; line-height: 1.05; letter-spacing: -0.02em; }
.prod-page-intro-left h1 em { font-style: italic; color: white; }
.prod-page-intro-right p { font-size: 16px; color: rgba(255,255,255,1); line-height: 1.8; margin-bottom: 28px; font-weight: 400;}
.prod-page-intro-right .intro-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.intro-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,1); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.7); padding: 6px 13px; border-radius: 100px; }
.prod-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.prod-split.reverse { direction: rtl; }
.prod-split.reverse > * { direction: ltr; }
.prod-split-visual { position: relative; overflow: hidden; min-height: 480px; }
.prod-split-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.prod-split:hover .prod-split-img { transform: scale(1.04); }
.prod-split-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,44,83,0.6) 0%, rgba(4,44,83,0.2) 100%); }
.prod-split-number { position: absolute; bottom: 24px; right: 28px; z-index: 1; font-family: var(--font-display); font-size: 96px; font-weight: 700; color: rgba(255,255,255,0.18); line-height: 1; user-select: none; letter-spacing: -0.04em; }
.prod-split-content { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; border-bottom: 1px solid var(--gray-100); }
.prod-split-content .cat-label { font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-warm); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.prod-split-content .cat-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent-warm); }
.prod-split-content h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--gray-900); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 20px; }
.prod-split-content p { font-size: 16px; color: var(--gray-900, #4A5568); line-height: 1.82; margin-bottom: 28px; max-width: 480px; }
.prod-attrs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; text-align: justify; }
.prod-attr { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-900); }
.prod-attr-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-warm); flex-shrink: 0; margin-top: 8px; }
.prod-split-divider { width: 100%; height: 1px; background: var(--gray-100); }
.prod-cta-strip { background: var(--navy); padding: 40px 0; text-align: center; }
.prod-cta-strip h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: white; margin-bottom: 12px; letter-spacing: -0.01em; }
.prod-cta-strip p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 28px; text-align: center; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-section { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info h3 { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.01em; }
.contact-info p { font-size: 15px; color: var(--gray-900); line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-text .label { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 3px; }
.contact-item-text .val { font-size: 15px; color: var(--gray-900); font-weight: 500; line-height: 1.6; }
.offices-card { background: var(--navy-pale); border-radius: var(--radius); padding: 20px; border: 1px solid var(--steel); }
.offices-card .offices-title { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.offices-card .office { font-size: 13px; color: var(--gray-700); line-height: 1.7; }
.rfq-form { background: white; border-radius: var(--radius); border: 1px solid var(--gray-100); padding: 38px; box-shadow: var(--shadow-sm); }
.rfq-form h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; letter-spacing: -0.01em; }
.rfq-form .subtitle { font-size: 14px; color: var(--gray-700); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--gray-600); margin-bottom: 7px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 2px solid var(--gray-100); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body); color: var(--gray-900); background: var(--white); transition: border-color var(--trans); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--gray-900); color: white; }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: white; margin-bottom: 4px; }
.footer-brand .brand-tagline { font-family: var(--font-mono); font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 9px; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 13px; transition: var(--trans); text-decoration: none; }
.social-btn:hover { background: var(--navy-mid); color: white; border-color: var(--navy-mid); }
.footer-col h4 { font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.95); margin-bottom: 16px; }
.footer-col p { font-size: 13px; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color var(--trans); }
.footer-col ul li a:hover { color: white; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: 13.5px; color:rgba(255,255,255,0.65); margin-bottom: 10px; line-height: 1.6; }
.footer-contact-row svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.65); opacity: 1; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; margin-top: 3px; }
.footer-contact-row:hover svg,
.footer-contact-row:hover a{ color:#ffffff; stroke: #ffffff; transform:translateY(-0.5px);}
.newsletter-form { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-sm); padding: 10px 13px; font-size: 13.5px; color: white; font-family: var(--font-body); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { outline: none; border-color: var(--navy-light); }
.newsletter-form button { background: var(--navy-light); border: none; color: white; padding: 10px 15px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; transition: var(--trans); }
.newsletter-form button:hover { background: var(--navy-mid); }
.footer-cert-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.footer-cert { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 4px 8px; font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,0.95); }

/* ══════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


/* =========================
  Privacy 
  ========================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; color: #2c2c2c; background: #fff; line-height: 1.75; }
        h1, h2, h3 { font-family: 'Playfair Display', serif; }

        /* CONTENT */
        .content-section { padding: 50px 0 80px; }
        /* .container { max-width: 900px; margin: 0 auto; padding: 0 24px; } */

        .lead { font-size: 1.05rem; color: #444; border-left: 4px solid #2d5986; padding-left: 16px; margin-bottom: 40px; }

        .policy-section { margin-bottom: 34px; }
        .policy-section h3 { font-size: 1.2rem; font-weight: 700; color: #1a2e44; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; padding-bottom: 8px; border-bottom: 2px solid #e8f0f8; }
        .policy-section h3 .num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: #2d5986; color: #fff; border-radius: 50%; font-size: .85rem; font-family: 'IBM Plex Sans', sans-serif; flex-shrink: 0; }
        .policy-section p { margin-bottom: 12px; color: #444; }
        .policy-section ul { padding-left: 20px; margin-bottom: 12px; }
        .policy-section ul li { margin-bottom: 8px; color: #444; }
        .policy-section ul li strong { color: #1a2e44; }
        .note { color: #666; font-style: italic; font-size: .92rem; }

        .contact-box { background: #f0f6fc; border: 1px solid #cde0f2; border-radius: 8px; padding: 24px 28px; margin-top: 12px; }
        .contact-box p { margin-bottom: 8px; color: #333; }
        .contact-box p:last-child { margin-bottom: 0; }
        .contact-box a { color: #2d5986; text-decoration: none; }
        .contact-box a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .prod-home-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-home-row2 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-panel { height: 380px; min-height: unset; }
  .why-image-panel img { min-height: 380px; }
  .why-content { padding: 52px 40px; }
  .about-chapter-split { grid-template-columns: 1fr; }
  .about-chapter-split.reversed { direction: ltr; }
  .about-chapter-img img { min-height: 320px; }
  .about-value-inner { grid-template-columns: 1fr; gap: 40px; }
  .principles-inner { grid-template-columns: repeat(2, 1fr); }
  .prod-page-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .prod-split { grid-template-columns: 1fr; }
  .prod-split.reverse { direction: ltr; }
  .prod-split-content { padding: 48px 36px; }
  .prod-split-visual { min-height: 320px; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item:first-child { grid-column: span 2; }
  .mosaic-item:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .rfq-btn { display: none; }
  .nav-logo { margin-right: 12px; }
  .nav-logo-mark { width: 150px; height: 48px; }
  .nav-logo-mark img { width: 150px; height: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-hero-content h1 { font-size: clamp(38px, 8vw, 64px); }
  .principles-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .prod-home-grid { grid-template-columns: 1fr; }
  .prod-home-row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-item:first-child, .mosaic-item:nth-child(5) { grid-column: span 1; }
  .mosaic-grid { grid-template-rows: auto; }
  .section-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .prod-split-content { padding: 36px 24px; }
  /* Principles strip — collapse absolute-positioning stack on mobile */
  .about-principles-strip { height: auto; overflow: visible; background: var(--navy); padding: 56px 0; }
  /* position:static makes the browser ignore inset:0 entirely — no more zero-height collapse */
  .about-principles-strip .strip-overlay { position: static; background: none; display: block; padding: 0; }
  .principles-inner { grid-template-columns: 1fr; gap: 28px; }

  /* Navbar logo sizing on small phones */
  .nav-logo { margin-right: 0; }
  .nav-logo-mark { width: 120px; height: 40px; }
  .nav-logo-mark img { width: 120px; height: 40px; }

  /* Hero: tighter spacing and smaller title on phones */
  .hero-title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 14px; }
  .hero-desc { font-size: 15px; margin-bottom: 24px; max-width: 100%; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 10px 18px; font-size: 13px; }
  .hero-trust { margin-top: 28px; gap: 14px; flex-wrap: wrap; }
  .hero-content { padding: 0 20px; }
}
