/* ============================================================
   U3S ENGITECH — MAIN STYLESHEET
   Design system, base styles, components, sections
   ============================================================ */

/* ---------- 1. CSS RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

/* ---------- 2. CUSTOM PROPERTIES ---------- */
:root {
  /* Colors */
  --color-primary:     #0B3B60;
  --color-primary-dark:#082942;
  --color-accent:      #E87722;
  --color-accent-dark: #C9651C;
  --color-accent-alt:  #F5A623;
  --color-dark:        #2D2D2D;
  --color-mid:         #4A5568;
  --color-light-bg:    #F4F5F7;
  --color-border:      #D1D5DB;
  --color-white:       #FFFFFF;
  --color-sky:         #5BB4E5;
  --color-overlay:     rgba(11, 59, 96, 0.85);
  --color-success:     #16A34A;
  --color-error:       #DC2626;

  /* Typography */
  --font-display:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-heading:   'Barlow', 'Helvetica Neue', sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-hero:      clamp(2.6rem, 6vw, 5.25rem);
  --text-section:   clamp(1.85rem, 4vw, 2.85rem);
  --text-h3:        1.5rem;
  --text-card:      1.25rem;
  --text-body:      1rem;
  --text-small:     0.875rem;
  --text-micro:     0.75rem;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-xxl:  8rem;

  /* Borders & Effects */
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-sm: 0 2px 8px rgba(11, 59, 96, 0.08);
  --shadow-md: 0 6px 20px rgba(11, 59, 96, 0.12);
  --shadow-lg: 0 20px 40px rgba(11, 59, 96, 0.15);
  --shadow-xl: 0 30px 60px rgba(11, 59, 96, 0.2);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2.5rem);
  --header-height: 80px;
  --header-height-scrolled: 60px;
  --topbar-height: 40px;
}

/* ---------- 3. BASE TYPOGRAPHY ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--color-mid);
  background: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

h1 { font-size: var(--text-hero); text-transform: uppercase; letter-spacing: 0.03em; }
h2 { font-size: var(--text-section); text-transform: uppercase; letter-spacing: 0.04em; }
h3 { font-size: var(--text-h3); font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.01em; }
h4 { font-size: 1.125rem; font-family: var(--font-heading); font-weight: 700; }

p { margin-bottom: var(--space-sm); color: var(--color-mid); line-height: 1.75; }
strong { color: var(--color-dark); font-weight: 600; }

a { transition: color 0.2s ease; }
a:hover { color: var(--color-accent); }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- 4. LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.section-light { background: var(--color-light-bg); }

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark p { color: rgba(255, 255, 255, 0.82); }

.section-darker {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.section-darker h1, .section-darker h2, .section-darker h3, .section-darker h4 { color: var(--color-white); }
.section-darker p { color: rgba(255, 255, 255, 0.82); }

.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.flex { display: flex; gap: var(--space-md); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- 5. SECTION HEADERS ---------- */
.section-header {
  margin-bottom: var(--space-lg);
  max-width: 760px;
}
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  padding-left: 1.5rem;
  position: relative;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1rem;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  font-size: var(--text-section);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-mid);
  max-width: 680px;
  margin-top: var(--space-xs);
}
.section-dark .section-subtitle { color: rgba(255, 255, 255, 0.78); }

