/*
Theme Name: ConvergeX
Theme URI: https://convergex.in
Author: ConvergeX Solutions LLP
Description: Premium packaging machinery theme — Metallic Gray, Red & Black.
Version: 4.0.0
Text Domain: convergex
*/

/* ══════════════════════════════════════
   CSS RESET & VARIABLES
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Metallic Gray Backgrounds ── */
  --steel:       #6C6C70;
  --metal:       #9A9A9F;
  --metal-light: #C0C0C5;
  --chrome:      #E0E0E2;

  /* ── Semantic aliases ── */
  --dark:     #6C6C70;
  --navy:     #9A9A9F;
  --card:     #C0C0C5;
  --card-alt: #E0E0E2;

  /* ── Red (sole color accent) ── */
  --red:       #E8231A;
  --red-dark:  #C01C14;
  --red-light: #FF3B31;
  --red-glow:  rgba(232,35,26,0.14);
  --red-subtle:rgba(232,35,26,0.07);

  /* ── Black (secondary accent) ── */
  --black:      #111111;
  --black-mid:  #1E1E1E;
  --black-light:#2C2C2C;

  /* ── Text ── */
  --text-primary:   #111111;
  --text-secondary: #2E2E30;
  --text-muted:     #555558;
  --text-faint:     #7A7A7E;
  --text-on-dark:   #F0F0F0;
  --text-on-red:    #FFFFFF;

  /* shorthands for legacy refs */
  --off-white: #111111;
  --muted:     #555558;
  --subtle:    #7A7A7E;

  /* ── Borders ── */
  --border:        rgba(0,0,0,0.10);
  --border-md:     rgba(0,0,0,0.18);
  --border-bright: rgba(0,0,0,0.30);
  --border-light:  rgba(255,255,255,0.14);

  /* ── Shadows ── */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 14px rgba(0,0,0,0.13);
  --shadow-lg:  0 8px 28px rgba(0,0,0,0.16);
  --shadow-red: 0 4px 18px rgba(232,35,26,0.28);

  /* ── Typography ── */
  --font-display:   'Roboto', sans-serif;
  --font-condensed: 'Roboto Condensed', sans-serif;
  --font-body:      'Roboto', sans-serif;
}

/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--metal);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--metal-light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 120px 0; }

.tag {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.tag::before {
  content: ''; display: block;
  width: 36px; height: 2px; background: var(--red); flex-shrink: 0;
}

/* Tag on dark (steel) sections */
.tag-light {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red-light);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.tag-light::before {
  content: ''; display: block;
  width: 36px; height: 2px; background: var(--red-light); flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; line-height: 0.96;
  color: var(--text-primary); letter-spacing: -0.01em;
}
.section-title em { color: var(--red); font-style: normal; }

.section-title-light {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; line-height: 0.96;
  color: var(--text-on-dark); letter-spacing: -0.01em;
}
.section-title-light em { color: var(--red-light); font-style: normal; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-on-red); background: var(--red);
  padding: 14px 32px; border: 2px solid var(--red); cursor: pointer;
  box-shadow: var(--shadow-red);
  position: relative; overflow: hidden; transition: background 0.25s;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.10);
  transform: translateX(-100%); transition: transform 0.3s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-primary:hover::after { transform: translateX(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-primary); background: transparent;
  padding: 12px 32px; border: 2px solid var(--border-bright); cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--text-primary); background: rgba(0,0,0,0.05); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-on-dark); background: transparent;
  padding: 12px 32px; border: 2px solid var(--border-light); cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.07); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-dark); background: #fff;
  padding: 14px 36px; border: 2px solid #fff; cursor: pointer;
  transition: background 0.25s, color 0.25s; white-space: nowrap;
}
.btn-white:hover { background: transparent; color: #fff; }

/* ── Reveal Animations ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal            { transform: translateY(32px); }
.reveal-left       { transform: translateX(-32px); }
.reveal-right      { transform: translateX(32px); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s !important; }
.delay-2 { transition-delay: 0.20s !important; }
.delay-3 { transition-delay: 0.30s !important; }
.delay-4 { transition-delay: 0.40s !important; }
.delay-5 { transition-delay: 0.50s !important; }
.delay-6 { transition-delay: 0.60s !important; }

/* ══════════════════════════════════════
   NAVIGATION  (chrome — lightest bg)
══════════════════════════════════════ */
#cx-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  background: var(--chrome);
  border-bottom: 2px solid var(--border-md);
  box-shadow: var(--shadow-sm);
  transition: padding 0.4s, box-shadow 0.4s;
}
#cx-nav.scrolled {
  padding: 10px 60px;
  background: rgba(224,224,226,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  height: 40px; width: auto; object-fit: contain; display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }
