/* =========================================
   BALAJI TRADING CO. — REDESIGN v2
   Design System: Trust & Authority
   Colors: Navy / Slate / Blue
   Font: Plus Jakarta Sans
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:       #0F172A;
  --navy-mid:   #1E293B;
  --slate:      #334155;
  --slate-6:    #475569;
  --slate-5:    #64748B;
  --slate-3:    #CBD5E1;
  --slate-2:    #E2E8F0;
  --slate-1:    #F1F5F9;
  --bg:         #F8FAFC;
  --white:      #FFFFFF;
  --text:       #020617;
  --blue:       #0369A1;
  --blue-mid:   #0284C7;
  --blue-light: #0EA5E9;
  --blue-pale:  #E0F2FE;
  --green:      #059669;
  --font:       'Plus Jakarta Sans', system-ui, sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --radius:     8px;
  --radius-lg:  16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-card.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.36s; }

/* =========================================
   COMMON ELEMENTS
   ========================================= */

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 1rem;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
}

.heading-xl {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.heading-xl em { font-style: normal; color: var(--blue-mid); }

.heading-lg {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.heading-lg em { font-style: normal; color: var(--blue-mid); }

.heading-white { color: var(--white); }
.heading-white em { color: var(--blue-light); }

.body-text { font-size: 1rem; line-height: 1.75; color: var(--slate-6); }
.body-text-sm { font-size: 0.88rem; line-height: 1.7; color: var(--slate-5); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(3,105,161,0.3);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(3,105,161,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--slate-2);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.btn-secondary:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  transform: translateY(-1px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }

.btn-full { width: 100%; justify-content: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue);
}
.badge-green { background: #D1FAE5; color: var(--green); }
.badge-navy { background: rgba(15,23,42,0.08); color: var(--navy); }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.trust-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.trust-badge-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  flex-shrink: 0;
}
.trust-badge-icon svg { width: 18px; height: 18px; }
.trust-badge-text { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-badge-title { font-size: 0.78rem; font-weight: 700; color: var(--navy); line-height: 1; }
.trust-badge-sub { font-size: 0.65rem; color: var(--slate-5); line-height: 1; }

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(248,250,252,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--slate-2);
  padding: 0.8rem 2.5rem;
}
.nav.nav-dark { background: transparent; }
.nav.nav-dark.scrolled {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo a { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav.nav-dark .nav-logo-name { color: var(--white); }
.nav-logo-tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.nav-links { display: flex; list-style: none; gap: 0.25rem; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-6);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav.nav-dark .nav-links a { color: rgba(255,255,255,0.7); }
.nav-links a:hover { color: var(--blue-mid); background: var(--blue-pale); }
.nav.nav-dark .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--blue-mid); font-weight: 600; }
.nav.nav-dark .nav-links a.active { color: var(--white); }

.btn-nav {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(3,105,161,0.3);
}
.btn-nav:hover { background: var(--blue-mid); box-shadow: 0 4px 12px rgba(3,105,161,0.35); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.nav-dark .nav-hamburger span { background: var(--white); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu ul a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.mobile-menu ul a:hover { color: var(--blue-light); }

/* =========================================
   HOME — HERO
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2.5rem 5rem;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img { object-position: center; filter: brightness(0.25); }

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(14,165,233,0.3);
  color: var(--blue-light);
  background: rgba(14,165,233,0.08);
}
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-light); }

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: normal; color: var(--blue-light); }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.hero-trust-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(5,150,105,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-trust-check svg { width: 9px; height: 9px; }

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-img-card:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16/9; }
.hero-img-card:nth-child(2) { aspect-ratio: 4/3; }
.hero-img-card:nth-child(3) { aspect-ratio: 4/3; }
.hero-img-card img { transition: transform 0.6s var(--ease-out); }
.hero-img-card:hover img { transform: scale(1.04); }

/* =========================================
   MARQUEE
   ========================================= */

.marquee-strip {
  background: var(--navy-mid);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(14,165,233,0.15);
  border-bottom: 1px solid rgba(14,165,233,0.15);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.marquee-track .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.6;
  flex-shrink: 0;
  display: inline-block;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =========================================
   HOME — TRUST STATS BAR
   ========================================= */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-2);
  padding: 2.5rem 2.5rem;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-x: 1px solid var(--slate-2);
}
.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 2.5rem;
  border-right: 1px solid var(--slate-2);
}
.trust-stat:first-child { padding-left: 0; }
.trust-stat:last-child { border-right: none; }
.trust-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-stat-suffix { font-size: 1.4rem; color: var(--blue-mid); }
.trust-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-5);
  letter-spacing: 0.02em;
}
.trust-stat-sub {
  font-size: 0.65rem;
  color: var(--slate-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.2rem;
}

/* pulse animation for stats */
@keyframes stat-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.stat-live::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-left: 6px;
  vertical-align: middle;
  animation: stat-pulse 2s ease-in-out infinite;
}

