/* ============================================================
   Universal Print Systems — site.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --blue:       #0d6eb5;
  --blue-dark:  #094d85;
  --blue-light: #e8f3fc;
  --teal:       #0d9b8a;
  --teal-dark:  #097367;
  --gold:       #e8a020;
  --gold-dark:  #c4841a;
  --navy:       #0d1f3c;
  --steel:      #2d3f55;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-50:    #f0f4f8;
  --gray-100:   #e2e8f0;
  --gray-300:   #a0aec0;
  --gray-500:   #718096;
  --gray-700:   #4a5568;
  --gray-900:   #1a202c;
  --text:       #1e2d3d;
  --text-muted: #5a6a7a;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.13);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.15);

  --nav-h:      72px;
  --transition: .25s cubic-bezier(.4,0,.2,1);

  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn i { transition: transform var(--transition); }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,110,181,.35);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 24px rgba(13,110,181,.45); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

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

/* ── Badge Pill ─────────────────────────────────────────────── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.brand-ups {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  background: var(--blue);
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
  letter-spacing: .08em;
}
.brand-full {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: .5rem 1.1rem;
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--blue-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
}
.text-center { text-align: center; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: .9;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-eyebrow { color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto; }

.page-hero--blue  { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); }
.page-hero--teal  { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); }
.page-hero--navy  { background: linear-gradient(135deg, #07122a 0%, var(--navy) 100%); }
.page-hero--steel { background: linear-gradient(135deg, #1a2535 0%, var(--steel) 100%); }
.page-hero--gold  { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); }

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #06122a 0%, #0d2d5e 50%, #0d6eb5 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .20;
  transition: background .5s ease;
}
.shape-1 { width: 520px; height: 520px; top: -120px; right: -120px; }
.shape-2 { width: 360px; height: 360px; bottom: -100px; left: -100px; }
.shape-3 { width: 240px; height: 240px; top: 45%; right: 18%; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  margin-bottom: 1rem;
}
.hero-ups {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .12em;
  line-height: 1;
}
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Highlights ─────────────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.highlight-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.highlight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue-light); }
.highlight-icon { color: var(--blue); font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.highlight-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }

/* ── Values Strip ───────────────────────────────────────────── */
.section-values-strip { padding: 40px 0; background: var(--blue); }
.values-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .55rem 1.2rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
}
.value-item:hover { background: rgba(255,255,255,.22); }
.value-item i { font-size: 1rem; }

/* ── Products Grid ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-light); }
.product-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
}
.product-card ul { list-style: none; }
.product-card li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .25rem 0;
  border-bottom: 1px solid var(--gray-50);
}
.product-card li.more { color: var(--blue); font-weight: 600; font-size: .8rem; border: none; }

/* ── Products Full Grid ─────────────────────────────────────── */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.product-full-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-full-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 1.25rem 1.5rem;
}
.product-full-icon { color: rgba(255,255,255,.7); font-size: 1.3rem; }
.product-full-header h3 { color: var(--white); font-size: .95rem; font-weight: 700; }
.product-full-list { padding: 1rem 1.5rem; }
.product-full-list li {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  color: var(--text-muted);
  padding: .35rem 0;
  border-bottom: 1px solid var(--gray-50);
}
.product-full-list li:last-child { border: none; }
.product-full-list li i { color: var(--blue); }

.specialty-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
}
.specialty-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.specialty-inner > i { font-size: 2.5rem; color: var(--gold); flex-shrink: 0; }
.specialty-inner > div { flex: 1; }
.specialty-inner h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .35rem; }
.specialty-inner p { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ── Clients Marquee ────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; margin: 0 -24px; padding: 8px 0; }
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  min-width: 220px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.marquee-item i { font-size: 1.4rem; color: var(--blue); }
.marquee-item span { font-weight: 600; font-size: .85rem; color: var(--text); }
.marquee-item small { font-size: .75rem; color: var(--text-muted); }

