/* STRALT Industries — Brand Design System */

/* Self-hosted Inter (latin) — font-display: swap for CWV */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-800-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-800-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #de0000;
  --red-dark: #b80000;
  --red-light: #ff1a1a;
  --white: #ffffff;
  --black: #020202;
  --grey: #a2a2a2;
  --grey-light: #f5f5f5;
  --grey-border: #e5e5e5;
  --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 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; }
section.bg-grey { background: var(--grey-light); }
section.bg-stralt-grey {
  position: relative;
  background-color: var(--grey);
  background-image: url('../assets/images/industries-bg-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--black);
}
section.bg-stralt-grey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: 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(--red);
  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;
}
.section-header p { color: var(--grey); 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(--black);
  opacity: 0.85;
}
.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: #4c4c4c;
  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(--red);
}

/* 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(--red);
}
.bg-black .values-header .section-tag {
  color: var(--red);
  opacity: 1;
  letter-spacing: 0.12em;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--red);
  padding: 32px 0;
}
.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: var(--white);
  border: 1px solid var(--grey);
  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(--black);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 0.8rem;
  color: #666;
  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 rgba(2, 2, 2, 0.12);
  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;
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--grey);
  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 > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.industry-card > picture .industry-card-bg {
  position: absolute;
}
.industry-card:hover .industry-card-bg {
  transform: scale(1.05);
}
.industry-card-bg--pending {
  background: linear-gradient(160deg, #e8e8e8 0%, #b0b0b0 100%);
}
.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(--grey); line-height: 1.7; }

/* About — strengths & values infographic layout */
.about-intro {
  padding-bottom: 24px;
}
.about-intro .prose p {
  color: var(--black);
  font-weight: 500;
}
.about-holdings-img {
  margin: 48px auto 0;
  max-width: 720px;
}
.about-holdings-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-pillars {
  padding-top: 24px;
}
.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(--black);
  opacity: 0.82;
  margin: 0;
}

/* Homepage — services grid + sister company CTA over shared background */
.home-services-page {
  position: relative;
  background-color: var(--grey-light);
  background-image: url('../assets/images/industries-bg-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-services-page .bg-stralt-grey {
  background-image: none;
  background-color: transparent;
}
.home-services-page .cta-band {
  position: relative;
  background: transparent;
}
.home-services-page .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(222, 0, 0, 0.82);
  pointer-events: none;
}
.home-services-page .cta-band > .container {
  position: relative;
  z-index: 1;
}

/* Sectors page — content + CTA over shared background */
.sectors-page-block {
  position: relative;
  background-color: var(--grey-light);
  background-image: url('../assets/images/sectors-page-bg-desktop.jpg?v=20260705c');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sectors-page-block .sectors-page {
  position: relative;
  background: transparent;
}
.sectors-page-block .sectors-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.sectors-page-block .sectors-page > .container {
  position: relative;
  z-index: 1;
}
.sectors-page-block .cta-band {
  position: relative;
  background: transparent;
}
.sectors-page-block .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(222, 0, 0, 0.82);
  pointer-events: none;
}
.sectors-page-block .cta-band > .container {
  position: relative;
  z-index: 1;
}
.sectors-page-block .prose p {
  color: var(--black);
  font-weight: 500;
}
.sectors-page-block .prose h2 {
  color: var(--black);
}

/* ── Sister company banner ── */
.sister-cta-band .sister-banner {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--white);
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sister-cta-band .sister-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}
.sister-cta-band .sister-banner-content h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-bottom: 12px;
}
.sister-cta-band .sister-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.sister-cta-band .sister-banner-logo {
  border: 2px solid var(--white);
  margin-bottom: 0;
}
.sister-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  background: var(--grey-light);
  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: #333; margin-bottom: 16px; }

/* ── 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 picture {
  display: block;
  width: 100%;
  height: 100%;
}
.content-img.placeholder,
.content-img--pending {
  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;
}
.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;
}
.prose p { color: var(--grey); 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(--grey);
}
.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 page */
.technologies-page {
  position: relative;
  background-color: var(--grey-light);
  background-image: url('../assets/images/technologies-compliance-bg-desktop.jpg?v=20260704a');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.technologies-page-content {
  position: relative;
}
.technologies-page-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.technologies-page-content > .container {
  position: relative;
  z-index: 1;
}
.technologies-page .technologies-prose p {
  color: var(--black);
  font-weight: 500;
}
.technologies-page .technologies-prose h2 {
  color: var(--black);
}
.technologies-page .cta-band {
  position: relative;
  background: transparent;
}
.technologies-page .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(222, 0, 0, 0.82);
  pointer-events: none;
}
.technologies-page .cta-band > .container {
  position: relative;
  z-index: 1;
}