.nav-logo-wordmark {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 2px solid var(--border-bright);
  padding-left: 12px; margin-left: 2px;
}
.nav-logo-sub-line {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--text-primary); text-transform: uppercase; line-height: 1;
}
.nav-logo-tagline {
  font-family: var(--font-condensed);
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.24em;
  color: var(--red); text-transform: uppercase; line-height: 1;
}

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); position: relative; padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width 0.3s;
}
.nav-menu a:hover { color: var(--text-primary); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--text-primary); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--chrome);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 40px; font-weight: 900;
  color: var(--text-primary); transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }

#cx-nav.scrolled .nav-logo-img { height: 34px; }
#cx-nav.scrolled .nav-logo-sub-line { font-size: 11px; }
#cx-nav.scrolled .nav-logo-tagline { font-size: 8px; }

/* ══════════════════════════════════════
   PAGE HERO  (steel — darkest bg)
══════════════════════════════════════ */
.page-hero {
  min-height: 46vh; display: flex; align-items: flex-end;
  padding: 160px 60px 70px;
  background: var(--steel);
  border-bottom: 3px solid var(--red);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 88% 25%, var(--red-glow) 0%, transparent 68%),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px);
  pointer-events: none;
}
.page-hero-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(108,108,112,0.94) 0%, rgba(108,108,112,0.75) 55%, rgba(108,108,112,0.55) 100%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 106px);
  font-weight: 900; line-height: 0.92;
  color: var(--text-on-dark); letter-spacing: -0.01em;
}
.page-hero-title em { color: var(--red-light); font-style: normal; }
.page-hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(240,240,240,0.72);
  margin-top: 16px; max-width: 560px; line-height: 1.7;
}

/* ══════════════════════════════════════
   IMAGE UTILITIES
══════════════════════════════════════ */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(108,108,112,0.88) 0%, rgba(108,108,112,0.35) 55%, transparent 100%);
}

/* ══════════════════════════════════════
   FOOTER  (steel — darkest bg)
══════════════════════════════════════ */
#cx-footer {
  background: var(--steel);
  border-top: 3px solid var(--red);
}
.footer-top {
  padding: 72px 60px 54px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 5px; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; filter: brightness(1.15); }
.footer-logo-name {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; color: rgba(240,240,240,0.6); text-transform: uppercase;
}
.footer-tagline-text {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 14px;
}
.footer-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(240,240,240,0.55); line-height: 1.75;
  margin-bottom: 22px; max-width: 280px;
}
.footer-contact-line {
  font-size: 12px; color: rgba(240,240,240,0.50);
  margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.footer-contact-line::before { content: '—'; color: var(--red-light); font-size: 10px; }
.footer-contact-line a { color: rgba(240,240,240,0.75); transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--red-light); }
.footer-col-title {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 13px; font-weight: 300; color: rgba(240,240,240,0.50);
  transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: rgba(240,240,240,0.92); }
.footer-links a::before { content: '→'; font-size: 10px; color: var(--red-light); }
.footer-bottom {
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.18);
}
.footer-copy { font-size: 12px; color: rgba(240,240,240,0.35); font-weight: 300; }