/* ---------- 6. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-heading);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.btn-primary:hover { color: var(--color-white); background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.btn-primary:hover::after { transform: translateX(0); }

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary-dark); color: var(--color-white); }

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover { background: var(--color-primary); color: var(--color-white); }

.btn-outline-accent {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline-accent:hover { background: var(--color-accent); color: var(--color-white); }

.btn-arrow::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- 7. PAGE PROGRESS BAR ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--color-accent);
  z-index: 10000;
  transition: width 0.4s ease, opacity 0.3s ease 0.2s;
}

/* ---------- 8. HERO (HOMEPAGE) ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(11, 59, 96, 0.88), rgba(11, 59, 96, 0.92)),
    linear-gradient(135deg, #0B3B60 0%, #082942 50%, #0B3B60 100%);
  background-size: cover, cover;
  background-position: center;
  color: var(--color-white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--topbar-height) + 2rem);
  padding-bottom: var(--space-xl);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 940px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(232, 119, 34, 0.4);
  background: rgba(232, 119, 34, 0.08);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}

.hero-h1 {
  font-size: var(--text-hero);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.hero-h1 .accent { color: var(--color-accent); display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
}
.scroll-indicator svg { margin: 0.5rem auto 0; animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- 9. INTERIOR PAGE HERO ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: calc(var(--header-height) + var(--topbar-height) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 30%, transparent 30%, transparent 100%);
}

.page-hero-tall { min-height: 420px; }

.page-hero .container { position: relative; z-index: 1; width: 100%; }

.breadcrumb {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep { margin: 0 0.5rem; color: var(--color-accent); }

.page-hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}
.page-hero-tall .page-hero-h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
.page-hero-h1 .accent { color: var(--color-accent); }
.page-hero-h1 .stack-letters span:first-child { color: var(--color-accent); }

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 780px;
  line-height: 1.7;
}

.page-hero-pill {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1.25rem;
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: var(--space-sm);
}

/* ---------- 10. STATS STRIP ---------- */
.stats-strip {
  background: var(--color-primary-dark);
  padding: var(--space-lg) 0;
  color: var(--color-white);
  border-top: 4px solid var(--color-accent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.stat-item {
  text-align: center;
  padding: var(--space-sm);
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---------- 11. CARDS ---------- */
.card {
  background: var(--color-white);
  padding: var(--space-md);
  border-top: 4px solid var(--color-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-accent);
}

.card-icon {
  width: 56px; height: 56px;
  background: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  transition: background 0.3s ease, color 0.3s ease;
}
.card:hover .card-icon { background: var(--color-primary); color: var(--color-white); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-mid);
  flex: 1;
}

.card-link {
  margin-top: var(--space-md);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.card-link::after { content: '→'; transition: transform 0.3s ease; }
.card-link:hover::after { transform: translateX(4px); }

/* Product card with image */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.product-card-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-light-bg) 0%, #E2E8F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.product-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 59, 96, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 59, 96, 0.05) 1px, transparent 1px);
  background-size: 25px 25px;
}
.product-card-image svg { position: relative; z-index: 1; width: 60px; height: 60px; }
.product-card-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  z-index: 2;
}
.product-card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.product-card-spec {
  font-size: var(--text-small);
  color: var(--color-mid);
  line-height: 1.6;
  flex: 1;
}
.product-card-link {
  margin-top: var(--space-sm);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.product-card-link::after { content: ' →'; transition: transform 0.3s ease; display: inline-block; }
.product-card-link:hover::after { transform: translateX(4px); }

/* Industry card */
.industry-card {
  background: var(--color-primary-dark);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.industry-card:hover {
  background: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}
.industry-card-icon {
  width: 48px; height: 48px;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.industry-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.industry-card-text {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  flex: 1;
}

/* Project Card */
.project-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-accent);
}
.project-card[data-sector="steel"] { border-left-color: #1E40AF; }
.project-card[data-sector="aluminium"] { border-left-color: #6B7280; }
.project-card[data-sector="mining"] { border-left-color: #92400E; }
.project-card[data-sector="paper"] { border-left-color: #166534; }
.project-card[data-sector="oem"] { border-left-color: var(--color-accent); }

.project-sector-badge {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.7rem;
  background: var(--color-light-bg);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.project-customer {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.project-application {
  font-size: 1rem;
  color: var(--color-mid);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}
.project-products {
  font-size: var(--text-small);
  color: var(--color-mid);
  line-height: 1.7;
  list-style: none;
  padding: 0;
  margin-top: auto;
}
.project-products li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.project-products li::before {
  content: '▸';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ---------- 12. WHY-US ICON GRID ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.why-item {
  padding: var(--space-md);
  background: var(--color-white);
  border-left: 3px solid var(--color-accent);
  transition: all 0.3s ease;
}
.why-item:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.why-item:hover .why-title { color: var(--color-white); }
.why-item:hover .why-text { color: rgba(255, 255, 255, 0.8); }
.why-icon {
  width: 40px; height: 40px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
}
.why-item:hover .why-icon { color: var(--color-accent); }
.why-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  transition: color 0.3s ease;
}
.why-text {
  font-size: var(--text-small);
  color: var(--color-mid);
  line-height: 1.65;
  transition: color 0.3s ease;
}

/* ---------- 13. TABLES ---------- */
.spec-table {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  margin: var(--space-md) 0;
}
.spec-table th {
  background: var(--color-primary);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: var(--text-small);
  letter-spacing: 0.08em;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-heading);
}
.spec-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark);
}
.spec-table tbody tr:nth-child(even) { background: var(--color-light-bg); }
.spec-table tbody tr:hover { background: rgba(232, 119, 34, 0.05); }
.spec-table td:first-child { font-weight: 600; color: var(--color-primary); }

/* ---------- 14. FORMS ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group { margin-bottom: var(--space-md); }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-label .required { color: var(--color-accent); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 0.95rem;
  color: var(--color-dark);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: var(--text-small);
  color: var(--color-error);
  margin-top: 0.35rem;
  display: none;
}
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: var(--color-error); }
.form-group.has-error .form-error { display: block; }

.form-success {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-light-bg);
  border: 2px solid var(--color-success);
}
.form-success svg {
  width: 64px; height: 64px;
  color: var(--color-success);
  margin: 0 auto var(--space-sm);
}
.form-success h3 { color: var(--color-success); margin-bottom: var(--space-sm); }

/* ---------- 15. TIMELINE (JOURNEY PAGE) ---------- */
.timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-accent) 8%, var(--color-accent) 92%, transparent 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  position: relative;
}
.timeline-marker {
  width: 16px; height: 16px;
  background: var(--color-accent);
  border: 4px solid var(--color-light-bg);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  margin-top: 0.75rem;
  box-shadow: 0 0 0 2px var(--color-accent);
}
.timeline-content {
  background: var(--color-white);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  transition: all 0.3s ease;
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.02em;
}
.timeline-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  margin: 0.5rem 0;
}
.timeline-text { font-size: 0.95rem; color: var(--color-mid); line-height: 1.65; }
.timeline-item.left .timeline-content { grid-column: 1; text-align: right; }
.timeline-item.left .timeline-marker { grid-column: 2; }
.timeline-item.left .timeline-spacer { grid-column: 3; }
.timeline-item.right .timeline-spacer { grid-column: 1; }
.timeline-item.right .timeline-marker { grid-column: 2; }
.timeline-item.right .timeline-content { grid-column: 3; }

/* ---------- 16. CHECK-LIST ---------- */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: var(--color-dark);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E87722'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- 17. INFO BAR (ABOUT PAGE) ---------- */
.info-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-lg) 0;
  border-top: 4px solid var(--color-accent);
  border-bottom: 4px solid var(--color-accent);
}
.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}
.info-bar-item { padding: var(--space-sm); position: relative; }
.info-bar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%; width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.info-bar-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.info-bar-label {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ---------- 18. LEADERSHIP CARD ---------- */
.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.leader-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.leader-card:hover { box-shadow: var(--shadow-lg); }
.leader-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 6rem;
  letter-spacing: 0.05em;
  position: relative;
}
.leader-image::after {
  content: 'PORTRAIT';
  position: absolute;
  bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}
