/* PSR Metals — Contact Us Page Styles */
/* ═══════════════════════════════════════════════════════
   PSR METALS PVT. LTD. — style.css
   Premium Light Industrial Theme
   Brand Accent: PSR Purple #3E4095
   ═══════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ────────────────────────────────── */
:root {
  /* Light Industrial Palette */
  --bg:                 #F5F5F3;
  --bg-elevated:        #FFFFFF;
  --surface:            #EAEAE7;
  --surface-2:          #E2E2DE;
  --metallic-primary:   #7A8591;
  --metallic-accent:    #A0A8B0;

  /* ── PSR Brand Purple ─────────────────────────────────
     Source: PSR Metal Logo.png, Stitch config #3E4095
     ─────────────────────────────────────────────────── */
  --accent:             #3E4095;   /* logo primary */
  --accent-hover:       #2E3075;   /* 10% darker */
  --accent-light:       #5558B8;   /* 15% lighter — hover states */
  --accent-subtle:      rgba(62, 64, 149, 0.08);
  --accent-glow:        rgba(62, 64, 149, 0.22);
  --accent-border:      rgba(62, 64, 149, 0.3);

  --text-primary:       #1A1A1F;
  --text-secondary:     #5A6070;
  --border-subtle:      rgba(0, 0, 0, 0.08);
  --border-medium:      rgba(0, 0, 0, 0.13);
  --shadow-card:        0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-hover:       0 14px 40px rgba(62, 64, 149, 0.14);
  --gradient-metallic:  linear-gradient(135deg, #EAEAE7 0%, #F5F5F3 50%, #D8D8D4 100%);

  /* Hero (dark exception — ingot needs dark canvas) */
  --hero-bg:            #030408;
  --hero-bg-end:        #0d0f1e;
  --hero-text:          #F2F2F4;
  --hero-sub:           #9da3b4;
  --hero-border:        rgba(157, 163, 180, 0.15);

  /* Typography */
  --font-heading: 'Barlow', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --section-v:    clamp(4.5rem, 9vw, 8rem);
  --section-h:    1.5rem;
  --container:    1280px;
  --radius-card:  12px;
  --radius-sm:    8px;
}

@media (min-width: 1024px) {
  :root {
    --section-h: 2.5rem;
  }
}
@media (min-width: 1440px) {
  :root {
    --container: 1360px;
  }
}
@media (min-width: 1920px) {
  :root {
    --container: 1440px;
  }
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-h);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.12;
  color: var(--text-primary);
}
h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.75rem; font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.2rem; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-heading { margin-bottom: 3rem; }
.section-heading p {
  color: var(--text-secondary);
  margin-top: 0.8rem;
  max-width: 580px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem 1.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s ease; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62, 64, 149, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 64, 149, 0.3);
}

/* Dark-background outline variant (hero) */
.btn-outline-dark {
  background: transparent;
  color: rgba(242, 242, 244, 0.82);
  border-color: rgba(157, 163, 180, 0.28);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(62, 64, 149, 0.12);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#nav.scrolled {
  border-color: var(--border-subtle);
  box-shadow: 0 2px 24px rgba(62, 64, 149, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-h);
  height: 84px;
  gap: 1rem;
  flex-wrap: nowrap;
}