/* QR Code */
.cx-qr-wrap { margin-top: 22px; }
.cx-qr-wrap img {
  width: 100px; height: 100px; object-fit: contain;
  border: 2px solid rgba(255,255,255,0.14);
  padding: 6px; background: #fff; display: block;
  box-shadow: var(--shadow-sm);
}
.cx-qr-label {
  font-family: var(--font-condensed); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,240,240,0.35); margin-top: 7px;
}

/* ══════════════════════════════════════
   HOME — INTRO OVERLAY  (steel bg)
══════════════════════════════════════ */
body.intro-active { overflow: hidden; }

#cx-intro-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
}
.intro-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.25; pointer-events: none;
  animation: grainShift 0.12s steps(1) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  25%  { background-position: -5% -10%; }
  50%  { background-position: 5% 5%; }
  75%  { background-position: -10% 5%; }
  100% { background-position: 8% -8%; }
}
.intro-line-h {
  position: absolute; left: 0; right: 0; top: 50%; height: 2px;
  background: var(--red); z-index: 2; transform-origin: left;
  transform: scaleX(0); transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.intro-line-v {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: rgba(255,255,255,0.12); z-index: 2; transform-origin: top;
  transform: scaleY(0); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
#cx-intro-overlay.lines-in .intro-line-h { transform: scaleX(1); }
#cx-intro-overlay.lines-in .intro-line-v { transform: scaleY(1); }
#cx-intro-overlay.lines-out .intro-line-h,
#cx-intro-overlay.lines-out .intro-line-v { opacity: 0; transition: opacity 0.3s; }

.intro-content {
  position: relative; z-index: 5;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.intro-logo-reveal {
  display: flex; align-items: center; gap: 18px; margin-bottom: 36px;
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
.intro-logo-reveal.visible { opacity: 1; transform: scale(1); }
.intro-logo-img-wrap { height: 62px; }
.intro-logo-img-wrap img { height: 100%; width: auto; object-fit: contain; filter: brightness(1.12); }
.intro-logo-text { text-align: left; }
.intro-logo-name {
  font-family: var(--font-condensed); font-size: 24px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--text-on-dark); line-height: 1;
}
.intro-logo-name span { color: var(--red-light); }
.intro-logo-sub {
  font-family: var(--font-condensed); font-size: 9px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(240,240,240,0.45); margin-top: 3px;
}

.intro-phase { overflow: hidden; }
.intro-word-row {
  display: flex; align-items: baseline; justify-content: center;
  gap: 18px; flex-wrap: wrap; padding: 0 36px;
}
.intro-char-wrap { overflow: hidden; display: inline-block; opacity: 0; }
.intro-char-wrap.visible { opacity: 1; }
.intro-char {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 7.8vw, 108px);
  font-weight: 900; letter-spacing: -0.01em;
  color: var(--text-on-dark); line-height: 1;
  transform: translateY(110%); transition: transform 0s;
}
.intro-char-wrap.visible .intro-char {
  transform: translateY(0); transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.intro-char-wrap.delay-1 .intro-char { transition-delay: 0.1s; }
.intro-char-wrap.delay-2 .intro-char { transition-delay: 0.2s; }
.intro-char-wrap.delay-3 .intro-char { transition-delay: 0.32s; }
.intro-char.c-red { color: var(--red-light); }

.intro-company-row {
  margin-top: 26px; overflow: hidden; opacity: 0; transform: translateY(14px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.intro-company-row.visible { opacity: 1; transform: translateY(0); }
.intro-company-wrap { display: inline-block; overflow: hidden; }
.intro-company {
  display: block;
  font-family: var(--font-condensed);
  font-size: clamp(12px, 1.9vw, 23px);
  font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(240,240,240,0.55);
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s;
}
.intro-company-row.visible .intro-company { transform: translateY(0); }
.intro-company em { color: var(--red-light); font-style: normal; }
.intro-sub-wrap { overflow: hidden; margin-top: 5px; opacity: 0; transition: opacity 0.6s ease 0.3s; }
.intro-sub-wrap.visible { opacity: 1; }
.intro-sub {
  display: block;
  font-family: var(--font-condensed);
  font-size: clamp(8px, 1vw, 11px);
  font-weight: 600; letter-spacing: 0.55em; text-transform: uppercase;
  color: rgba(240,240,240,0.28);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.intro-sub-wrap.visible .intro-sub { transform: translateY(0); }

.intro-stats-bar {
  display: flex; align-items: center; gap: 38px; margin-top: 48px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.intro-stats-bar.visible { opacity: 1; transform: translateY(0); }
.intro-stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.intro-stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(18px, 2.6vw, 30px); color: var(--text-on-dark); line-height: 1;
}
.intro-stat-label {
  font-family: var(--font-condensed); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,240,240,0.35);
}
.intro-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

.intro-corner-logo {
  position: absolute; bottom: 26px; left: 44px; z-index: 6;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.6s ease 1.2s, transform 0.6s ease 1.2s;
}
#cx-intro-overlay.phase-3 .intro-corner-logo { opacity: 1; transform: translateY(0); }
.intro-corner-logo span {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,240,240,0.30);
}
.intro-curtain {
  position: absolute; inset: 0; z-index: 10;
  background: var(--steel);
  transform-origin: bottom; transform: scaleY(0); pointer-events: none;
}
#cx-intro-overlay.curtain-up .intro-curtain {
  transform: scaleY(1); transition: transform 0.9s cubic-bezier(0.76,0,0.24,1);
}
#cx-intro-overlay.fade-out { opacity: 0; pointer-events: none; transition: opacity 0.4s ease 0.85s; }

/* ══════════════════════════════════════
   HOME — HERO  (steel bg)
══════════════════════════════════════ */
#cx-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: var(--steel); opacity: 0;
}
#cx-hero.hero-visible { opacity: 1; transition: opacity 0.8s ease; }

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 60px 80px; position: relative; z-index: 2;
}
.hero-overline {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(240,240,240,0.55); margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px; opacity: 0;
}
.hero-overline::before { content: ''; width: 36px; height: 1px; background: rgba(240,240,240,0.35); }
.hero-h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(58px, 6.8vw, 106px); line-height: 0.9;
  color: var(--text-on-dark); margin-bottom: 26px;
  letter-spacing: -0.01em; opacity: 0;
}
.hero-h1 em { color: var(--red-light); font-style: normal; display: block; }
.hero-desc {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(240,240,240,0.62); max-width: 440px; margin-bottom: 42px; opacity: 0;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; opacity: 0; }
.hero-stats {
  margin-top: 60px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; gap: 0; opacity: 0;
}
.hero-stat { flex: 1; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.10); padding-left: 30px; }
.hero-stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 52px; color: var(--text-on-dark); line-height: 1;
}
.hero-stat-num sup { font-size: 22px; color: var(--red-light); vertical-align: super; }
.hero-stat-label {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240,240,240,0.40); margin-top: 5px;
}