.leader-body { padding: var(--space-md); }
.leader-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
.leader-role {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.5rem 0;
}
.leader-meta {
  display: inline-block;
  background: var(--color-light-bg);
  padding: 0.4rem 0.8rem;
  font-size: var(--text-small);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.leader-resp {
  font-size: var(--text-small);
  color: var(--color-mid);
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.leader-bio { font-size: 0.95rem; color: var(--color-mid); line-height: 1.7; }

/* ---------- 19. FACILITY CARD ---------- */
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.facility-block {
  background: var(--color-white);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  transition: all 0.3s ease;
}
.facility-block:hover { border-left-color: var(--color-accent); box-shadow: var(--shadow-md); }
.facility-area {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.facility-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

/* ---------- 20. RCM PILLAR CARDS ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.pillar-card {
  background: var(--color-primary-dark);
  border-top: 4px solid var(--color-accent);
  padding: var(--space-md);
  color: var(--color-white);
  transition: all 0.3s ease;
}
.pillar-card:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pillar-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}
.pillar-text { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; line-height: 1.7; margin-bottom: var(--space-sm); }
.pillar-list { list-style: none; padding: 0; }
.pillar-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.pillar-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ---------- 21. INSTRUMENT GRID ---------- */
.instrument-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.instrument-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  text-align: center;
  transition: all 0.3s ease;
}
.instrument-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.instrument-icon {
  width: 48px; height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--color-primary);
}
.instrument-item:hover .instrument-icon { color: var(--color-accent); }
.instrument-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.instrument-desc { font-size: var(--text-small); color: var(--color-mid); line-height: 1.5; }

/* ---------- 22. PROCESS STEPS ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  counter-reset: step;
}
.process-step {
  background: var(--color-white);
  padding: var(--space-md);
  border-left: 4px solid var(--color-primary);
  position: relative;
  transition: all 0.3s ease;
  counter-increment: step;
}
.process-step:hover { border-left-color: var(--color-accent); box-shadow: var(--shadow-md); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}
.process-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.process-step-text { font-size: var(--text-small); color: var(--color-mid); line-height: 1.65; }

/* ---------- 23. CTA BANNER ---------- */
.cta-banner {
  background:
    linear-gradient(rgba(11, 59, 96, 0.95), rgba(11, 59, 96, 0.95)),
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: center;
  border-top: 4px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--color-white); margin-bottom: var(--space-sm); }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 720px; margin: 0 auto var(--space-md); font-size: 1.1rem; }