/* =========================================
   HOME — ABOUT TEASER
   ========================================= */

.home-about { padding: 7rem 2.5rem; background: var(--bg); }
.home-about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.home-about-text .body-text { margin-top: 1.5rem; margin-bottom: 2rem; }

.credential-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.credential-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.credential-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 4px 16px rgba(3,105,161,0.1);
}
.credential-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credential-icon svg { width: 20px; height: 20px; color: var(--blue); }
.credential-text { flex: 1; }
.credential-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.credential-sub { font-size: 0.75rem; color: var(--slate-5); }
.credential-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #D1FAE5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credential-check svg { width: 11px; height: 11px; color: var(--green); }

.home-about-img-col { position: relative; }
.home-about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.12);
}
.home-about-img-float {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.14);
}
.home-about-float-badge {
  position: absolute;
  top: -1rem; right: -1rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 16px rgba(3,105,161,0.4);
  text-align: center;
}
.home-about-float-badge-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.home-about-float-badge-label {
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* =========================================
   HOME — PRODUCT TEASER
   ========================================= */

.home-products { padding: 7rem 2.5rem; background: var(--slate-1); }
.home-products-header {
  max-width: 1280px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.home-products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.home-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-2);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.home-product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}
.home-product-img { aspect-ratio: 4/3; overflow: hidden; }
.home-product-img img { transition: transform 0.5s var(--ease-out); }
.home-product-card:hover .home-product-img img { transform: scale(1.06); }
.home-product-body { padding: 1.25rem; }
.home-product-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.3rem;
}
.home-product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.home-product-desc { font-size: 0.78rem; color: var(--slate-5); line-height: 1.6; }

/* =========================================
   HOME — QUALITY CTA
   ========================================= */

.home-quality {
  padding: 7rem 2.5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.home-quality-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(3,105,161,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.home-quality-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-quality-text .label { color: var(--blue-light); }
.home-quality-text .label-dot { background: var(--blue-light); }
.home-quality-text .body-text { color: rgba(255,255,255,0.55); margin-top: 1.5rem; margin-bottom: 2.5rem; }

.quality-feature-list { display: flex; flex-direction: column; gap: 0; }
.quality-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.quality-feature-item:last-child { border-bottom: none; }
.quality-feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.quality-feature-icon svg { width: 18px; height: 18px; color: var(--blue-light); }
.quality-feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.quality-feature-text p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* =========================================
   CTA STRIP
   ========================================= */

.cta-strip { padding: 5rem 2.5rem; background: var(--bg); border-top: 1px solid var(--slate-2); }
.cta-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-strip-text .heading-lg { margin-top: 0.5rem; }
.cta-strip-text .body-text { margin-top: 0.75rem; }
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* =========================================
   PAGE HERO (shared inner pages)
   ========================================= */

.page-hero {
  position: relative;
  background: var(--navy);
  padding: 9rem 2.5rem 5rem;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg-img img { filter: brightness(0.18); }
.page-hero-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,105,161,0.3) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}
.page-hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1; pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.page-breadcrumb a:hover { color: var(--blue-light); }
.page-breadcrumb span:last-child { color: var(--blue-light); }
.page-breadcrumb-sep { color: rgba(255,255,255,0.2); }
.page-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.page-hero-title em { font-style: normal; color: var(--blue-light); }
.page-hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
}
.page-hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* =========================================
   ABOUT PAGE
   ========================================= */