/* Logo image replaces text mark */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo img {
  height: 52px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Text fallback (hidden when image loads) */
.nav-logo span { color: var(--accent); }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 0.1rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.45rem 0.5rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
@media (min-width: 1250px) {
  .nav-links {
    gap: 0.25rem;
  }
  .nav-links a {
    font-size: 0.875rem;
    padding: 0.45rem 0.9rem;
  }
}
.nav-links a:hover {
  color: var(--accent);
  background: rgba(62, 64, 149, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { color: var(--accent); }
.phone-text { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid var(--accent); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: var(--bg-elevated);
  padding: 1.25rem var(--section-h) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-105%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  pointer-events: none;
  z-index: 999;
}
.nav-drawer.open {
  transform: none;
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer a:hover { color: var(--accent); padding-left: 0.85rem; }
.nav-drawer .nav-logo img { height: 36px; margin-bottom: 0.5rem; }
.nav-drawer .btn { margin-top: 0.75rem; justify-content: center; }

/* ── Global responsive fixes ───────────────────────────── */
/* Prevent horizontal overflow on all viewports */
html, body { max-width: 100%; overflow-x: hidden; }

/* Responsive nav breakpoints */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}
@media (min-width: 1200px) {
  .phone-text { display: inline; }
}
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Mobile: full single-column */
@media (max-width: 599px) {
  .product-card { flex: 0 0 min(280px, 80vw); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nap { justify-content: center; }
  .timeline-track { grid-template-columns: 1fr; padding-left: 2.75rem; }
}

/* Ultrawide: cap container, prevent stretching */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

/* Products scroll: don't overflow on narrow viewports */
.products-scroll-wrapper {
  max-width: 100%;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, var(--hero-bg) 0%, var(--hero-bg-end) 100%);
  overflow: hidden;
  padding: 8rem 0 6rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

/* WebGL grid-shader canvas sits behind everything */
#grid-shader {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  display: block;
}

/* Purple radial glow — brand identity in hero */
#hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 40vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(62,64,149,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 65% 50%, transparent 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content .eyebrow { color: var(--accent); }

/* Stitch: gradient h1 — white top, fade to secondary bottom */
.hero-content h1 {
  background: linear-gradient(to bottom, #fff 55%, var(--hero-sub));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.hero-subheadline {
  color: var(--hero-sub);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

/* Trust chips */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
/* Stitch: trust chips — horizontal row */
.hero-trust {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}
.trust-chip {
  padding: 1.25rem 1.75rem;
  background: rgba(157, 163, 180, 0.05);
  border: 1px solid rgba(157, 163, 180, 0.2);
  border-radius: 8px;
  min-width: 130px;
  flex: 0 0 auto;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.trust-chip:hover {
  background: rgba(62, 64, 149, 0.08);
  border-color: var(--accent-border);
}
.trust-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hero-sub);
}

/* 3D ingot zone — Stitch div-container approach */
.hero-3d {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Stitch renderer appends its own canvas into .hero-3d */
.hero-3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
/* Legacy: direct #ingot-canvas fallback */
#ingot-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.ingot-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}
.hero-scroll-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(232,101,10,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50%       { opacity: 0.9;  transform: scaleY(1.15); }
}

/* ── Hero responsive ───────────────────────────────────── */
@media (max-width: 1023px) {
  #hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content { max-width: 100%; }
  .hero-subheadline { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-3d { height: 280px; order: -1; }
}
@media (max-width: 600px) {
  .hero-trust { gap: 0.5rem; }
  .trust-chip { min-width: 110px; padding: 0.9rem 1rem; }
  .trust-value { font-size: 1.45rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ════════════════════════════════════════════════════════
   COMPANY INTRO
   ════════════════════════════════════════════════════════ */
#company-intro {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}
.intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.intro-accent-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(232,101,10,0.2));
  margin: 0 auto 2.25rem;
  border-radius: 2px;
}
.intro-inner h2 { margin-bottom: 1.25rem; }
.intro-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.78;
}

/* ════════════════════════════════════════════════════════
   PILLARS
   ════════════════════════════════════════════════════════ */
#pillars {
  padding: var(--section-v) var(--section-h);
  background: var(--surface);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  align-items: start;
}

/* Connecting gradient line */
.pillars-grid::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pillars-grid.line-drawn::after { transform: scaleX(1); }

.pillar-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(62,64,149,0.06) 50%, transparent 60%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0.55s ease;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(62, 64, 149, 0.15);
  border-color: var(--accent);
}
.pillar-card:hover::before { background-position: -50% 0; }

.pillar-image {
  position: relative;
  width: calc(100% + 4rem);
  margin: -2.25rem -2rem 1.25rem -2rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ffffff;
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pillar-card:hover .pillar-image img {
  transform: scale(1.05);
}

.pillar-icon {
  width: 52px; height: 52px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}
.pillar-card:hover .pillar-icon {
  background: rgba(62, 64, 149, 0.14);
  transform: scale(1.08);
}
.pillar-icon svg { width: 26px; height: 26px; }

.pillar-card h3 { margin-bottom: 0.75rem; }
.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.68;
  margin-bottom: 1.5rem;
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.22s ease;
}
.pillar-cta svg { width: 14px; height: 14px; transition: transform 0.22s ease; }
.pillar-cta:hover { gap: 0.65rem; }
.pillar-cta:hover svg { transform: translateX(3px); }
.pillar-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

@media (max-width: 1023px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pillars-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════
   WHY PSR — STAT BAND
   ════════════════════════════════════════════════════════ */
#why-psr {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-elevated);
  align-items: start;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border-subtle);
  background: transparent;
  transition: background 0.3s ease;
  position: relative;
  min-height: auto;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }
.stat-item:first-child { border-top: 3px solid var(--accent); }

/* Responsive: 2-col on medium, single on small */
@media (max-width: 1023px) {
  .stat-band { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid var(--border-subtle); }
  .stat-item:nth-child(even) { border-right: none; }
}
@media (max-width: 420px) {
  .stat-band { grid-template-columns: 1fr; }
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

/* Capacity metric (first stat — 27,500 MT) */
.stat-metric {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.15rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-unit {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--metallic-primary);
}
.stat-sub-unit {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* Other stat values (qualitative words) */
.stat-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .stat-value { font-size: 1.5rem; }
}
.stat-proof {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Stat band responsive handled above */

/* ════════════════════════════════════════════════════════
   FEATURED PRODUCTS
   ════════════════════════════════════════════════════════ */
#featured-products {
  padding: var(--section-v) 0;
  background: var(--surface);
}
#featured-products .container { margin-bottom: 2rem; }

.products-scroll-wrapper { padding: 0; }

.products-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  cursor: grab;
}
.products-scroll-container:active { cursor: grabbing; }
.products-scroll-container::-webkit-scrollbar { height: 4px; }
.products-scroll-container::-webkit-scrollbar-track { background: var(--border-subtle); border-radius: 2px; }
.products-scroll-container::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.product-card {
  flex: 0 0 285px;
  scroll-snap-align: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(62, 64, 149, 0.14);
  border-color: var(--accent);
}

.product-card-visual {
  height: 185px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img {
  transform: scale(1.06);
}
.product-card-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,9,20,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.product-metal-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(8,9,20,0.75);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.product-card-body { padding: 1.5rem; }
.product-card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.product-card-body p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.62;
  margin-bottom: 1.25rem;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.22s ease;
}
.product-card-link svg { width: 13px; height: 13px; transition: transform 0.22s ease; }
.product-card-link:hover { gap: 0.65rem; }
.product-card-link:hover svg { transform: translateX(3px); }

.products-footer { text-align: center; margin-top: 2.25rem; padding: 0 var(--section-h); }

/* ════════════════════════════════════════════════════════
   PLANT ENGINEERING JOURNEY
   ════════════════════════════════════════════════════════ */
#plant-engineering-journey {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}

.timeline-wrapper { position: relative; }

/* Desktop: horizontal */
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  padding-top: 1.5rem;
}
.timeline-line {
  position: absolute;
  top: 0;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: var(--border-medium);
  z-index: 0;
}
.timeline-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--metallic-primary));
  transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}
