/* STRALT Technologies — Brand Design System
   Palette: white (primary), black + grey (structure), red (accent).
   Differentiates from Industries: black trust bar & footer, black section tags, grey-led body copy. */
:root {
  --red: #de0000;
  --red-dark: #b80000;
  --red-light: #ff1a1a;
  --white: #ffffff;
  --black: #020202;
  --grey: #a2a2a2;
  --grey-light: #f5f5f5;
  --grey-tint: #ececec;
  --grey-border: #e5e5e5;
  --text-muted: #5a5a5a;
  --border-subtle: rgba(2, 2, 2, 0.1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1200px;
  --header-height: 92px;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(2, 2, 2, 0.08);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Top bar ── */
.top-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--white); font-weight: 500; }
.top-bar a:hover { text-decoration: underline; }
.top-bar .emergency { font-weight: 700; }

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo:hover {
  opacity: 0.92;
}
.logo img {
  height: 72px;
  width: auto;
  max-width: min(260px, 46vw);
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 20px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 6px 0;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}
.btn-white:hover {
  background: var(--black);
  color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--white);
  overflow: hidden;
}
.hero-container {
  position: relative;
  z-index: 3;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 620px;
  padding: 0;
  background: transparent;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero carousel */
.hero-carousel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-expo-banner {
  display: block;
  width: 100%;
  max-width: 340px;
  margin-top: 4px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(2, 2, 2, 0.18);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-expo-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(2, 2, 2, 0.22);
}
.hero-expo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2,2,2,0.72) 0%, rgba(2,2,2,0.5) 35%, rgba(2,2,2,0.18) 58%, rgba(2,2,2,0.02) 78%, rgba(2,2,2,0) 100%);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--red);
  padding: 56px 0;
  border-bottom: 4px solid var(--red-dark);
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
  font-size: 1.05rem;
  max-width: 600px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--white); }

/* ── Sections ── */
section {
  padding: 80px 0;
  background: var(--white);
  color: var(--black);
}
section.bg-grey { background: var(--grey-light); }
section.bg-stralt-grey {
  position: relative;
  background: var(--grey-tint);
  color: var(--black);
}
section.bg-stralt-grey::before {
  display: none;
}
section.bg-stralt-grey > .container {
  position: relative;
  z-index: 1;
}
section.bg-red { background: var(--red); color: var(--white); }
section.bg-black { background: var(--black); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-tag {
  display: inline-block;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--black);
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.bg-black .section-header p,
.bg-red .section-header p { color: rgba(255,255,255,0.75); }
.bg-stralt-grey .section-header p,
.bg-stralt-grey .services-header p {
  color: var(--text-muted);
}
.bg-black .section-tag,
.bg-red .section-tag { color: var(--white); opacity: 0.9; }

/* Homepage services intro emphasis */
.bg-stralt-grey .services-header h2.section-tag {
  color: var(--red);
}
.services-header .section-tag {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: var(--red);
}
.services-header p {
  font-size: 1.28rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 500;
}

/* Homepage sectors intro emphasis */
.sectors-header .section-tag {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  color: var(--red);
}

/* Homepage values intro emphasis */
.values-header .section-tag {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--black);
}

/* About page section intro emphasis */
.strengths-header .section-tag {
  display: block;
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: var(--black);
}
.bg-black .values-header .section-tag {
  color: var(--red);
  opacity: 1;
  letter-spacing: 0.12em;
}