.about-intro { padding: 6rem 2.5rem; background: var(--white); }
.about-intro-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.about-intro-blockquote {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: -0.01em;
  padding-left: 1.5rem;
  border-left: 3px solid var(--blue-mid);
}

.about-story { padding: 7rem 2.5rem; background: var(--bg); }
.about-story-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.about-story-body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.about-story-body p { font-size: 0.95rem; line-height: 1.85; color: var(--slate-6); }
.about-story-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.stats-bar { background: var(--navy); padding: 4rem 2.5rem; }
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 3rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-bar-item:first-child { padding-left: 0; }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-item .trust-stat-num { color: var(--white); font-size: 2.5rem; }
.stats-bar-item .trust-stat-suffix { color: var(--blue-light); }
.stats-bar-item .trust-stat-label { color: rgba(255,255,255,0.45); }

.proprietor { padding: 7rem 2.5rem; background: var(--white); }
.proprietor-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 7rem;
  align-items: start;
}
.proprietor-inner--text-only {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.proprietor-name-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.2rem;
  padding: 1rem 1.25rem;
  background: var(--slate-1);
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.proprietor-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.proprietor-img-caption { margin-top: 1.2rem; }
.proprietor-name { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.proprietor-title { font-size: 0.75rem; font-weight: 500; color: var(--slate-5); margin-top: 0.2rem; }
.proprietor-body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.proprietor-body p { font-size: 0.95rem; line-height: 1.85; color: var(--slate-6); }
.proprietor-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--slate-1);
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.location-section { padding: 7rem 2.5rem; background: var(--bg); }
.location-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.location-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.location-img-badge {
  position: absolute;
  bottom: 1.25rem; right: 1.25rem;
  background: var(--blue);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--white);
}
.location-img-badge-city { font-size: 1rem; font-weight: 700; display: block; }
.location-img-badge-country { font-size: 0.65rem; font-weight: 500; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; display: block; }
.location-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.location-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--slate-2);
}
.location-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-5); }
.location-value { font-size: 0.88rem; font-weight: 500; color: var(--navy); }

/* =========================================
   PRODUCTS PAGE
   ========================================= */

.products-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-2);
  padding: 1rem 2.5rem;
  position: sticky;
  top: 62px;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.products-filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.products-filter-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-5);
  flex-shrink: 0;
}
.products-filter-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-tab {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  background: none;
  color: var(--slate-6);
  border: 1px solid var(--slate-2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.filter-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 600; }

.products-catalog { max-width: 1280px; margin: 0 auto; padding: 4rem 2.5rem; display: flex; flex-direction: column; gap: 0; }

.catalog-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--slate-2);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.catalog-item:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.catalog-item:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-bottom: none; }
.catalog-item:hover { box-shadow: inset 4px 0 0 var(--blue-mid); }
.catalog-item--reverse { direction: rtl; }
.catalog-item--reverse > * { direction: ltr; }

.catalog-item-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.catalog-item-img img { transition: transform 0.6s var(--ease-out); }
.catalog-item:hover .catalog-item-img img { transform: scale(1.04); }
.catalog-item-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.catalog-item-body {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.catalog-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.catalog-item-name {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.catalog-item-category-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-top: 0.4rem;
}
.catalog-item-desc { font-size: 0.9rem; line-height: 1.75; color: var(--slate-6); margin-bottom: 2rem; }
.catalog-item-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--slate-2);
  background: var(--bg);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--white); }
.spec-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-5); }
.spec-value { font-size: 0.82rem; font-weight: 500; color: var(--navy); }
.catalog-btn { align-self: flex-start; }