.timeline-line-fill.filled { width: 100%; }

.timeline-node {
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
  text-align: center;
}
.node-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--metallic-accent);
  margin: 0 auto 1.1rem;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.node-dot.active,
.timeline-node.visible .node-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 101, 10, 0.15);
}
.node-step {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.timeline-node h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.timeline-node p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

.node-soft-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.6rem;
  transition: gap 0.2s;
}
.node-soft-cta:hover { gap: 0.5rem; }

/* Mobile: vertical timeline */
@media (max-width: 900px) {
  .timeline-track {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 2.75rem;
  }
  .timeline-line {
    top: calc(100% / 12);
    bottom: calc(100% / 12);
    left: 0; right: auto;
    width: 2px; height: auto;
  }
  .timeline-line-fill {
    width: 2px; height: 0;
    transition: height 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .timeline-line-fill.filled { height: 100%; width: 2px; }
  .timeline-node {
    text-align: left;
    padding: 0 0 2.25rem 1.5rem;
    position: relative;
  }
  .node-dot {
    margin: 0;
    position: absolute;
    left: -2.95rem;
    top: 0;
  }
}

/* ════════════════════════════════════════════════════════
   OUR ALLIANCE  (replaces Installed Projects)
   ════════════════════════════════════════════════════════ */
#our-alliance {
  padding: var(--section-v) var(--section-h);
  background: var(--surface);
}

.alliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.alliance-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.alliance-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 0;
  background: rgba(62, 64, 149, 0.025);
  transition: width 0.4s ease;
}
.alliance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(62, 64, 149, 0.12);
}
.alliance-card:hover::after { width: 100%; }

.alliance-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
}
.alliance-card:hover .alliance-icon {
  transform: scale(1.1);
  background: rgba(62, 64, 149, 0.14);
}
.alliance-icon svg { width: 24px; height: 24px; }

.alliance-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.alliance-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.66;
  position: relative;
  z-index: 1;
}

/* Alliance statement banner */
.alliance-banner {
  background: #1C2030;
  border-radius: var(--radius-card);
  padding: 2.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.alliance-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(232,101,10,0.07) 45%, transparent 90%);
  background-size: 200% 100%;
  animation: bannerShimmer 5s ease-in-out infinite;
}
@keyframes bannerShimmer {
  0%   { background-position: -100% 0; }
  100% { background-position: 200%  0; }
}
/* Responsive: tablet / mobile */
@media (max-width: 920px) {
  .alliance-grid { grid-template-columns: 1fr; }
  .alliance-banner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .alliance-banner .btn-primary { align-self: center; }
}
@media (min-width: 580px) and (max-width: 920px) {
  .alliance-grid { grid-template-columns: 1fr 1fr; }
}
.alliance-banner-text { position: relative; z-index: 1; }
.alliance-banner-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #F2F2F4;
  margin-bottom: 0.4rem;
}
@media (min-width: 1024px) {
  .alliance-banner-text strong { font-size: 1.6rem; }
}
.alliance-banner-text p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.55;
}
.alliance-banner .btn-primary { flex-shrink: 0; position: relative; z-index: 1; }

@media (max-width: 920px) {
  .alliance-grid { grid-template-columns: 1fr; }
  .alliance-banner { flex-direction: column; text-align: center; }
  .alliance-banner .btn-primary { align-self: center; }
}
@media (min-width: 580px) and (max-width: 920px) {
  .alliance-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════
   INDUSTRIES SERVED
   ════════════════════════════════════════════════════════ */
#industries-served {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.industry-tile {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.industry-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(62, 64, 149, 0.12);
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.industry-icon {
  width: 52px; height: 52px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
  transition: transform 0.3s ease, background 0.3s ease;
}
.industry-tile:hover .industry-icon {
  transform: translateY(-4px);
  background: rgba(62, 64, 149, 0.14);
}
.industry-icon svg { width: 24px; height: 24px; }
.industry-tile h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }

@media (max-width: 900px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════
   CLIENT LOGOS MARQUEE
   ════════════════════════════════════════════════════════ */
#client-logos {
  padding: 3rem var(--section-h);
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
.marquee-track {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
  mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-chip {
  flex-shrink: 0;
  padding: 0.4rem 1.25rem;
  margin: 0 0.65rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo-chip img,
.logo-chip-img {
  height: 44px;
  max-height: 44px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.logo-chip:hover {
  color: var(--text-primary);
  border-color: var(--metallic-primary);
}

/* ════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-track {
  position: relative;
  min-height: 230px;
}
.testimonial-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.testimonial-quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 1.1rem;
  opacity: 0.3;
  user-select: none;
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--metallic-primary);
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.author-role { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.15rem; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-elevated);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}
.slider-btn svg { width: 16px; height: 16px; }
.slider-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(62, 64, 149, 0.06); }
.slider-btn:focus-visible { outline: 2px solid var(--accent); }

.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-medium);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.slider-dot.active { background: var(--accent); transform: scale(1.35); }
.slider-dot:focus-visible { outline: 2px solid var(--accent); }

/* ════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════ */
#cta {
  padding: var(--section-v) var(--section-h);
  background: linear-gradient(145deg, #161A26 0%, #0E1118 100%);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 75% at 55% 50%, rgba(62,64,149,0.12) 0%, transparent 65%);
  pointer-events: none;
}
#cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 90px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 2.75rem;
}
.cta-trust-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  position: relative;
}
.cta-trust-item:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -1.1rem;
  color: rgba(255,255,255,0.18);
}

#cta .eyebrow { color: var(--accent); }
#cta h2 { color: var(--hero-text); margin-bottom: 1rem; }
#cta .cta-sub { color: rgba(242,242,244,0.55); font-size: 1.05rem; margin-bottom: 2.25rem; line-height: 1.7; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(242,242,244,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-phone:hover { color: var(--hero-text); }
.cta-phone svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
#footer {
  background: #EDEDE9;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-h);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-logo {
  display: inline-block;
  background: #ffffff;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.footer-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-contact-item,
.footer-address-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.5;
  align-items: center;
}
.footer-contact-item svg,
.footer-address-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-address,
.footer-address-item,
.footer-address-item span,
.footer-address-item a,
.footer-contact-info span,
.footer-contact-info a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-contact-item a,
.footer-address-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-contact-item a:hover,
.footer-address-item a:hover { color: var(--accent); }
.footer-cert-slot {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.cert-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  color: var(--metallic-primary);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-secondary); }
.footer-nap { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nap a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nap a:hover { color: var(--accent); }

@media (max-width: 1023px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nap { justify-content: center; }
}

/* LEAD PRICE RIBBON */
#price-ribbon {
  background: #0c0f1e;
  border-bottom: 1px solid rgba(62, 64, 149, 0.25);
  padding: 0.7rem var(--section-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}
.price-ribbon-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-ribbon-label::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pricePulse 2s ease-in-out infinite;
}
@keyframes pricePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}
.price-ribbon-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.price-ribbon-content { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; flex: 1; }
.price-ribbon-sep { color: rgba(255,255,255,0.18); font-size: 0.75rem; padding: 0 0.25rem; }
.price-ribbon-item { display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.price-ribbon-metal { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.price-ribbon-value { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800; color: #F2F2F4; }
.price-ribbon-unit  { font-size: 0.65rem; color: rgba(255,255,255,0.35); }
.price-ribbon-change { font-size: 0.68rem; font-weight: 700; padding: 0.1rem 0.4rem; border-radius: 3px; }
.price-ribbon-change.up   { color: #22c55e; background: rgba(34,197,94,0.12); }
.price-ribbon-change.down { color: #ef4444; background: rgba(239,68,68,0.12); }
.price-ribbon-note { font-size: 0.62rem; color: rgba(255,255,255,0.2); margin-left: auto; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 900px) { #price-ribbon { gap: 1rem; padding: 0.6rem 1rem; } }
@media (max-width: 600px) { .price-ribbon-note { display: none; } }

/* CERTIFICATIONS */
#certifications { padding: var(--section-v) var(--section-h); background: var(--surface); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(62,64,149,0.14); }
.cert-card-icon { width: 50px; height: 50px; margin: 0 auto 1.1rem; background: var(--accent-subtle); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); transition: transform 0.3s ease, background 0.3s ease; }
.cert-card:hover .cert-card-icon { transform: scale(1.1); background: rgba(62,64,149,0.14); }
.cert-card-icon svg { width: 22px; height: 22px; }
.cert-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.cert-card p  { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

/* PRODUCT ROW LABELS */
.products-row-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; padding: 0; }
.products-row-label::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.products-row-label:first-of-type { margin-top: 0; }

/* FOOTER SOCIAL */
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; flex-wrap: wrap; align-items: center; }
.footer-social-link { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border-medium); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; transition: all 0.25s ease; background: var(--bg-elevated); }
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-subtle); transform: translateY(-2px); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-marketplace-links { display: flex; gap: 0.5rem; margin-top: 0.65rem; flex-wrap: wrap; }
.footer-marketplace-link { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.6rem; border: 1px solid var(--border-medium); border-radius: 4px; color: var(--metallic-primary); text-decoration: none; transition: all 0.2s ease; }
.footer-marketplace-link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-subtle); }

/* Experience tile — stat-metric layout */
.stat-metric { display: flex; align-items: baseline; gap: 0.2rem; }
.stat-sub-unit { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-top: 0.25rem; display: block; }

/* ════════════════════════════════════════════════════════
   PRICE RIBBON — PREMIUM TICKER UPGRADE
   ════════════════════════════════════════════════════════ */