#cx-hero.hero-visible .hero-overline  { opacity: 1; transition: opacity 0.7s ease 0.1s; }
#cx-hero.hero-visible .hero-h1        { opacity: 1; transition: opacity 0.8s ease 0.2s, transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s; transform: none !important; }
#cx-hero.hero-visible .hero-desc      { opacity: 1; transition: opacity 0.7s ease 0.35s; }
#cx-hero.hero-visible .hero-actions   { opacity: 1; transition: opacity 0.7s ease 0.48s; }
#cx-hero.hero-visible .hero-stats     { opacity: 1; transition: opacity 0.7s ease 0.60s; }
#cx-hero.hero-visible .hero-card      { opacity: 1; transform: translateY(-50%) translateX(0); transition: opacity 0.9s ease 0.55s, transform 1.0s cubic-bezier(0.22,1,0.36,1) 0.55s; }

.hero-right { position: relative; overflow: hidden; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(108,108,112,0.15) 0%, rgba(108,108,112,0.55) 40%, rgba(108,108,112,0.92) 100%);
}
.hero-bg-geo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 45%, rgba(232,35,26,0.10) 0%, transparent 65%),
    repeating-linear-gradient(60deg, transparent, transparent 50px, rgba(0,0,0,0.035) 50px, rgba(0,0,0,0.035) 51px);
}
.hero-geo-shape { position: absolute; animation: heroGeoFloat 8s ease-in-out infinite; }
.hero-geo-shape-1 { right:-60px; top:50%; margin-top:-280px; width:560px; height:560px; background:var(--red); opacity:0.05; clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); }
.hero-geo-shape-2 { right:40px; top:50%; margin-top:-220px; width:440px; height:440px; border:1px solid rgba(232,35,26,0.15); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); animation-delay:-3s; }
.hero-geo-shape-3 { right:110px; top:50%; margin-top:-150px; width:300px; height:300px; border:1px solid rgba(0,0,0,0.10); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); animation-delay:-5s; }
@keyframes heroGeoFloat { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-18px) rotate(2.5deg); } }