/* ── Trust bar — black band (Industries uses red) ── */
.trust-bar {
  background: var(--black);
  padding: 32px 0;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.trust-item {
  text-align: center;
  padding: 10px 12px 10px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.trust-media {
  width: 100%;
  max-width: 180px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  overflow: hidden;
}
.trust-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trust-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card-img {
  height: 180px;
  background-color: var(--grey-light);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-bottom: 1px solid var(--grey-border);
  overflow: hidden;
}
.service-card-carousel .service-card-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.service-card-carousel .service-card-slide.is-active {
  opacity: 1;
}
.service-card-img.placeholder {
  background: linear-gradient(135deg, var(--grey-light) 0%, #ddd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img.placeholder::after {
  content: "";
  width: 48px;
  height: 48px;
  border: 3px solid var(--grey);
  border-radius: 50%;
  opacity: 0.4;
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: var(--black);
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}
.service-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}
.service-card-link:hover { text-decoration: underline; }

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.industry-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  min-height: 160px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.industry-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.industry-card:hover .industry-card-bg {
  transform: scale(1.05);
}
.industry-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 1;
  margin: 0;
  padding: 0 12px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.industry-card h3 span {
  display: inline-block;
  color: var(--white);
  border: 2px solid var(--red);
  padding: 8px 10px;
  background: rgba(2, 2, 2, 0.45);
}
.industry-card:hover h3 span {
  background: rgba(222, 0, 0, 0.85);
  border-color: var(--white);
}
.industry-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px 24px;
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--red);
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Page body background bands */
.about-body-band,
.services-body-band,
.sectors-body-band,
.news-body-band,
.contact-body-band {
  position: relative;
  isolation: isolate;
}
.about-body-band__media,
.services-body-band__media,
.sectors-body-band__media,
.news-body-band__media,
.contact-body-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--white);
}
.about-body-band__media picture,
.services-body-band__media picture,
.sectors-body-band__media picture,
.news-body-band__media picture,
.contact-body-band__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about-body-band__img,
.services-body-band__img,
.sectors-body-band__img,
.news-body-band__img,
.contact-body-band__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.about-body-band__overlay,
.services-body-band__overlay,
.sectors-body-band__overlay,
.news-body-band__overlay,
.contact-body-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}
.about-body-band__content,
.services-body-band__content,
.sectors-body-band__content,
.news-body-band__content,
.contact-body-band__content {
  position: relative;
  z-index: 1;
}
.about-body-band .about-intro,
.about-body-band .about-pillars,
.services-body-band .services-main,
.sectors-body-band .sectors-page,
.news-body-band .news-main,
.contact-body-band .contact-main {
  background: transparent;
}
.sectors-body-band--top .sectors-page {
  padding-bottom: 40px;
}
.sectors-body-band--bottom .sectors-page {
  padding-top: 40px;
}
.services-footer-prose {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.8;
}
.services-body-band .services-footer-prose {
  color: #4f4f4f;
}