#price-ribbon {
  border-top: 2px solid var(--accent) !important;
  border-bottom: 1px solid rgba(62,64,149,0.18) !important;
  background: linear-gradient(90deg, #f0f1ff 0%, #ffffff 40%, #f0f1ff 100%) !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
  min-height: 46px;
  overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(62,64,149,0.08) !important;
}
#price-ribbon .price-ribbon-metal {
  color: var(--text-secondary) !important;
}
#price-ribbon .price-ribbon-value {
  color: var(--text-primary) !important;
}
#price-ribbon .price-ribbon-unit {
  color: var(--metallic-primary) !important;
}
#price-ribbon .price-ribbon-change.up {
  color: #16a34a !important;
  background: rgba(22, 163, 74, 0.1) !important;
}
#price-ribbon .price-ribbon-change.down {
  color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.1) !important;
}
#price-ribbon .price-ribbon-note {
  color: var(--text-secondary) !important;
}
#price-ribbon .price-ribbon-divider {
  background: rgba(62, 64, 149, 0.15) !important;
}
.price-ribbon-label {
  padding: 0 1.25rem;
  border-right: 1px solid rgba(62,64,149,0.2);
  height: 46px;
  line-height: 1;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.price-ribbon-divider { display: none; }
.price-ribbon-note {
  padding: 0 1rem;
  border-left: 1px solid rgba(62,64,149,0.2);
  height: 46px;
  line-height: 46px;
  flex-shrink: 0;
  background: rgba(62,64,149,0.05);
  color: var(--text-secondary);
  font-size: 0.62rem;
}
/* Scrolling ticker track */
.price-ribbon-ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
  position: relative;
}
.price-ribbon-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ribbonScroll 28s linear infinite;
  width: max-content;
}
.price-ribbon-ticker-track:hover { animation-play-state: paused; }
@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.price-ribbon-item {
  padding: 0 1.75rem;
  border-right: 1px solid rgba(62,64,149,0.12);
  height: 46px;
  line-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.price-ribbon-content { display: none !important; }
@media (max-width: 900px) {
  #price-ribbon { min-height: 38px; }
  .price-ribbon-ticker-wrap { height: 38px; }
  .price-ribbon-ticker-track { animation-duration: 20s; }
  .price-ribbon-label { height: 38px; padding: 0 0.75rem; }
  .price-ribbon-note { display: none !important; }
  .price-ribbon-item { height: 38px; line-height: 38px; padding: 0 1rem; }
}

/* ════════════════════════════════════════════════════════
   PLANT SHOWCASE — 2 LARGE CARDS
   ════════════════════════════════════════════════════════ */
.plant-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1rem;
  align-items: start;
}
@media (max-width: 1023px) { .plant-showcase-grid { grid-template-columns: 1fr; } }

.plant-showcase-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  background: var(--bg-elevated);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.plant-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(62,64,149,0.18);
}
.plant-showcase-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plant-showcase-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
  padding: 0.5rem;
}
.plant-showcase-card:hover .plant-showcase-image img { transform: scale(1.04); }
.plant-showcase-image-overlay {
  display: none;
}
.plant-showcase-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(62,64,149,0.15);
  border: 1px solid rgba(62,64,149,0.4);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.plant-showcase-body {
  padding: 2rem 2rem 2.25rem;
  background: var(--bg-elevated);
}
.plant-showcase-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.plant-showcase-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.plant-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.plant-showcase-cta:hover { gap: 0.75rem; }
.plant-showcase-cta svg { width: 14px; height: 14px; }

/* ════════════════════════════════════════════════════════
   ALLIANCE MEDIA CARDS — PREMIUM REDESIGN
   ════════════════════════════════════════════════════════ */
.alliance-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1023px) { .alliance-media-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .alliance-media-grid { grid-template-columns: 1fr; } }

.alliance-media-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.alliance-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(62,64,149,0.14);
}
.alliance-media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alliance-media-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.5s ease;
  padding: 0.35rem;
}
.alliance-media-card:hover .alliance-media-thumb img {
  transform: scale(1.04);
  filter: none;
}
.alliance-media-thumb-overlay {
  display: none;
}
.alliance-media-tag {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(62,64,149,0.65);
  border: 1px solid rgba(62,64,149,0.5);
  backdrop-filter: blur(6px);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}