.customisation-note { background: var(--navy); padding: 6rem 2.5rem; text-align: center; }
.customisation-note-inner {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.customisation-note-inner .heading-lg { color: var(--white); }
.customisation-note-inner .heading-lg em { color: var(--blue-light); }
.customisation-note-inner .body-text { color: rgba(255,255,255,0.5); }

/* =========================================
   QUALITY PAGE
   ========================================= */

.quality-reach { padding: 7rem 2.5rem; background: var(--white); }
.quality-reach-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.quality-reach-body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.quality-reach-body p { font-size: 0.95rem; line-height: 1.85; color: var(--slate-6); }

.reach-badge-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.reach-badge-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14,165,233,0.2) 0%, transparent 65%);
}
.reach-badge-ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(14,165,233,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.reach-badge-ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(14,165,233,0.15);
}
.reach-badge-label {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.reach-badge-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  position: relative; z-index: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.reach-badge-detail {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  position: relative; z-index: 1;
  display: block;
}

.reach-checklist { display: flex; flex-direction: column; gap: 0.65rem; }
.reach-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--slate-1);
  border-radius: var(--radius);
  border: 1px solid var(--slate-2);
}
.reach-check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #D1FAE5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reach-check-icon svg { width: 12px; height: 12px; color: var(--green); }
.reach-check span { font-size: 0.83rem; font-weight: 500; color: var(--navy); }

.testing-standards { padding: 7rem 2.5rem; background: var(--bg); }
.testing-standards-header { max-width: 600px; margin: 0 auto 3.5rem; text-align: center; }
.testing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testing-card {
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.testing-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 30px rgba(3,105,161,0.1);
  transform: translateY(-2px);
}
.testing-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testing-card-icon svg { width: 24px; height: 24px; color: var(--blue); }
.testing-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.testing-card p { font-size: 0.85rem; line-height: 1.75; color: var(--slate-6); flex: 1; }
.testing-card-standard {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--slate-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testing-standard-label { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-5); }
.testing-standard-value { font-size: 0.72rem; font-weight: 600; color: var(--blue); }

.quality-process { padding: 7rem 2.5rem; background: var(--white); }
.quality-process-inner { max-width: 900px; margin: 0 auto; }
.quality-process-header { margin-bottom: 3.5rem; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--slate-2);
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.process-step-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.process-step-content p { font-size: 0.88rem; line-height: 1.78; color: var(--slate-6); }

.quality-custom { padding: 7rem 2.5rem; background: var(--bg); }
.quality-custom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.quality-custom-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.quality-custom-text .body-text { margin-top: 1.5rem; }
.quality-custom-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.custom-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--slate-6);
  line-height: 1.55;
}
.custom-list-dash { color: var(--blue-mid); font-weight: 700; flex-shrink: 0; }
.quality-custom-text .btn-primary { margin-top: 2rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-hero {
  background: var(--bg);
  padding: 9rem 2.5rem 5rem;
  border-bottom: 1px solid var(--slate-2);
}
.contact-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.07;
  color: var(--navy);
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}
.contact-hero-title em { font-style: normal; color: var(--blue-mid); }
.contact-hero-sub { font-size: 1rem; line-height: 1.75; color: var(--slate-6); margin-bottom: 2.5rem; }