.hero-card {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%) translateX(20px);
  width: 288px;
  background: rgba(224,224,226,0.93);
  border: 1px solid rgba(0,0,0,0.12);
  border-left: 4px solid var(--red);
  padding: 30px; backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg); opacity: 0;
}
.hero-card-tag {
  font-family: var(--font-condensed); font-size: 9px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.hero-card-title {
  font-family: var(--font-condensed); font-size: 17px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 16px; line-height: 1.3;
}
.hero-card-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; font-weight: 400; color: var(--text-muted);
  line-height: 1.55; margin-bottom: 8px;
}
.hero-card-item::before {
  content: ''; display: block; width: 4px; height: 4px; min-width: 4px;
  background: var(--red); margin-top: 5px; border-radius: 50%;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(232,35,26,0.45); animation: particleFloat linear infinite; }
@keyframes particleFloat { 0% { transform:translateY(0) scale(1); opacity:0.6; } 100% { transform:translateY(-80px) scale(0.3); opacity:0; } }

/* ══════════════════════════════════════
   HOME — MARQUEE  (red bg)
══════════════════════════════════════ */
.marquee-strip {
  background: var(--red); overflow: hidden; padding: 13px 0;
  box-shadow: 0 2px 8px rgba(232,35,26,0.3);
}
.marquee-inner { display: flex; white-space: nowrap; animation: marqueeScroll 22s linear infinite; }
.marquee-item {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.90); padding: 0 30px;
  display: flex; align-items: center; gap: 14px;
}
.marquee-dot { width: 3px; height: 3px; background: rgba(255,255,255,0.42); border-radius: 50%; }
@keyframes marqueeScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ══════════════════════════════════════
   HOME — ABOUT STRIP  (chrome bg)
══════════════════════════════════════ */
.home-about {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--chrome);
  border-bottom: 1px solid var(--border-md);
}
.home-about-left { padding: 100px 60px; border-right: 1px solid var(--border-md); }
.home-about-desc {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text-secondary); margin-top: 22px; margin-bottom: 16px;
}
.home-about-pull {
  font-size: 17px; font-weight: 500; color: var(--text-primary); line-height: 1.65;
  border-left: 4px solid var(--red); padding-left: 20px; margin-bottom: 34px;
}
.home-about-right { display: grid; grid-template-columns: 1fr 1fr; background: var(--border-md); gap: 1px; }
.about-stat-box {
  background: var(--chrome); padding: 38px 34px;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 170px;
  transition: background 0.3s;
}
.about-stat-box:hover { background: var(--metal-light); }
.about-stat-big {
  font-family: var(--font-display); font-weight: 900;
  font-size: 52px; color: var(--red); line-height: 1; margin-bottom: 7px;
}
.about-stat-desc {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); line-height: 1.5;
}