.alliance-media-body {
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.alliance-media-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.alliance-media-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.alliance-media-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.alliance-media-cta:hover { gap: 0.65rem; }
.alliance-media-cta svg { width: 12px; height: 12px; }

/* ════════════════════════════════════════════════════════
   CERTIFICATIONS — LOGO-FIRST REDESIGN
   ════════════════════════════════════════════════════════ */
.cert-logo-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(62,64,149,0.14);
}
.cert-logo-area {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 155px;
}
.cert-logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.cert-logo-badge svg { width: 48px; height: 48px; color: var(--accent); }
.cert-logo-abbr {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1;
}
.cert-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
/* Replaceable certificate logo/image helper - Large & Prominent */
.cert-logo-img {
  max-height: 125px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.35s ease;
}
.cert-logo-card:hover .cert-logo-img {
  transform: scale(1.06);
}
.cert-logo-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.cert-logo-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.cert-logo-body p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.cert-verify-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
}
.cert-verify-link:hover { gap: 0.5rem; }
.cert-verify-link svg { width: 11px; height: 11px; }

/* ════════════════════════════════════════════════════════
   ULTRA-WIDE FIX — Prevent card wrap on 1600px–2560px
   Container is capped at 1280px via --container.
   Grid sections use desktop-first repeat declarations.
   ════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   PREMIUM METRICS — Upgraded count-up stats typography
   Applies to: .stat-number + .trust-value
   ════════════════════════════════════════════════════════ */

/* Override the older duplicate declarations */
.stat-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.stat-label::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  /* Subtle text shadow for depth */
  text-shadow: 0 2px 12px rgba(62,64,149,0.18);
  display: inline-block;
}
@media (min-width: 1024px) {
  .stat-number { font-size: 2.6rem; }
}

/* Upgrade the hero trust values too */
.trust-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(62,64,149,0.22);
}

.stat-unit {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--metallic-primary);
  letter-spacing: -0.01em;
}

.stat-proof {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Slide-up on reveal for stat items */
.stat-item.reveal { opacity: 0; transform: translateY(16px); }
.stat-item.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }

/* ════════════════════════════════════════════════════════
   LEAD INGOT — Premium HDR metallic upgrade
   Targets the WebGL canvas wrapper. Material changes are
   applied via the JS patch below (main.js update).
   The CSS adds a premium ambient glow beneath the ingot.
   ════════════════════════════════════════════════════════ */
.hero-3d::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 32%;
  background: radial-gradient(ellipse at center, rgba(62,64,149,0.18) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   YOUTUBE & MEDIA VIDEO EMBEDS — REPLACABLE COMPONENT
   ════════════════════════════════════════════════════════ */
.youtube-embed-container,
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #080914;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.youtube-embed-container iframe,
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ════════════════════════════════════════════════════════
   CHAIRMAN'S TECHNICAL PRESENTATION
   ════════════════════════════════════════════════════════ */
#chairman-presentation {
  padding: var(--section-v) var(--section-h);
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.chairman-video-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  margin-top: 2rem;
}
.chairman-video-card:hover {
  box-shadow: 0 20px 60px rgba(62,64,149,0.18);
  border-color: rgba(62,64,149,0.3);
}

.chairman-video-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
@media (max-width: 992px) {
  .chairman-video-grid {
    grid-template-columns: 1fr;
  }
}

.chairman-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080914;
  overflow: hidden;
}

.chairman-video-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chairman-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.chairman-video-poster:hover img {
  transform: scale(1.04);
}

.chairman-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(62,64,149,0.15) 0%, rgba(8,9,20,0.65) 100%);
  transition: background 0.3s ease;
}
.chairman-video-poster:hover .chairman-video-overlay {
  background: radial-gradient(circle at center, rgba(62,64,149,0.25) 0%, rgba(8,9,20,0.5) 100%);
}

.chairman-play-btn {
  position: relative;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(62,64,149,0.45);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.chairman-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}
.chairman-video-poster:hover .chairman-play-btn {
  transform: scale(1.12);
  background: #4B4DB0;
  box-shadow: 0 12px 40px rgba(62,64,149,0.6);
}

.chairman-video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8,9,20,0.85);
  color: #ffffff;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

.chairman-iframe-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.chairman-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.chairman-video-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) {
  .chairman-video-info {
    padding: 1.75rem 1.25rem;
  }
}

.chairman-video-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.chairman-video-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.chairman-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(62,64,149,0.08);
  border: 1px solid rgba(62,64,149,0.18);
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 1.75rem;
}
.chairman-trust-badge svg {
  width: 16px;
  height: 16px;
  color: #FF0000;
  flex-shrink: 0;
}
.chairman-trust-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.chairman-video-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}