/* About — strengths & values infographic layout */
.about-intro {
  padding-bottom: 40px;
}
.about-intro-prose {
  max-width: 780px;
}
.about-pillars {
  background: var(--white);
  padding-top: 40px;
}
.about-body-band .about-pillars-panel::before {
  display: none;
}
.about-pillars-panel {
  position: relative;
  padding: 16px 0 8px;
}
.about-pillars-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(162, 162, 162, 0.08) 0, transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(162, 162, 162, 0.08) 0, transparent 32%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(162, 162, 162, 0.06) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(162, 162, 162, 0.06) 39px 40px);
  pointer-events: none;
  opacity: 0.55;
}
.about-pillars-panel > * {
  position: relative;
  z-index: 1;
}
.pillar-section + .pillar-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid var(--red);
}
.pillar-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin: 0 0 20px;
}
.pillar-rule {
  width: 100%;
  height: 2px;
  background: var(--red);
  margin-bottom: 0;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar-item {
  padding: 36px 24px 32px;
  text-align: center;
  border-right: 1px solid var(--grey-border);
}
.pillar-item:last-child {
  border-right: none;
}
.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--red);
}
.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-item h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.35;
}
.pillar-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* ── Sister company banner ── */
.sister-banner-btn:hover { color: var(--red); }
.sister-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
}
.sister-banner-logo {
  flex-shrink: 0;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sister-banner-logo img { height: 64px; width: auto; }
.sister-banner img { height: 64px; width: auto; }
.sister-banner-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.sister-banner-content p { color: var(--text-muted); margin-bottom: 16px; }

/* ── Pre-footer band (harness CTA + sister company) ── */
.pre-footer-band {
  background: var(--red);
  padding: clamp(48px, 6vw, 72px) 0;
  color: var(--white);
}
.pre-footer-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 56px);
}
.pre-footer-block {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pre-footer-harness h2,
.pre-footer-sister h3 {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.pre-footer-harness h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.pre-footer-harness p,
.pre-footer-sister p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 56ch;
}
.pre-footer-sister__logo {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pre-footer-sister__logo img {
  height: 64px;
  width: auto;
}
.pre-footer-sister h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.pre-footer-band__cta {
  min-width: min(100%, 260px);
  justify-content: center;
}
.pre-footer-band .btn-outline:hover,
.pre-footer-band .sister-banner-btn:hover {
  color: var(--red);
}

/* ── CTA band ── */
.cta-band {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.cta-band .btn-outline:hover { color: var(--red); }

/* ── Two column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.content-img.placeholder {
  background: linear-gradient(135deg, var(--grey-light) 0%, var(--grey) 100%);
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 32px;
  color: var(--black);
}
.prose h2:first-child { margin-top: 0; }
.sectors-page .prose .section-tag {
  display: block;
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  color: var(--red);
}
.sectors-page .prose h2 {
  color: var(--black);
}
.prose p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.prose ul { margin: 16px 0; padding-left: 0; }
.prose ul:not(.feature-list):not(.iso-list) li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.prose ul:not(.feature-list):not(.iso-list) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--black);
  min-width: 0;
  line-height: 1.45;
}
.feature-list li::before {
  content: "✓";
  color: var(--white);
  background: var(--red);
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
  position: static;
}

/* Technologies / compliance page */
.technologies-page {
  background: var(--white);
}
.compliance-page {
  background: var(--white);
}
.compliance-band {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
  overflow: hidden;
}
.compliance-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.compliance-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.compliance-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}
.compliance-band__content {
  position: relative;
  z-index: 1;
}
.compliance-band .technologies-prose > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.compliance-band .prose p {
  color: var(--text-muted);
  font-weight: 500;
}
.compliance-band .iso-list-desc {
  color: var(--text-muted);
}
.technologies-logo-wrap {
  max-width: 420px;
  margin: 48px auto 0;
  text-align: center;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
}
.technologies-brand-logo {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.technologies-logo-wrap .technologies-cta {
  margin-top: 28px;
}
.technologies-harness-video {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
}
.technologies-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.technologies-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.technologies-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
}
.technologies-harness-video .container {
  position: relative;
  z-index: 2;
}
.technologies-harness-video .prose h2 {
  color: var(--black);
}
.technologies-harness-video .prose p {
  color: #2e2e2e;
  font-weight: 500;
}
.technologies-cert-logos {
  max-width: 720px;
  margin: 56px auto 48px;
  text-align: center;
}
.technologies-partner-logos {
  margin-top: 28px;
}
.technologies-partner-logos img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.certificate-lightbox-trigger {
  margin: 24px auto 0;
  width: min(100%, 260px);
  background: var(--white);
  border: 1px solid rgba(222, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 10px;
  display: block;
  cursor: zoom-in;
  text-align: center;
  box-shadow: inset 0 3px 0 var(--red);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.certificate-lightbox-trigger:hover,
.certificate-lightbox-trigger:focus-visible {
  border-color: rgba(222, 0, 0, 0.35);
  box-shadow: 0 8px 24px rgba(2, 2, 2, 0.12);
  transform: translateY(-1px);
  outline: none;
}
.certificate-lightbox-trigger img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--grey-border);
}
.certificate-lightbox-trigger span {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.compliance-certificates-bottom {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
}
.compliance-certificates-bottom .certificate-lightbox-trigger {
  width: 100%;
  margin-top: 0;
}
.compliance-cta {
  margin-top: 48px;
  text-align: center;
}
.technologies-iso-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.technologies-iso-logos img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--grey-border), 0 4px 16px rgba(2, 2, 2, 0.1);
}
.technologies-prose {
  max-width: 880px;
  margin: 0 auto;
}
.technologies-prose h2 + h2,
.technologies-prose .feature-list + h2 {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--grey-border);
}
.technologies-harness-video + .technologies-page {
  padding-top: 24px;
}
.technologies-harness-video + .technologies-page .technologies-prose > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.technologies-cta {
  text-align: center;
}
.iso-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.iso-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  margin-bottom: 16px;
  line-height: 1.5;
}
.iso-list li::before {
  content: "";
  color: transparent;
  background: transparent;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 4px;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  position: static;
  transform: rotate(45deg);
}
.iso-list li:last-child {
  margin-bottom: 0;
}
.iso-list-body {
  flex: 1;
  min-width: 0;
}
.iso-list-body strong {
  display: block;
  color: var(--black);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 2px;
}
.iso-list-desc {
  display: block;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-details-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 44px 48px;
}
.contact-details-heading {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  color: var(--black);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-detail {
  padding: 26px 0;
  border-bottom: 1px solid var(--grey-border);
}
.contact-detail:first-child {
  padding-top: 0;
}
.contact-detail:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.contact-detail-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.contact-detail-value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}
.contact-detail-value a {
  color: inherit;
  transition: color var(--transition);
}
.contact-detail-value a:hover {
  color: var(--red);
}
.contact-detail--emergency .contact-detail-value a {
  color: var(--red);
}
.contact-detail--emergency .contact-detail-value a:hover {
  color: var(--red-dark);
}
.contact-map {
  margin-top: 40px;
}