.cta-buttons { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* ---------- 24. RCM HIGHLIGHT BANNER (HOMEPAGE) ---------- */
.rcm-banner {
  background: var(--color-primary-dark);
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 4px solid var(--color-accent);
  border-bottom: 4px solid var(--color-accent);
}
.rcm-banner-content {
  padding: var(--space-xl) var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rcm-banner-image {
  background: linear-gradient(135deg, #082942 0%, #0B3B60 50%, #082942 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.rcm-banner-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(232, 119, 34, 0.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(91, 180, 229, 0.15), transparent 60%);
}
.rcm-banner-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  margin: var(--space-sm) 0;
  letter-spacing: 0.02em;
}
.rcm-banner-h .l { color: var(--color-accent); }
.rcm-badge-flag {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  background: rgba(232, 119, 34, 0.12);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(232, 119, 34, 0.4);
}
.rcm-banner-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 540px;
}

/* ---------- 25. MARQUEE ---------- */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-md) 0;
  background: var(--color-white);
}
.marquee-track {
  display: flex;
  gap: var(--space-xl);
  width: max-content;
  animation: marquee 35s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  padding: 0 1rem;
}
.marquee-item:hover { opacity: 1; }
.marquee-item .accent { color: var(--color-accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 26. CONTACT GRID ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--space-lg);
}

.contact-info-list { display: grid; gap: var(--space-sm); }
.contact-info-card {
  background: var(--color-white);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.contact-info-icon {
  width: 24px; height: 24px;
  color: var(--color-accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-mid);
  margin-bottom: 0.25rem;
}
.contact-info-value { color: var(--color-dark); font-weight: 500; line-height: 1.5; }

.branch-list { display: grid; gap: var(--space-sm); }
.branch-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}
.branch-card:hover { border-left-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.branch-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.branch-addr { font-size: var(--text-small); color: var(--color-mid); margin-bottom: 0.25rem; line-height: 1.5; }
.branch-phone { font-size: var(--text-small); color: var(--color-accent); font-weight: 600; }

.map-embed {
  width: 100%;
  height: 280px;
  border: none;
  background: var(--color-light-bg);
  margin-bottom: var(--space-sm);
}

/* ---------- 27. FILTER BAR (PROJECTS) ---------- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.filter-btn {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-mid);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { color: var(--color-accent); border-color: var(--color-accent); }
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ---------- 28. PARTNER LOGO ---------- */
.partner-logo-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.partner-logo-area {
  background: var(--color-light-bg);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.partner-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.partner-role {
  font-size: var(--text-small);
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.partner-text { font-size: 0.95rem; color: var(--color-mid); line-height: 1.7; flex: 1; }
.partner-link {
  margin-top: var(--space-md);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.partner-link::after { content: '→'; transition: transform 0.3s ease; }
.partner-link:hover::after { transform: translateX(4px); }

/* ---------- 29. PROSE/CONTENT BLOCKS ---------- */
.prose-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.prose-block { font-size: 0.97rem; line-height: 1.75; color: var(--color-mid); }
.prose-block h3 { margin-bottom: var(--space-sm); }
.prose-block p { margin-bottom: 0.85rem; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.mission-card {
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
}
.mission-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-small);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-sm);
}
.mission-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-dark);
  line-height: 1.6;
  font-weight: 500;
}

/* ---------- 30. HIGHLIGHT BOX ---------- */
.highlight-box {
  background: var(--color-light-bg);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}
.highlight-box h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.04em;
}