/* About image strip */
.about-img-strip {
  position: relative; overflow: hidden; height: 320px;
  border-bottom: 3px solid var(--red);
}
.about-img-strip img { width: 100%; height: 100%; object-fit: cover; }
.about-img-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(108,108,112,0.88) 0%, rgba(108,108,112,0.25) 55%, rgba(108,108,112,0.55) 100%);
}
.about-img-caption { position: absolute; bottom: 34px; left: 60px; z-index: 2; }
.about-img-caption-tag {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--red-light); margin-bottom: 7px;
}
.about-img-caption h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--text-on-dark); line-height: 1.05;
}

/* ══════════════════════════════════════
   HOME — SERVICES  (metal-light bg)
══════════════════════════════════════ */
.home-services { border-bottom: 1px solid var(--border-md); background: var(--metal-light); }
.services-header { padding: 80px 60px 0; }
.services-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--border-md); gap: 1px; margin-top: 52px;
}
.service-card {
  background: var(--metal-light); padding: 46px 40px;
  position: relative; overflow: hidden;
  border-bottom: 4px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover { background: var(--chrome); border-bottom-color: var(--red); }
.service-card-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; opacity: 0.04; transition: opacity 0.4s;
}
.service-card:hover .service-card-img { opacity: 0.07; }
.service-card > *:not(.service-card-img) { position: relative; z-index: 1; }
.service-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 68px; color: rgba(0,0,0,0.05); position: absolute; top: 16px; right: 22px; line-height: 1; z-index: 1;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(232,35,26,0.07); }
.service-icon-wrap {
  width: 50px; height: 50px; margin-bottom: 24px;
  background: var(--red-subtle); border: 1px solid rgba(232,35,26,0.18);
  display: flex; align-items: center; justify-content: center;
}
.service-icon-wrap svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-label {
  font-family: var(--font-condensed); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.service-title {
  font-family: var(--font-condensed); font-size: 25px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px;
}
.service-desc { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: var(--text-secondary); }

/* ══════════════════════════════════════
   HOME — WHY US
══════════════════════════════════════ */
.home-why {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-md);
}
.why-left { padding: 100px 60px; border-right: 1px solid var(--border-md); background: var(--chrome); }
.why-items { margin-top: 42px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 8px; }
.why-item-n {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--red); min-width: 28px; padding-top: 2px;
}
.why-item-t { font-size: 14px; font-weight: 500; line-height: 1.6; color: var(--text-primary); }

.why-right {
  padding: 100px 60px; background: var(--steel);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.why-quote {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(38px, 3.8vw, 60px); line-height: 1.05;
  color: var(--text-on-dark); margin-bottom: 22px;
}
.why-quote em { color: var(--red-light); font-style: normal; display: block; }
.why-quote-sub { font-size: 13px; font-weight: 300; color: rgba(240,240,240,0.45); margin-bottom: 34px; }

/* CTA Band */
.home-cta-band {
  background: var(--red); padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
  box-shadow: inset 0 -3px 12px rgba(0,0,0,0.14);
}
.home-cta-band::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 32%;
  background: linear-gradient(to left, rgba(0,0,0,0.14), transparent);
}
.cta-band-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3.6vw, 50px); color: #fff; line-height: 1;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-story {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
  padding: 100px 60px; background: var(--chrome);
  border-bottom: 1px solid var(--border-md);
}
.about-story-body { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--text-secondary); }
.about-story-body p + p { margin-top: 15px; }
.about-story-body strong { color: var(--text-primary); font-weight: 600; }