/* ── News ── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-card-body {
  width: 100%;
}
.news-image-link,
.news-image {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.news-image-link img,
.news-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}
.news-image-link:hover img {
  opacity: 0.92;
}
.news-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}
.news-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.35;
}
.news-excerpt {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.news-body p {
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 22px;
}
.news-body p:last-child {
  margin-bottom: 0;
}
.news-body p strong {
  color: var(--black);
  font-weight: 800;
}
.news-body h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--black);
  margin: 40px 0 18px;
  line-height: 1.4;
}
.news-body h3:first-child {
  margin-top: 0;
}
.news-body ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-body li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.news-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.news-body li strong {
  color: var(--black);
  font-weight: 700;
}
.news-empty {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 32px 36px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
}

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--black);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(222, 0, 0, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-card__intro {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; }
.contact-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.45;
}
.contact-alert--error {
  background: rgba(222, 0, 0, 0.08);
  border: 1px solid rgba(222, 0, 0, 0.25);
  color: var(--red-dark);
}
.contact-alert--success {
  background: rgba(34, 139, 34, 0.08);
  border: 1px solid rgba(34, 139, 34, 0.25);
  color: #1f6b1f;
}

/* ── Map embed ── */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-border);
  aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img {
  height: 80px;
  width: auto;
  max-width: 280px;
  display: block;
}
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 20px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
}
.footer-brand-logo img {
  margin-bottom: 0;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.footer-social-link svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: var(--white);
}
.footer-social-linkedin { background: #0A66C2; }
.footer-social-facebook { background: #1877F2; }
.footer-social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-address {
  line-height: 1.65;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--grey); }
.footer-bottom a:hover { color: var(--red); }

/* ── Product page specifics ── */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.product-hero-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--grey-border);
  position: relative;
  overflow: hidden;
}
.product-hero-carousel .product-hero-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.product-hero-carousel .product-hero-slide.is-active {
  opacity: 1;
}
.product-hero-img.placeholder {
  background: linear-gradient(135deg, var(--grey-light) 0%, #ccc 100%);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-item:nth-child(2n) { border-right: none; }
  .pillar-item:nth-child(-n+2) { border-bottom: 1px solid var(--grey-border); }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  section.bg-stralt-grey {
    background-image: none;
  }
  .homepage-video-band .bg-stralt-grey {
    background-image: none;
  }

  .nav-toggle { display: block; }
  .logo img { height: 58px; max-width: min(220px, 52vw); }
  .footer-brand img { height: 68px; max-width: 240px; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-border);
    width: 100%;
  }

  .hero { min-height: 520px; }
  .hero-container { min-height: 520px; }
  .hero-content {
    max-width: 100%;
  }
  .hero::after {
    background: linear-gradient(90deg, rgba(2,2,2,0.78) 0%, rgba(2,2,2,0.56) 52%, rgba(2,2,2,0.24) 74%, rgba(2,2,2,0.04) 100%);
  }
  .hero-expo-banner {
    max-width: 100%;
  }
  .two-col,
  .contact-grid,
  .product-hero { grid-template-columns: 1fr; gap: 32px; }
  .news-card { padding: 32px 28px; }
  .news-image-link,
  .news-image { max-width: 100%; margin-bottom: 28px; }
  .contact-details-card { padding: 32px 28px; }
  .contact-details-heading { margin-bottom: 28px; }
  .contact-detail { padding: 20px 0; }
  .two-col.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid,
  .industries-grid,
  .values-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; margin-bottom: 32px; }
  .pillar-title {
    font-size: clamp(1.875rem, 7.5vw, 2.35rem);
    margin: 0 0 28px;
    line-height: 1.15;
    letter-spacing: 0.08em;
  }
  .pillar-rule {
    margin-bottom: 12px;
  }
  .pillar-item {
    border-right: none;
    border-bottom: 1px solid var(--grey-border);
    padding: 32px 20px;
  }
  .pillar-item:last-child { border-bottom: none; }
  .pillar-section + .pillar-section {
    margin-top: 72px;
    padding-top: 56px;
  }
  .about-pillars-panel {
    padding: 24px 0 16px;
  }
  .sister-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-list { grid-template-columns: 1fr; gap: 14px; }
  .feature-list li { align-items: center; }
  .technologies-iso-logos { gap: 12px; }
  .technologies-iso-logos img { width: 88px; height: 88px; }
  .technologies-partner-logos img { max-width: 100%; }
  .technologies-cert-logos { margin-top: 32px; }
  .compliance-certificates-bottom { grid-template-columns: 1fr; max-width: 320px; }
  .compliance-band { padding: 56px 0; }
  .technologies-logo-wrap { margin-top: 40px; }
  .technologies-harness-video { padding: 48px 0 40px; }
  .prose h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    line-height: 1.2;
  }
  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .prose p { color: var(--text-muted); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .technologies-iso-logos img { width: 76px; height: 76px; }
  .iso-list li { margin-bottom: 18px; }
}