/* Industries hub page — services grid + CTA over shared background */
.industries-page {
  position: relative;
  background-color: var(--grey-light);
  background-image: url('../assets/images/industries-page-bg-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industries-page-grid {
  position: relative;
}
.industries-page-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.industries-page-grid > .container {
  position: relative;
  z-index: 1;
}
.industries-page .cta-band {
  position: relative;
  background: transparent;
}
.industries-page .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(222, 0, 0, 0.82);
  pointer-events: none;
}
.industries-page .cta-band > .container {
  position: relative;
  z-index: 1;
}

/* About page — intro, pillars + CTA over shared background */
.about-page {
  position: relative;
  background-color: var(--grey-light);
  background-image: url('../assets/images/about-page-bg-desktop.jpg?v=20260704a');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-page-content {
  position: relative;
}
.about-page-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.about-page-content > section {
  position: relative;
  z-index: 1;
}
.about-page .cta-band {
  position: relative;
  background: transparent;
}
.about-page .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(222, 0, 0, 0.82);
  pointer-events: none;
}
.about-page .cta-band > .container {
  position: relative;
  z-index: 1;
}

.technologies-logo-wrap {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.technologies-brand-logo {
  width: 100%;
  height: auto;
  margin: 0 auto 28px;
  display: block;
  padding: 20px 24px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  box-sizing: border-box;
}
.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: 48px auto 0;
  text-align: center;
}
.technologies-partner-logos {
  margin-top: 28px;
  display: inline-block;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 24px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  box-sizing: border-box;
}
.technologies-partner-logos img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.technologies-iso-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.technologies-iso-logos img {
  width: 120px;
  height: auto;
  display: block;
  padding: 14px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  box-sizing: content-box;
}
.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: 0;
}
.technologies-harness-video + .technologies-page .technologies-page-content .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: 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: 2px;
  position: static;
}
.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(--black);
  line-height: 1.55;
  font-size: 0.95rem;
  opacity: 0.82;
}

/* ── Contact ── */
.contact-page {
  position: relative;
  background-color: var(--grey-light);
  background-image: url('../assets/images/contact-page-bg-desktop.jpg?v=20260704a');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.contact-page > .container {
  position: relative;
  z-index: 1;
}
.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(--black);
  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-detail-value {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-detail-sublinks {
  display: flex;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.contact-detail-sublinks a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-detail-sublinks a:hover {
  color: var(--red);
}
.contact-map {
  margin-top: 40px;
}

/* Floating WhatsApp CTA */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(2, 2, 2, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 2, 2, 0.34);
  outline: none;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

/* WhatsApp inquiry modal */
body.wa-modal-open {
  overflow: hidden;
}
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wa-modal[hidden] {
  display: none;
}
.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.55);
}
.wa-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
  box-shadow: 0 20px 48px rgba(2, 2, 2, 0.28);
  padding: 28px 28px 24px;
}
.wa-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--grey);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.wa-modal__close:hover,
.wa-modal__close:focus-visible {
  color: var(--black);
  outline: none;
}
.wa-modal__header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-right: 28px;
}
.wa-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  flex-shrink: 0;
}
.wa-modal__icon svg {
  width: 24px;
  height: 24px;
}
.wa-modal__header h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: var(--black);
}
.wa-modal__header p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.45;
}
.wa-form .form-group {
  margin-bottom: 16px;
}
.wa-form input.is-invalid,
.wa-form textarea.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(222, 0, 0, 0.12);
}
.wa-field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
}
.wa-message-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
}
.wa-char-count {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--grey);
  white-space: nowrap;
}
.wa-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  margin-top: 4px;
}
.wa-submit:hover,
.wa-submit:focus-visible {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}
.wa-submit svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .wa-modal {
    padding: 12px;
    align-items: flex-end;
  }
  .wa-modal__panel {
    width: 100%;
    max-height: min(92vh, 720px);
    padding: 22px 18px 18px;
    border-radius: 16px 16px 12px 12px;
  }
  .wa-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── News ── */
.news-page {
  position: relative;
  background-color: var(--grey-light);
  background-image: url('../assets/images/news-page-bg-desktop.jpg?v=20260705b');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.news-page > .container {
  position: relative;
  z-index: 1;
}
.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);
  border: 1px solid rgba(222, 0, 0, 0.18);
  box-shadow: 0 8px 32px rgba(222, 0, 0, 0.22), 0 2px 12px rgba(222, 0, 0, 0.14);
}
.news-image-link img,
.news-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}
.news-image-link picture,
.news-image picture,
.news-site-map-trigger picture {
  display: block;
  width: 100%;
}
.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(--grey);
  line-height: 1.75;
  margin: 0;
}
.news-body p {
  font-size: 1.025rem;
  color: var(--grey);
  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(--grey);
  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(--grey);
  line-height: 1.8;
  padding: 32px 36px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--grey-light);
}