/* ── CTA Band ───────────────────────────────────────────────── */
.section-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 72px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: .35rem; }
.cta-band-inner p { color: rgba(255,255,255,.7); }

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.about-aside { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: var(--off-white);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-card-icon { font-size: 1.4rem; color: var(--blue); flex-shrink: 0; }
.about-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.about-card p { font-size: .85rem; color: var(--text-muted); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cert-icon { font-size: 2.5rem; color: var(--blue); margin-bottom: 1rem; }
.cert-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.cert-card p { font-size: .85rem; color: var(--text-muted); }

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.unit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.unit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.unit-header { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; }
.unit-header i { color: var(--blue); font-size: 1.2rem; }
.unit-header h3 { font-size: 1rem; font-weight: 700; }
.unit-address { color: var(--text-muted); font-size: .875rem; margin-bottom: .5rem; line-height: 1.6; }
.unit-card p { font-size: .85rem; color: var(--text-muted); margin-top: .35rem; }
.unit-card p i { color: var(--blue); margin-right: .3rem; }

/* ── Services ───────────────────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-block--reverse {
  direction: ltr;
}
.service-icon-large {
  width: 72px; height: 72px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.service-text h2 { font-size: 1.5rem; margin-bottom: .75rem; }
.service-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.service-list { padding-left: 1rem; }
.service-list li {
  position: relative;
  padding: .3rem 0 .3rem 1.25rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: .5rem; }
.tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 100px;
}

/* ── Infrastructure ─────────────────────────────────────────── */
.infra-stages {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.infra-stage-pill {
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-100);
  color: var(--gray-500);
  transition: var(--transition);
  font-family: var(--font-head);
}
.infra-stage-pill:hover,
.infra-stage-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.infra-group { margin-bottom: 56px; }
.infra-group-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  color: var(--steel);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.infra-group-line { flex: 1; height: 1px; background: var(--gray-100); }

.infra-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.infra-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.infra-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.infra-card-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--blue);
}
.infra-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; padding-left: .5rem; }
.infra-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; padding-left: .5rem; }

/* ── Core Values ────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation: fadeUp .5s both;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--blue-light); }
.value-number {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
}
.value-icon { font-size: 2rem; color: var(--blue); margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.value-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

.motto-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
}
.motto-text p {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.motto-text p em {
  color: var(--gold);
  font-style: normal;
}

/* ── Customers ──────────────────────────────────────────────── */
.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}
.customer-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.customer-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--blue-light); }
.customer-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.customer-card--more .customer-icon { background: var(--gray-50); color: var(--gray-500); }
.customer-info h4 { font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
.customer-info span { font-size: .78rem; color: var(--text-muted); }
.customer-info i { font-size: .75rem; margin-right: .25rem; }

.customer-sectors { margin-top: 48px; }
.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.sector-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: var(--white);
  padding: .65rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .88rem;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-office {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 16px;
  border-left: 3px solid var(--blue);
}
.contact-office h4 { font-size: .9rem; font-weight: 700; margin-bottom: .5rem; color: var(--blue); }
.contact-office p { font-size: .83rem; color: var(--text-muted); margin-top: .3rem; }
.contact-office p i { color: var(--blue); margin-right: .3rem; }

.contact-email-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-100);
}
.contact-email-box i { font-size: 1.4rem; color: var(--blue); }
.contact-email-box p { font-size: .78rem; color: var(--text-muted); margin-bottom: .1rem; }
.contact-email-box a { font-weight: 600; font-size: .9rem; color: var(--blue); }
.contact-email-box a:hover { text-decoration: underline; }

.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form-input {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,110,181,.12); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-error { font-size: .78rem; color: #e53e3e; }

.form-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--teal);
}
.form-success i { font-size: 3rem; color: var(--teal); margin-bottom: 1rem; }
.form-success h3 { font-size: 1.6rem; margin-bottom: .75rem; }
.form-success p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 80px 0 0; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 160px 260px;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--white);
  background: var(--blue);
  display: inline-block;
  padding: .2rem .75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.footer-tagline { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; }
.badge-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.badge-item i { color: var(--gold); }

.footer-links h4,
.footer-contact h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact p { font-size: .84rem; color: rgba(255,255,255,.65); margin-bottom: .45rem; }
.footer-contact i { margin-right: .4rem; color: var(--blue); }
.footer-contact a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 1.25rem 24px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Highlights section bg ──────────────────────────────────── */
.section-highlights { background: var(--off-white); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 1rem; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow); gap: .25rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1rem; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .service-block { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .specialty-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.6rem; }
}

/* ============================================================
   IMAGE & LOGO ADDITIONS
   ============================================================ */

/* ── Navbar Logo ─────────────────────────────────────────────── */
.nav-logo {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Hero Logo ──────────────────────────────────────────────── */
.hero-logo-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  max-width: 480px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.45));
  animation: heroLogoIn .8s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(-20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ── Units Photo Strip (Home) ───────────────────────────────── */
.units-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.unit-photo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.unit-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.unit-photo-card:hover img { transform: scale(1.04); }
.unit-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(5,20,45,.85) 0%, transparent 100%);
}
.unit-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .4rem;
}
.unit-photo-label p {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
}

/* ── Team Home Section ──────────────────────────────────────── */
.section-team-home { background: var(--navy); padding: 96px 0; }
.team-home-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.team-home-text .section-eyebrow { color: rgba(255,255,255,.55); }
.team-home-text .section-title { color: var(--white); }
.team-home-text p { color: rgba(255,255,255,.65); line-height: 1.75; }
.team-home-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.team-home-photo img { width: 100%; height: auto; display: block; }