.about-values { padding: 100px 60px; background: var(--metal-light); border-bottom: 1px solid var(--border-md); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-md); margin-top: 52px; }
.value-card {
  background: var(--metal-light); padding: 40px 34px;
  transition: background 0.3s; box-shadow: var(--shadow-sm);
}
.value-card:hover { background: var(--chrome); }
.value-icon { font-size: 26px; margin-bottom: 14px; line-height: 1; }
.value-title { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.value-body { font-size: 13.5px; font-weight: 300; line-height: 1.75; color: var(--text-secondary); }

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.services-full { padding: 100px 60px; background: var(--chrome); border-bottom: 1px solid var(--border-md); }
.services-full-grid { display: flex; flex-direction: column; gap: 1px; background: var(--border-md); margin-top: 52px; }
.service-full-card {
  background: var(--chrome); padding: 52px;
  display: grid; grid-template-columns: 155px 1fr; gap: 52px; align-items: start;
  position: relative; overflow: hidden; transition: background 0.3s; box-shadow: var(--shadow-sm);
}
.service-full-card:hover { background: var(--metal-light); }
.service-full-card-img {
  position: absolute; right: 0; top: 0; bottom: 0; width: 30%;
  background-size: cover; background-position: center; opacity: 0.05; transition: opacity 0.4s;
}
.service-full-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--chrome) 0%, transparent 100%); }
.service-full-card:hover .service-full-card-img { opacity: 0.09; }
.sfcard-num { font-family: var(--font-display); font-weight: 900; font-size: 76px; color: rgba(232,35,26,0.10); line-height: 1; }
.sfcard-tag { font-family: var(--font-condensed); font-size: 9px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.sfcard-title { font-family: var(--font-condensed); font-size: 30px; font-weight: 700; color: var(--text-primary); margin-bottom: 11px; }
.sfcard-body { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--text-secondary); }

/* ══════════════════════════════════════
   PROCESS PAGE
══════════════════════════════════════ */
.process-section { padding: 100px 60px; background: var(--chrome); }
.process-list { margin-top: 60px; }
.process-item {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 46px; align-items: start;
  padding: 38px 0; border-top: 1px solid var(--border-md);
  transition: padding-left 0.3s;
}
.process-item:last-child { border-bottom: 1px solid var(--border-md); }
.process-item:hover { padding-left: 10px; }
.pi-num { font-family: var(--font-display); font-weight: 900; font-size: 52px; color: rgba(0,0,0,0.09); line-height: 1; transition: color 0.3s; }
.process-item:hover .pi-num { color: var(--red); }
.pi-title { font-family: var(--font-condensed); font-size: 27px; font-weight: 700; color: var(--text-primary); }
.pi-body { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: var(--text-secondary); }

/* ══════════════════════════════════════
   LEADERSHIP PAGE
══════════════════════════════════════ */
.team-section { padding: 100px 60px; background: var(--chrome); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-md); margin-top: 52px; }
.team-card {
  background: var(--chrome); padding: 46px 40px;
  position: relative; overflow: hidden; transition: background 0.3s; box-shadow: var(--shadow-sm);
}
.team-card:hover { background: var(--metal-light); }
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 4px;
  background: linear-gradient(to right, var(--red), var(--red-dark));
  transition: width 0.5s;
}
.team-card:hover::before { width: 100%; }
.team-initials-badge {
  width: 70px; height: 70px; margin-bottom: 24px;
  background: var(--steel);
  border: 2px solid rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: 25px; color: var(--text-on-dark);
  box-shadow: var(--shadow-md);
}
.team-role { font-family: var(--font-condensed); font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.team-name { font-family: var(--font-condensed); font-size: 21px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.team-bio { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--text-secondary); }
.team-expertise { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.team-tag {
  font-family: var(--font-condensed); font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); background: var(--metal-light);
  border: 1px solid var(--border-md); padding: 3px 10px;
}

/* ══════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════ */
.products-section { padding: 100px 60px; background: var(--chrome); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-md); margin-top: 52px; }
.product-card { background: var(--chrome); position: relative; overflow: hidden; transition: background 0.3s; box-shadow: var(--shadow-sm); }
.product-card:hover { background: var(--metal-light); }
.product-card-img { width: 100%; height: 210px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.product-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(224,224,226,0.88) 0%, transparent 55%); }
.product-card-body { padding: 24px 28px 32px; }
.product-cat { font-family: var(--font-condensed); font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.product-name { font-family: var(--font-condensed); font-size: 19px; font-weight: 700; color: var(--text-primary); margin-bottom: 9px; }
.product-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--text-secondary); margin-bottom: 16px; }
.product-specs { display: flex; flex-direction: column; gap: 4px; }
.product-spec { display: flex; gap: 8px; font-size: 12px; }
.product-spec-key { color: var(--text-muted); font-weight: 500; min-width: 100px; }
.product-spec-val { color: var(--text-primary); font-weight: 400; }
.product-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--font-condensed); font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 11px;
  box-shadow: var(--shadow-red);
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section {
  padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  background: var(--chrome);
  border-bottom: 1px solid var(--border-md);
}
.contact-form-wrap { background: var(--metal-light); border: 1px solid var(--border-md); padding: 46px; box-shadow: var(--shadow-md); }
.form-title { font-family: var(--font-condensed); font-size: 21px; font-weight: 700; color: var(--text-primary); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 15px; }
.form-label { display: block; font-family: var(--font-condensed); font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--chrome);
  border: 1px solid var(--border-md);
  color: var(--text-primary); font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  padding: 12px 14px; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,35,26,0.09);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { height: 130px; resize: vertical; }