/* ═══════════════════════════════════════════════════════
   CONTACT US PAGE — contact.css
   PSR Metals Pvt. Ltd.
   Inherits all design tokens from style.css
   ═══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   SECTION 1 — CONTACT HERO
   ════════════════════════════════════════════════════════ */
#contact-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background: #F5F5F3;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.6);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(245, 245, 243, 0.7) 0%,
    rgba(245, 245, 243, 0.92) 50%,
    rgba(245, 245, 243, 1) 100%
  );
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.contact-hero-inner .eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-hero-inner h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.contact-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.contact-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* WhatsApp button — green accent */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

@media (min-width: 1024px) {
  .contact-hero-inner h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 600px) {
  #contact-hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }
  .contact-hero-inner h1 {
    font-size: 2rem;
  }
  .contact-hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .contact-hero-btns .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}


/* ════════════════════════════════════════════════════════
   SECTION 2 — QUICK CONTACT CARDS
   ════════════════════════════════════════════════════════ */
#quick-contact {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-info-card:hover .contact-card-icon {
  background: rgba(62, 64, 149, 0.14);
  transform: scale(1.08);
}

.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.contact-info-card p a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info-card p a:hover {
  color: var(--accent-hover);
}

.contact-card-secondary {
  margin-top: 0.35rem;
  font-size: 0.82rem !important;
  opacity: 0.7;
}

@media (max-width: 1023px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════
   SECTION 3 — BUSINESS INQUIRY FORM
   ════════════════════════════════════════════════════════ */
#contact-form {
  padding: var(--section-v) var(--section-h);
  background: var(--surface);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.form-intro .eyebrow { margin-bottom: 0.75rem; }
.form-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.form-intro p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 2rem;
}

.form-intro-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.form-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}
.form-feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full-width {
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group .req {
  color: #E53935;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-primary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--metallic-accent);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6070' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 1023px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
}


/* ════════════════════════════════════════════════════════
   SECTION 4 — WHY CONTACT PSR METALS
   ════════════════════════════════════════════════════════ */
#why-contact {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}

.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(62,64,149,0.05) 50%, transparent 60%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0.55s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.why-card:hover::before {
  background-position: -50% 0;
}

.why-card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}
.why-card:hover .why-card-icon {
  background: rgba(62, 64, 149, 0.14);
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  position: relative;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.68;
  position: relative;
}

@media (max-width: 1023px) {
  .why-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-contact-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════
   SECTION 5 — GLOBAL BUSINESS PRESENCE
   ════════════════════════════════════════════════════════ */
#global-presence {
  padding: var(--section-v) var(--section-h);
  background: var(--surface);
}

.global-map-frame {
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  background: var(--bg-elevated);
}
.global-map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.global-map-frame:hover .global-map-img {
  opacity: 1;
}

.global-description {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.global-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.global-stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.global-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.global-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.global-stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .global-stats-grid { grid-template-columns: 1fr; }
  .global-stat-value { font-size: 1.85rem; }
}


/* ════════════════════════════════════════════════════════
   SECTION 6 — OFFICE LOCATION
   ════════════════════════════════════════════════════════ */
#office-location {
  padding: var(--section-v) var(--section-h);
  background: var(--bg-elevated);
}

.location-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.location-map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.map-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--metallic-primary);
  opacity: 0.6;
}
.map-visual svg {
  width: 64px;
  height: 64px;
}
.map-visual span {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.location-details {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.location-details h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
}

.location-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.location-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.location-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.location-item p a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.location-item p a:hover {
  color: var(--accent);
}

.location-btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

@media (max-width: 1023px) {
  .location-layout { grid-template-columns: 1fr; }
  .location-map-placeholder { min-height: 240px; }
}


/* ════════════════════════════════════════════════════════
   SECTION 7 — FINAL CTA BANNER
   ════════════════════════════════════════════════════════ */
#contact-cta {
  padding: var(--section-v) var(--section-h);
  background: var(--surface);
}

.contact-cta-inner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta-inner h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.contact-cta-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

.contact-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}
.contact-cta-btns .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.contact-cta-btns .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .contact-cta-inner {
    padding: 3rem 1.5rem;
  }
  .contact-cta-inner h2 {
    font-size: 1.65rem;
  }
  .contact-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .contact-cta-btns .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