/* Homepage video band — What We Do through CTA */
.homepage-video-band {
  position: relative;
  isolation: isolate;
}
.homepage-video-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}
.homepage-video-band__media video,
.homepage-video-band__media img,
.homepage-video-band__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.homepage-video-band__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.homepage-video-band__content {
  position: relative;
  z-index: 2;
}
.homepage-video-band .bg-stralt-grey,
.homepage-video-band .bg-grey {
  background: transparent;
}
.homepage-video-band .bg-stralt-grey > .container {
  position: relative;
  z-index: 1;
}
.homepage-video-band .section-header {
  max-width: 780px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  border: 1px solid rgba(2, 2, 2, 0.08);
  box-shadow: 0 8px 32px rgba(2, 2, 2, 0.18);
}
.homepage-video-band .services-header .section-tag,
.homepage-video-band .sectors-header .section-tag {
  color: var(--red);
}
.homepage-video-band .services-header h2.section-tag {
  color: var(--red);
  text-shadow: none;
}
.homepage-video-band .sectors-header h2 {
  color: var(--black);
  text-shadow: none;
}
.homepage-video-band .services-header p,
.homepage-video-band .sectors-header p,
.homepage-video-band .section-header p {
  color: var(--text-muted);
  font-weight: 600;
  text-shadow: none;
}
.homepage-video-band .industry-card {
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 16px rgba(2, 2, 2, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.homepage-video-band .industry-card:hover {
  border-color: #fff;
  box-shadow:
    0 10px 32px rgba(2, 2, 2, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Homepage video hero */
.hero.hero-brand {
  position: relative;
  padding: 0;
  min-height: min(56vh, 520px);
  overflow: hidden;
  background: var(--black);
}
.hero-brand {
  position: relative;
}
.hero-brand::after {
  display: none;
}
.hero-brand-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}
.hero-brand-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-brand-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.82) 0%, rgba(2, 2, 2, 0.55) 42%, rgba(2, 2, 2, 0.28) 72%, rgba(2, 2, 2, 0.12) 100%);
  pointer-events: none;
}
.hero-brand-content {
  position: relative;
  z-index: 2;
  min-height: min(56vh, 520px);
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.hero-brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: 100%;
}
.hero-brand .hero-content {
  max-width: 620px;
  margin: 0;
  text-align: left;
}
.hero-brand .hero-tag {
  background: var(--red);
  color: var(--white);
}
.hero-brand h1 {
  color: var(--white);
}
.hero-brand h1 span {
  color: var(--red);
}
.hero-brand p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero-brand .hero-expo-banner {
  margin-top: 0;
  max-width: 340px;
  width: 100%;
  justify-self: end;
}
.hero-brand .hero-actions {
  justify-content: flex-start;
}
.compliance-preview {
  text-align: center;
}
.compliance-preview-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.compliance-preview-logos img {
  width: 100px;
  height: auto;
}
@media (max-width: 768px) {
  .hero.hero-brand {
    min-height: min(42vh, 360px);
  }
  .hero-brand-content {
    min-height: min(42vh, 360px);
    padding: 36px 0;
  }
  .hero-brand-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-brand .hero-content {
    max-width: 100%;
  }
  .hero-brand .hero-expo-banner {
    max-width: 100%;
    justify-self: start;
  }
  .hero-brand-overlay {
    background: linear-gradient(90deg, rgba(2, 2, 2, 0.88) 0%, rgba(2, 2, 2, 0.68) 55%, rgba(2, 2, 2, 0.35) 100%);
  }
  .compliance-preview-logos img { width: 80px; }
  .client-benefits-grid { grid-template-columns: 1fr; }
}