/* ── 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);
}
.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; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-note { font-size: 0.8rem; color: var(--grey); 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(--white);
  color: var(--black);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.footer-brand img {
  height: 80px;
  width: auto;
  max-width: 280px;
  display: block;
}
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.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(--grey);
}
.footer-address {
  line-height: 1.65;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--black);
  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(--grey);
}
.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;
  }
  .home-services-page {
    background-image: url('../assets/images/industries-bg-mobile.jpg');
  }
  .home-services-page .cta-band::before {
    background: rgba(222, 0, 0, 0.88);
  }
  .sectors-page-block {
    background-image: url('../assets/images/sectors-page-bg-mobile.jpg?v=20260705c');
  }
  .sectors-page-block .sectors-page::before {
    background: rgba(255, 255, 255, 0.72);
  }
  .sectors-page-block .cta-band::before {
    background: rgba(222, 0, 0, 0.88);
  }
  .contact-page {
    background-image: url('../assets/images/contact-page-bg-mobile.jpg?v=20260704a');
  }
  .contact-page::before {
    background: rgba(255, 255, 255, 0.72);
  }
  .technologies-page {
    background-image: url('../assets/images/technologies-compliance-bg-mobile.jpg?v=20260704a');
  }
  .technologies-page-content::before {
    background: rgba(255, 255, 255, 0.72);
  }
  .technologies-page .cta-band::before {
    background: rgba(222, 0, 0, 0.88);
  }
  .industries-page {
    background-image: url('../assets/images/industries-page-bg-mobile.jpg');
  }
  .industries-page-grid::before {
    background: rgba(255, 255, 255, 0.72);
  }
  .industries-page .cta-band::before {
    background: rgba(222, 0, 0, 0.88);
  }
  .about-page {
    background-image: url('../assets/images/about-page-bg-mobile.jpg?v=20260704a');
  }
  .about-page-content::before {
    background: rgba(255, 255, 255, 0.72);
  }
  .about-page .cta-band::before {
    background: rgba(222, 0, 0, 0.88);
  }
  .news-page {
    background-image: url('../assets/images/news-page-bg-mobile.jpg?v=20260705b');
  }
  .news-page::before {
    background: rgba(255, 255, 255, 0.72);
  }

  .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; }
  .technologies-partner-logos img { max-width: 100%; }
  .technologies-cert-logos { margin-top: 32px; }
  .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: #3a3a3a; }
}

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

/* ── 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(--grey);
  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(--grey);
  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 rgba(222, 0, 0, 0.14);
  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--services {
  background: linear-gradient(135deg, var(--grey-light) 0%, var(--white) 52%);
  box-shadow: inset 4px 0 0 var(--black);
  border-color: var(--grey-border);
}
.booking-choice-panel--stralt-industries {
  background: linear-gradient(135deg, rgba(222, 0, 0, 0.04) 0%, var(--white) 48%);
  box-shadow: inset 4px 0 0 var(--red);
}
.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(--grey);
  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--services .booking-choice-panel__eyebrow {
  color: var(--grey);
}
.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(--grey);
  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-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.booking-service-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  column-gap: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}
.booking-service-option input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--red);
  flex-shrink: 0;
}
.booking-service-option span {
  display: block;
}
.booking-services-fieldset {
  border: none;
  padding: 0;
}
.booking-services-fieldset legend {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.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(--grey);
  padding: 24px 0;
}
.booking-success {
  text-align: center;
}
.booking-success .booking-step-title { margin-bottom: 16px; }
.booking-success p { color: var(--grey); 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(--grey);
  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) {
  .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;
  }
}

/* Admin bookings */
.admin-page .form-card,
.admin-dashboard { max-width: 900px; margin: 0 auto; }
.admin-page .btn-outline {
  color: var(--black);
  border-color: var(--grey-border);
  background: var(--white);
}
.admin-page .btn-outline:hover {
  background: rgba(222, 0, 0, 0.06);
  color: var(--red);
  border-color: var(--red);
}
.admin-panel-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.admin-panel-desc {
  color: var(--grey);
  margin-bottom: 24px;
}
.admin-show-password {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  user-select: none;
}
.admin-show-password input {
  width: auto;
  margin: 0;
  accent-color: var(--red);
}
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.admin-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.admin-filter select {
  padding: 8px 12px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
}
.admin-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.admin-booking-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.admin-booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.admin-booking-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
}
.admin-booking-status {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: var(--radius);
}
.admin-booking-status--pending { background: rgba(222, 0, 0, 0.1); color: var(--red); }
.admin-booking-status--approved { background: rgba(0, 128, 0, 0.1); color: #0a6b0a; }
.admin-booking-status--declined { background: var(--grey-light); color: var(--grey); }
.admin-booking-card p { margin-bottom: 8px; color: var(--black); }
.admin-booking-meta {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 12px;
}
.admin-booking-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.admin-delete {
  color: var(--red-dark);
  border-color: rgba(222, 0, 0, 0.35);
}
.admin-delete:hover {
  background: rgba(222, 0, 0, 0.06);
  border-color: var(--red);
}
.admin-rep-assign {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-border);
}
.admin-rep-hint {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
}

@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; }
  .booking-services { grid-template-columns: 1fr; }
  .admin-booking-header { flex-direction: column; }
}