.form-select option { background: var(--chrome); color: var(--text-primary); }
.contact-info-intro { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-secondary); margin-top: 18px; margin-bottom: 42px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border-md); background: var(--metal-light);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.ci-icon svg { width: 17px; height: 17px; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ci-label { font-family: var(--font-condensed); font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.ci-value { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.ci-value a { transition: color 0.2s; }
.ci-value a:hover { color: var(--red); }
.ci-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; font-weight: 300; }
.map-embed { width: 100%; height: 360px; border: 1px solid var(--border-md); filter: grayscale(70%) contrast(105%); margin-top: 60px; box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  #cx-nav { padding: 14px 40px; }
  #cx-nav.scrolled { padding: 9px 40px; }
}
@media (max-width: 768px) {
  #cx-nav { padding: 12px 24px; }
  #cx-nav.scrolled { padding: 8px 24px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-wordmark { display: none; }
  .nav-logo-img { height: 32px; }
  #cx-hero { grid-template-columns: 1fr; }
  .hero-left { padding: 140px 24px 60px; }
  .hero-right { display: none; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.10); padding-left: 0; padding-top: 18px; }
  .home-about, .home-why { grid-template-columns: 1fr; }
  .home-about-left { padding: 60px 24px; border-right: none; border-bottom: 1px solid var(--border-md); }
  .why-left { padding: 60px 24px; border-right: none; border-bottom: 1px solid var(--border-md); }
  .home-about-right { grid-template-columns: 1fr 1fr; }
  .why-right { padding: 60px 24px; }
  .services-header { padding: 60px 24px 0; }
  .services-cards, .values-grid, .team-grid, .products-grid { grid-template-columns: 1fr; }
  .service-card { padding: 34px 22px; }
  .page-hero { padding: 140px 24px 60px; }
  .about-story { grid-template-columns: 1fr; gap: 36px; padding: 60px 24px; }
  .services-full, .process-section, .team-section, .contact-section, .products-section { padding: 60px 24px; }
  .about-values { padding: 60px 24px; }
  .service-full-card { grid-template-columns: 1fr; gap: 14px; padding: 34px 22px; }
  .sfcard-num { font-size: 52px; }
  .process-item { grid-template-columns: 52px 1fr; gap: 16px; padding: 30px 0; }
  .process-item .pi-body { grid-column: 2; }
  .contact-section { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 28px 22px; }
  .home-cta-band { flex-direction: column; gap: 22px; padding: 60px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; padding: 48px 24px 32px; }
  .footer-bottom { padding: 14px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-caption { left: 24px; bottom: 26px; }
  .about-img-caption h3 { font-size: 24px; }
  .intro-stats-bar { gap: 18px; }
  .intro-divider { height: 28px; }
}