/* Client benefits strip (compliance page) */
.client-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.client-benefit-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.client-benefit-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--grey-border);
}
.client-benefit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.client-benefit-card__body {
  text-align: center;
  padding: 18px 12px 20px;
  background: var(--white);
}
.client-benefit-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 10px;
}
.client-benefit-card__body strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--black);
}

/* Eight-service card grid */
.services-grid--eight {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .services-grid--eight { grid-template-columns: repeat(2, 1fr); }
  .client-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Expo booking ── */
.booking-page {
  background: var(--grey-light);
  padding: 64px 0 80px;
}
.booking-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.booking-expo-logo {
  max-width: 360px;
  margin: 0 auto 24px;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(222, 0, 0, 0.22), 0 2px 12px rgba(222, 0, 0, 0.14);
}
.booking-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.booking-wizard {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(222, 0, 0, 0.18);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 0 8px 32px rgba(222, 0, 0, 0.18), 0 2px 12px rgba(222, 0, 0, 0.1);
}
.booking-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.booking-step-hint,
.booking-selected-slot {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.booking-step-header {
  margin-bottom: 8px;
}
.booking-back {
  background: none;
  border: none;
  color: var(--red);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  font-family: var(--font);
}
.booking-back:hover { text-decoration: underline; }
.booking-day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.booking-day-tab {
  border: 2px solid var(--grey-border);
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.booking-day-tab:hover,
.booking-day-tab.is-active {
  border-color: var(--red);
  background: rgba(222, 0, 0, 0.06);
}
.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.booking-slot {
  border: 2px solid var(--grey-border);
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 10px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.booking-slot-time { font-size: 1rem; }
.booking-slot-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
}
.booking-slot:hover,
.booking-slot.is-selected {
  border-color: var(--red);
  background: rgba(222, 0, 0, 0.06);
}
.booking-sector-other-wrap[hidden] {
  display: none;
}
.booking-choice-panel {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  margin-bottom: 24px;
  background: var(--white);
  box-shadow: inset 4px 0 0 var(--red);
}
.booking-choice-panel--sectors {
  background: linear-gradient(135deg, rgba(222, 0, 0, 0.04) 0%, var(--white) 48%);
}
.booking-choice-panel--stralt-technologies {
  background: linear-gradient(135deg, rgba(2, 2, 2, 0.04) 0%, var(--white) 48%);
  box-shadow: inset 4px 0 0 var(--black);
  border-color: var(--grey-border);
}
.booking-services-section {
  margin-bottom: 24px;
}
.booking-services-section__header {
  margin-bottom: 18px;
}
.booking-services-section__title {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin: 0 0 6px;
}
.booking-services-section__desc {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.booking-services-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-choice-panel__legend {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0 0 18px;
}
.booking-choice-panel__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 6px;
}
.booking-choice-panel__title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 6px;
}
.booking-choice-panel__desc {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  line-height: 1.5;
}
.booking-choice-list {
  clear: both;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.booking-choice-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  margin: 0;
  border: 1px solid var(--grey-border);
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.booking-choice-option--other {
  grid-column: 1 / -1;
  border-style: dashed;
  border-color: rgba(222, 0, 0, 0.28);
  background: rgba(222, 0, 0, 0.03);
}
.booking-choice-option:hover {
  border-color: rgba(222, 0, 0, 0.35);
  background: rgba(222, 0, 0, 0.04);
}
.booking-choice-option:has(input:checked) {
  border-color: var(--red);
  background: rgba(222, 0, 0, 0.07);
  box-shadow: 0 0 0 1px rgba(222, 0, 0, 0.12);
}
.booking-choice-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}
.booking-choice-option__label {
  display: block;
  line-height: 1.4;
}
.booking-choice-other {
  margin: -8px 0 24px;
  padding: 16px 18px;
  border: 1px dashed rgba(222, 0, 0, 0.35);
  border-radius: var(--radius);
  background: rgba(222, 0, 0, 0.03);
}
.booking-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 600;
}
.booking-alert--error {
  background: rgba(222, 0, 0, 0.08);
  border: 1px solid rgba(222, 0, 0, 0.25);
  color: var(--red-dark);
}
.booking-loading-panel,
.booking-loading-inline,
.booking-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 24px 0;
}
.booking-success {
  text-align: center;
}
.booking-success .booking-step-title { margin-bottom: 16px; }
.booking-success p { color: var(--text-muted); margin-bottom: 28px; }
.news-booking-cta { margin-top: 32px; }