/* ---------- 31. FOOTER ---------- */
footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 0;
  border-top: 4px solid var(--color-accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.footer-logo .accent { color: var(--color-accent); }
.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-desc { font-size: var(--text-small); line-height: 1.7; margin-bottom: var(--space-md); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--color-accent); }
.footer-social svg { width: 18px; height: 18px; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-links a:hover { color: var(--color-accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  font-size: var(--text-small);
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-links { display: flex; gap: var(--space-md); }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom-links a:hover { color: var(--color-accent); }

/* ---------- 32. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instrument-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-xxl: 5rem;
    --space-lg: 3rem;
    --header-height: 64px;
    --topbar-height: 0px;
  }

  body { font-size: 0.95rem; }

  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:not(:last-child)::after { display: none; }

  .form-grid { grid-template-columns: 1fr; }

  .leader-grid { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .instrument-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .prose-grid-3 { grid-template-columns: 1fr; }

  .info-bar-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .info-bar-item:nth-child(2)::after { display: none; }
  .info-bar-item:not(:last-child)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .rcm-banner { grid-template-columns: 1fr; }
  .rcm-banner-image { min-height: 240px; }
  .rcm-banner-content { padding: var(--space-lg) var(--container-pad); }

  .timeline::before { left: 28px; }
  .timeline-item {
    grid-template-columns: 56px 1fr;
    margin-bottom: var(--space-lg);
  }
  .timeline-item .timeline-marker { grid-column: 1; margin: 0.75rem auto 0; }
  .timeline-item .timeline-content { grid-column: 2; text-align: left !important; }
  .timeline-item .timeline-spacer { display: none; }

  .hero { padding-top: calc(var(--header-height) + 3rem); min-height: 80vh; }
  .hero-h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  .page-hero { min-height: 240px; padding-top: calc(var(--header-height) + 2rem); padding-bottom: 3rem; }
  .page-hero-tall { min-height: 320px; }

  .cta-buttons { flex-direction: column; align-items: stretch; }

  .filter-bar { gap: 0.4rem; }
  .filter-btn { padding: 0.5rem 0.85rem; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .instrument-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .info-bar-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* Print */
@media print {
  header, footer, .cta-banner, .scroll-indicator { display: none; }
  .section, .page-hero { padding: 1rem 0; }
  body { color: #000; background: #fff; }
}

/* ============================================================
   EXTENDED STYLES — May 2026 redesign
   Blog CMS, Gallery, Manufacturing, Animations, New Components
   ============================================================ */

/* --- BLOG / CMS STYLES --- */
.blog-feed { display:flex; flex-direction:column; gap:28px; }
.post-card { background:#fff; border:1px solid #e5e8eb; border-radius:10px; overflow:hidden; transition:box-shadow 0.25s, transform 0.25s; }
.post-card:hover { box-shadow:0 8px 32px rgba(11,59,96,0.12); transform:translateY(-3px); }
.post-card-img { width:100%; height:220px; object-fit:cover; display:block; }
.post-card-body { padding:24px 28px; }
.post-meta { display:flex; align-items:center; gap:12px; margin-bottom:12px; flex-wrap:wrap; }
.post-badge { font-size:10px; font-weight:700; padding:3px 10px; border-radius:20px; text-transform:uppercase; letter-spacing:0.08em; }
.badge-success { background:#e8f5e9; color:#2e7d32; }
.badge-blog { background:#e3f2fd; color:#1565c0; }
.badge-news { background:#fff3e8; color:#b55a00; }
.post-date { font-size:12px; color:#888; }
.post-card-title { font-size:18px; font-weight:700; color:#0B3B60; margin-bottom:10px; line-height:1.3; }
.post-card-excerpt { font-size:14px; color:#4A5568; line-height:1.7; margin-bottom:16px; }
.post-card-author { font-size:12px; color:#888; border-top:1px solid #f0f0f0; padding-top:14px; display:flex; align-items:center; gap:8px; }
.post-card-author strong { color:#0B3B60; }
.post-read-more { color:#E87722; font-size:13px; font-weight:600; text-decoration:none; }
.post-read-more:hover { text-decoration:underline; }

/* Blog grid layout */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px,1fr)); gap:28px; }

/* Blog filter tabs */
.blog-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:2rem; }
.blog-tab { padding:8px 20px; border:1px solid #ddd; border-radius:24px; font-size:13px; cursor:pointer; background:#fff; color:#4A5568; transition:all 0.2s; }
.blog-tab.active, .blog-tab:hover { background:#0B3B60; color:#fff; border-color:#0B3B60; }

/* --- CMS ADMIN STYLES --- */
.cms-wrap { max-width:780px; margin:0 auto; }
.cms-header { background:#0B3B60; color:#fff; padding:28px 32px; border-radius:10px 10px 0 0; display:flex; align-items:center; justify-content:space-between; }
.cms-body { background:#fff; border:1px solid #e0e4e8; border-top:none; border-radius:0 0 10px 10px; padding:32px; }
.cms-field { margin-bottom:20px; }
.cms-field label { display:block; font-size:13px; font-weight:600; color:#0B3B60; margin-bottom:6px; letter-spacing:0.04em; }
.cms-field input, .cms-field textarea, .cms-field select { width:100%; padding:10px 14px; border:1px solid #dde2e8; border-radius:6px; font-size:14px; color:#2D2D2D; transition:border 0.2s, box-shadow 0.2s; }
.cms-field input:focus, .cms-field textarea:focus, .cms-field select:focus { outline:none; border-color:#5BB4E5; box-shadow:0 0 0 3px rgba(91,180,229,0.15); }
.cms-field textarea { min-height:160px; resize:vertical; line-height:1.6; }
.cms-field .file-drop { border:2px dashed #dde2e8; border-radius:8px; padding:32px; text-align:center; cursor:pointer; transition:border-color 0.2s, background 0.2s; }
.cms-field .file-drop:hover { border-color:#5BB4E5; background:#f8fbfe; }
.cms-field .file-drop.drag-over { border-color:#E87722; background:#fff8f3; }
.cms-preview-img { max-width:100%; border-radius:6px; margin-top:12px; max-height:200px; object-fit:cover; }
.cms-btn { background:#E87722; color:#fff; border:none; padding:12px 28px; font-size:14px; font-weight:700; border-radius:6px; cursor:pointer; letter-spacing:0.05em; transition:background 0.2s; }
.cms-btn:hover { background:#d06b1a; }
.cms-btn-secondary { background:#0B3B60; margin-left:12px; }
.cms-btn-secondary:hover { background:#092e4e; }
.cms-btn-danger { background:#c62828; margin-left:12px; }
.cms-btn-danger:hover { background:#b71c1c; }
.cms-posts-list { margin-top:32px; }
.cms-post-item { background:#f8f9fa; border:1px solid #e5e8eb; border-radius:8px; padding:16px 20px; margin-bottom:12px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.cms-post-item-title { font-weight:600; color:#0B3B60; font-size:14px; }
.cms-post-item-meta { font-size:12px; color:#888; margin-top:3px; }
.cms-login { max-width:380px; margin:80px auto; background:#fff; border:1px solid #e0e4e8; border-radius:12px; padding:40px; text-align:center; }
.cms-login h2 { color:#0B3B60; margin-bottom:6px; font-size:22px; }
.cms-login p { color:#888; font-size:13px; margin-bottom:24px; }
.cms-status { padding:10px 16px; border-radius:6px; font-size:13px; margin-top:16px; display:none; }
.cms-status.success { background:#e8f5e9; color:#2e7d32; display:block; }
.cms-status.error { background:#ffebee; color:#c62828; display:block; }

/* --- GALLERY STYLES --- */
.gallery-grid { columns:4; column-gap:16px; }
.gallery-item { break-inside:avoid; margin-bottom:16px; border-radius:8px; overflow:hidden; cursor:pointer; position:relative; display:block; }
.gallery-item img { width:100%; display:block; transition:transform 0.4s; }
.gallery-item:hover img { transform:scale(1.04); }
.gallery-item-overlay { position:absolute; inset:0; background:rgba(11,59,96,0.55); opacity:0; transition:opacity 0.3s; display:flex; align-items:center; justify-content:center; }
.gallery-item:hover .gallery-item-overlay { opacity:1; }
.gallery-overlay-text { color:#fff; font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; }
.gallery-lightbox { position:fixed; inset:0; background:rgba(0,0,0,0.9); z-index:9999; display:none; align-items:center; justify-content:center; }
.gallery-lightbox.open { display:flex; }
.gallery-lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:4px; }
.gallery-lightbox-close { position:absolute; top:24px; right:32px; color:#fff; font-size:32px; cursor:pointer; line-height:1; }
@media(max-width:768px) { .gallery-grid { columns:2; } }
@media(max-width:480px) { .gallery-grid { columns:1; } }

/* --- PRODUCT ICON CARDS (for new product pages) --- */
.product-icon-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.product-icon-card { text-align:center; padding:28px 20px; border:1px solid #e5e8eb; border-radius:10px; background:#fff; transition:box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.product-icon-card:hover { box-shadow:0 6px 24px rgba(11,59,96,0.1); transform:translateY(-4px); border-color:#5BB4E5; }
.product-icon { font-size:36px; margin-bottom:14px; display:block; }
.product-icon-card h3 { font-size:14px; font-weight:700; color:#0B3B60; margin-bottom:8px; }
.product-icon-card p { font-size:12.5px; color:#4A5568; line-height:1.6; }

/* --- ANIMATED COUNTER (enhanced) --- */
.stats-strip-animated { background:#0B3B60; padding:40px 0; }
.stats-row { display:flex; justify-content:center; gap:60px; flex-wrap:wrap; }
.stat-item { text-align:center; }
.stat-number { font-size:48px; font-weight:800; color:#fff; line-height:1; font-family:'Barlow Condensed',sans-serif; }
.stat-number .stat-accent { color:#E87722; }
.stat-label { font-size:12px; color:rgba(255,255,255,0.65); letter-spacing:0.1em; text-transform:uppercase; margin-top:6px; }

/* --- ANIMATED ENTRANCE CARDS --- */
@keyframes slideInUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInScale { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }
@keyframes pulseOrange { 0%,100%{box-shadow:0 0 0 0 rgba(232,119,34,0.4)} 50%{box-shadow:0 0 0 12px rgba(232,119,34,0)} }
@keyframes borderDraw { from{stroke-dashoffset:1000} to{stroke-dashoffset:0} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

.animate-slide-up { animation:slideInUp 0.6s cubic-bezier(0.16,1,0.3,1) both; }
.animate-slide-left { animation:slideInLeft 0.6s cubic-bezier(0.16,1,0.3,1) both; }
.animate-slide-right { animation:slideInRight 0.6s cubic-bezier(0.16,1,0.3,1) both; }
.animate-scale { animation:fadeInScale 0.5s ease both; }
.animate-float { animation:float 3s ease-in-out infinite; }
.animate-pulse-cta { animation:pulseOrange 2.5s ease infinite; }

/* Stagger delays */
.delay-1 { animation-delay:0.1s; }
.delay-2 { animation-delay:0.2s; }
.delay-3 { animation-delay:0.3s; }
.delay-4 { animation-delay:0.4s; }
.delay-5 { animation-delay:0.5s; }
.delay-6 { animation-delay:0.6s; }

/* Shimmer loading state */
.shimmer { background:linear-gradient(90deg,#f0f4f8 25%,#e0e8f0 50%,#f0f4f8 75%); background-size:200% 100%; animation:shimmer 1.5s infinite; border-radius:4px; }

/* Hover lift */
.hover-lift { transition:transform 0.25s, box-shadow 0.25s; }
.hover-lift:hover { transform:translateY(-6px); box-shadow:0 12px 32px rgba(11,59,96,0.15); }

/* Orange accent line on card top */
.card-accent-top { border-top:3px solid #E87722; }

/* --- TICKER / MARQUEE (brand logos) --- */
.marquee-track { display:flex; gap:48px; animation:marqueeScroll 30s linear infinite; white-space:nowrap; }
.marquee-track:hover { animation-play-state:paused; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* --- HOMEPAGE BRANDS SECTION --- */
.brands-section { background:#f4f5f7; padding:60px 0; }
.brands-section .section-title { text-align:center; margin-bottom:36px; }
.brands-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.brand-card { background:#fff; border:1px solid #e5e8eb; border-radius:10px; padding:28px 20px; text-align:center; transition:box-shadow 0.25s, transform 0.25s; text-decoration:none; }
.brand-card:hover { box-shadow:0 8px 28px rgba(11,59,96,0.12); transform:translateY(-4px); }
.brand-card-mark { font-size:28px; font-weight:800; color:#0B3B60; margin-bottom:8px; letter-spacing:-1px; }
.brand-card-name { font-size:14px; font-weight:700; color:#0B3B60; margin-bottom:6px; }
.brand-card-desc { font-size:12px; color:#888; line-height:1.5; }
.brand-card-badge { display:inline-block; margin-top:10px; font-size:10px; padding:3px 10px; background:#e8f0f7; color:#0B3B60; border-radius:20px; font-weight:600; letter-spacing:0.06em; }

/* --- MANUFACTURING PAGE --- */
.process-horizontal { display:flex; gap:0; counter-reset:step; overflow:hidden; border-radius:10px; }
.process-step-h { flex:1; padding:28px 20px; background:#f4f5f7; border-right:1px solid #e5e8eb; counter-increment:step; position:relative; transition:background 0.3s; }
.process-step-h:last-child { border-right:none; }
.process-step-h:hover { background:#e8f0f7; }
.process-step-h::before { content:counter(step,'0'counter(step)); font-size:36px; font-weight:800; color:rgba(11,59,96,0.08); font-family:'Barlow Condensed',sans-serif; display:block; line-height:1; margin-bottom:10px; }
.process-step-h h4 { font-size:13px; font-weight:700; color:#0B3B60; margin-bottom:6px; text-transform:uppercase; letter-spacing:0.06em; }
.process-step-h p { font-size:12px; color:#4A5568; line-height:1.6; }
@media(max-width:768px) { .process-horizontal { flex-direction:column; } .process-step-h { border-right:none; border-bottom:1px solid #e5e8eb; } }

/* --- SCROLL REVEAL (enhanced IntersectionObserver classes) --- */
.reveal-up { opacity:0; transform:translateY(50px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-left { opacity:0; transform:translateX(-50px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { opacity:0; transform:translateX(50px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale { opacity:0; transform:scale(0.88); transition:opacity 0.6s ease, transform 0.6s ease; }
.revealed { opacity:1 !important; transform:none !important; }

/* ============================================================
   HOMEPAGE — Brands & Products Segment Styles
   ============================================================ */

/* BRANDS GRID */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.brand-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e8edf2; border-radius: 8px;
  overflow: hidden; text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.brand-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(11,59,96,.12); }
.brand-card-logo {
  background: #0B3B60; padding: 1.5rem; display: flex;
  align-items: center; justify-content: center; min-height: 90px;
}
.brand-logo-text {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem;
  font-weight: 800; color: #fff; text-align: center; letter-spacing: .02em;
  line-height: 1.1;
}
.brand-logo-text span { font-size: 1rem; font-weight: 600; opacity: .7; display: block; }
.brand-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.brand-card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: #E87722; text-transform: uppercase; margin-bottom: .4rem;
}
.brand-card-name {
  font-size: 16px; font-weight: 700; color: #0B3B60; margin-bottom: .6rem;
  font-family: 'Barlow Condensed', sans-serif;
}
.brand-card-desc { font-size: 13px; color: #555; line-height: 1.65; flex: 1; margin-bottom: .75rem; }
.brand-card-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.brand-card-tags span {
  font-size: 10px; background: #e8f0f7; color: #0B3B60;
  padding: 2px 8px; border-radius: 2px; font-weight: 600;
}

/* PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: #fff; border: 1px solid #e8edf2; border-radius: 6px; padding: 1.5rem;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,59,96,.1);
  border-color: #E87722;
}
.product-card-featured { border-color: #0B3B60; background: #0B3B60; }
.product-card-featured .product-card-name,
.product-card-featured .product-card-desc { color: #fff; }
.product-card-featured .product-card-cta { color: #E87722; }
.product-card-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.product-card-name { font-size: 15px; font-weight: 700; color: #0B3B60; margin-bottom: .5rem; font-family: 'Barlow Condensed', sans-serif; }
.product-card-desc { font-size: 12px; color: #666; line-height: 1.65; flex: 1; margin-bottom: .75rem; }
.product-card-cta { font-size: 12px; color: #E87722; font-weight: 700; }

/* INDUSTRIES MARQUEE */
.industries-marquee-wrapper { overflow: hidden; margin-top: 1.5rem; }
.industries-marquee { display: flex; }
.marquee-track { display: flex; gap: .75rem; animation: marqueeScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.ind-chip {
  display: inline-block; padding: .5rem 1.25rem;
  background: #fff; border: 1px solid #dde4ec; border-radius: 100px;
  font-size: 13px; color: #0B3B60; text-decoration: none; white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}
.ind-chip:hover { background: #0B3B60; color: #fff; border-color: #0B3B60; }

/* SECTION HEADER ROW */
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem; gap: 1rem;
}
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #E87722; margin-bottom: .35rem;
}
.section-link {
  font-size: 13px; color: #0B3B60; text-decoration: none; font-weight: 600;
  white-space: nowrap;
}
.section-link:hover { color: #E87722; }

/* HERO STATS STRIP */
.hero-stats-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; background: rgba(11,59,96,.85);
  backdrop-filter: blur(4px); z-index: 2;
}
.hero-stat {
  flex: 1; text-align: center; padding: 1rem .5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  font-size: 1.6rem; font-weight: 800; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
}
.hero-stat-l { font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

/* HERO BADGE */
.hero-badge {
  display: inline-block; padding: .35rem 1rem; background: rgba(232,119,34,.15);
  border: 1px solid rgba(232,119,34,.4); border-radius: 100px;
  font-size: 11px; color: #E87722; letter-spacing: .06em; margin-bottom: 1.25rem;
}

/* CTA BUTTON GROUP */
.cta-btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.btn-outline-white {
  display: inline-block; padding: .8rem 1.75rem; border: 2px solid rgba(255,255,255,.5);
  color: #fff; border-radius: 3px; font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: .04em; transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