/* ── Team Photo (About) ─────────────────────────────────────── */
.team-photo-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.team-photo-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  margin-bottom: 1.25rem;
}
.team-caption {
  font-size: .95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Units Photo Grid (About) ───────────────────────────────── */
.units-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.unit-photo-item { }
.unit-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}
.unit-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.unit-photo-frame:hover img { transform: scale(1.04); }
.unit-photo-info .unit-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 100px;
  margin-bottom: .6rem;
}
.unit-photo-info h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.unit-photo-info p { font-size: .86rem; color: var(--text-muted); margin-bottom: .4rem; line-height: 1.6; }
.unit-photo-info p i { color: var(--blue); margin-right: .3rem; }

/* ── Footer Logo Image ──────────────────────────────────────── */
.footer-logo-img {
  margin-bottom: 1rem;
  background: var(--white);
  display: inline-block;
  border-radius: var(--radius);
  padding: .5rem 1rem;
}
.footer-logo-img img {
  height: 46px;
  width: auto;
  display: block;
}

/* ── Machine Gallery (Infrastructure) ──────────────────────── */
.machine-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.machine-hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  aspect-ratio: 4/3;
}
.machine-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: opacity .3s ease, transform .5s ease;
}
.machine-hero-card:hover img { opacity: 1; transform: scale(1.03); }
.machine-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(5,15,35,.9) 0%, transparent 100%);
}
.machine-caption h3 { color: var(--white); font-size: .95rem; margin-bottom: .2rem; }
.machine-caption p { color: rgba(255,255,255,.7); font-size: .8rem; }

.machine-sub-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.machine-sub-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--navy);
  aspect-ratio: 4/3;
}
.machine-sub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: opacity .3s ease, transform .5s ease;
}
.machine-sub-card:hover img { opacity: 1; transform: scale(1.03); }
.machine-sub-card .machine-caption { padding: 1rem 1.25rem; }
.machine-sub-card .machine-caption h3 { font-size: .88rem; }

/* ── Pre-press Gallery ──────────────────────────────────────── */
.prepress-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pp-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pp-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-50);
}
.pp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pp-card:hover .pp-img-wrap img { transform: scale(1.06); }
.pp-card h4 {
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1rem .3rem;
}
.pp-card p {
  font-size: .8rem;
  color: var(--text-muted);
  padding: 0 1rem 1rem;
  line-height: 1.5;
}

/* ── Post-press Gallery ─────────────────────────────────────── */
.postpress-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.postpress-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  position: relative;
}
.postpress-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: .88;
  display: block;
  transition: opacity .3s, transform .5s;
}
.postpress-card:hover img { opacity: 1; transform: scale(1.03); }
.postpress-caption {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--navy);
}
.postpress-caption h4 { color: var(--white); font-size: .9rem; margin-bottom: .25rem; }
.postpress-caption p { color: rgba(255,255,255,.6); font-size: .8rem; }

/* ── Responsive image additions ─────────────────────────────── */
@media (max-width: 1024px) {
  .prepress-gallery { grid-template-columns: repeat(2, 1fr); }
  .units-photo-grid { grid-template-columns: 1fr; }
  .team-home-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .units-photo-strip { grid-template-columns: 1fr; }
  .machine-gallery { grid-template-columns: 1fr; }
  .machine-sub-grid { grid-template-columns: 1fr; grid-column: auto; }
  .postpress-gallery { grid-template-columns: 1fr; }
  .prepress-gallery { grid-template-columns: repeat(2, 1fr); }
  .nav-logo { height: 36px; }
  .hero-logo-img { max-width: 300px; }
}

/* ============================================================
   SERVICES & PRODUCTS IMAGE STYLES
   ============================================================ */

/* ── Service image embeds ───────────────────────────────────── */
.service-img-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 280px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-img-row {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}
.service-img-row img {
  flex: 1;
  border-radius: var(--radius);
  object-fit: cover;
  height: 160px;
  width: 0;
  box-shadow: var(--shadow-sm);
}
.service-img-row--tall img {
  height: 220px;
}

/* ── Specialty banner with image ────────────────────────────── */
.specialty-banner-with-img {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-top: 48px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.specialty-img-side {
  overflow: hidden;
}
.specialty-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
}
.specialty-text-side {
  padding: 2.5rem 3rem;
}
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.eco-badge i { color: #7de88c; }
.specialty-text-side h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: .75rem;
  line-height: 1.3;
}
.specialty-text-side > p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.eco-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
}
.eco-list li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.82);
}
.eco-list li i { color: #7de88c; font-size: .95rem; flex-shrink: 0; }

/* ── Responsive service/products images ─────────────────────── */
@media (max-width: 768px) {
  .service-img-row { flex-direction: column; }
  .service-img-row img { width: 100%; height: 180px; }
  .specialty-banner-with-img { grid-template-columns: 1fr; }
  .specialty-img-side { height: 200px; }
  .specialty-text-side { padding: 1.75rem; }
  .eco-list { grid-template-columns: 1fr; }
}