.news-site-map {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-border);
}
.news-site-map-heading {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 12px;
}
.news-site-map-caption {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.news-site-map-trigger {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(222, 0, 0, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(222, 0, 0, 0.18), 0 2px 12px rgba(222, 0, 0, 0.1);
  cursor: zoom-in;
  position: relative;
  font: inherit;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-site-map-trigger:hover,
.news-site-map-trigger:focus-visible {
  box-shadow: 0 12px 40px rgba(222, 0, 0, 0.24), 0 4px 16px rgba(222, 0, 0, 0.14);
  transform: translateY(-1px);
  outline: none;
}
.news-site-map-trigger img {
  width: 100%;
  height: auto;
  display: block;
}
.news-site-map-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 999px;
  pointer-events: none;
}
.news-site-map-download {
  margin-top: 24px;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-open { overflow: hidden; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
}

@media (max-width: 768px) {
  .booking-wizard { padding: 28px 24px; }
  .booking-slot-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-choice-list { grid-template-columns: 1fr; }
  .news-site-map {
    margin-top: 36px;
    padding-top: 32px;
  }
  .news-site-map-trigger {
    max-width: 100%;
  }
  .news-site-map-zoom-hint {
    right: 8px;
    bottom: 8px;
    padding: 6px 10px;
    font-size: 0.65rem;
  }
  .lightbox {
    padding: 16px;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}