.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.contact-info-card {
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.2s ease;
}
.contact-info-card:hover { border-color: var(--blue-light); }
.contact-info-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-5); }
.contact-info-value { font-size: 0.88rem; font-weight: 600; color: var(--navy); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate-2);
}
.contact-form-title { font-size: 1.25rem; font-weight: 800; color: var(--navy); display: block; letter-spacing: -0.01em; }
.contact-form-sub { font-size: 0.78rem; color: var(--slate-5); margin-top: 0.3rem; display: block; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate-6);
}
.form-required { color: var(--blue-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--slate-2);
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate-3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(3,105,161,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--bg);
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-disclaimer {
  font-size: 0.68rem;
  color: var(--slate-5);
  text-align: center;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.why-section { padding: 7rem 2.5rem; background: var(--slate-1); }
.why-header { max-width: 1280px; margin: 0 auto 3rem; }
.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.why-item {
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.why-item:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 30px rgba(3,105,161,0.08);
  transform: translateY(-2px);
}
.why-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item-icon svg { width: 22px; height: 22px; color: var(--blue); }
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.why-item p { font-size: 0.8rem; line-height: 1.7; color: var(--slate-5); }

.firm-details { background: var(--navy); padding: 3.5rem 2.5rem; }
.firm-details-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.firm-details-col { display: flex; flex-direction: column; gap: 0.35rem; }
.firm-details-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.firm-details-value { font-size: 1rem; font-weight: 700; color: var(--white); }
.firm-details-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* =========================================
   FOOTER
   ========================================= */

.footer { background: var(--navy-mid); padding: 4rem 2.5rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; max-width: 280px; }
.footer-name { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.5; margin-top: 0.2rem; }
.footer-links { display: flex; gap: 0.25rem; flex-wrap: wrap; align-items: center; }
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.footer-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.footer-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom span { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1100px) {
  .home-products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .proprietor-inner { grid-template-columns: 280px 1fr; gap: 4rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stats-bar-item { padding: 1rem 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-bar-item:nth-child(2n) { padding-left: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .trust-stat { padding: 1rem 0; border-right: none; }
  .catalog-item { grid-template-columns: 1fr; }
  .catalog-item--reverse { direction: ltr; }
}

@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .hero-img-card:nth-child(1) { grid-column: 1 / -1; }

  .trust-bar { padding: 2rem 1.5rem; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .home-about { padding: 5rem 1.5rem 7rem; }
  .home-about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .home-about-img-col { min-height: 0; }
  .home-about-img-float { left: 0; }

  .home-products { padding: 5rem 1.5rem; }
  .home-products-header { flex-direction: column; align-items: flex-start; }
  .home-products-grid { grid-template-columns: repeat(2, 1fr); }

  .home-quality { padding: 5rem 1.5rem; }
  .home-quality-inner { grid-template-columns: 1fr; gap: 3rem; }

  .cta-strip { padding: 4rem 1.5rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 7rem 1.5rem 4rem; min-height: auto; }

  .about-intro { padding: 4rem 1.5rem; }
  .about-intro-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-story { padding: 5rem 1.5rem; }
  .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-bar { padding: 3rem 1.5rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; padding: 1.2rem 0 !important; }
  .proprietor { padding: 5rem 1.5rem; }
  .proprietor-inner { grid-template-columns: 1fr; gap: 2rem; }
  .proprietor-img { aspect-ratio: 4/3; max-width: 400px; }
  .location-section { padding: 5rem 1.5rem; }
  .location-inner { grid-template-columns: 1fr; gap: 3rem; }

  .products-filter-bar { top: 58px; padding: 0.8rem 1.5rem; }
  .products-catalog { padding: 3rem 1.5rem; }
  .catalog-item-body { padding: 2rem; }

  .quality-reach { padding: 5rem 1.5rem; }
  .quality-reach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .testing-standards { padding: 5rem 1.5rem; }
  .testing-grid { grid-template-columns: 1fr; }
  .quality-process { padding: 5rem 1.5rem; }
  .quality-custom { padding: 5rem 1.5rem; }
  .quality-custom-inner { grid-template-columns: 1fr; gap: 3rem; }

  .contact-hero { padding: 7rem 1.5rem 4rem; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-section { padding: 5rem 1.5rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .firm-details { padding: 2.5rem 1.5rem; }
  .firm-details-inner { flex-direction: column; gap: 1.5rem; }
  .firm-details-divider { display: none; }

  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero-right { grid-template-columns: 1fr; }
  .hero-img-card { aspect-ratio: 16/9 !important; }
  .home-products-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testing-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   PREFERS REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-scale, .reveal-left, .reveal-card {
    opacity: 1; transform: none; transition: none;
  }
  .marquee-track { animation: none; }
  .hero-scroll-bar::after { animation: none; }
  .stat-live::after { animation: none; }
}
