/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #006699;
  --blue-dark: #004f77;
  --blue-mid: #0080bb;
  --red: #bd1b44;
  --grey: #7f7f7f;
  --dark: #003d5c;
  --dark-2: #004d73;
  --light: #f4f6f9;
  --white: #ffffff;
  --text: #1c1c2e;
  --border: #e2e8f0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "helvetica-neue-lt-pro", "helvetica neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-family: "helvetica-neue-lt-pro", "helvetica neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  line-height: 1.08;
}

h3 {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
}

.section__strapline {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, #0099cc, #006699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section__strapline::before {
  content: '';
  display: block;
  width: 22px;
  height: 28px;
  background: url('/images/wing-only.png') center/contain no-repeat;
  flex-shrink: 0;
}

.section__headline {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 3.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  outline: none;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 102, 153, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: rgba(0, 102, 153, 0.4);
}

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

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

.btn--white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: #ffffff;
  border: 1px solid rgba(0, 102, 153, 0.1);
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 102, 153, 0.18);
}

.nav__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: 0.06em;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transform: translateZ(0);
  will-change: color;
}

.nav__links a:hover {
  color: var(--blue);
}

.nav__links .nav__cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(0, 102, 153, 0.4);
  color: var(--blue);
  border-radius: 6px;
  transition: all 0.2s;
}

.nav__links .nav__cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ---- Dropdown menus ---- */
.nav__item--dropdown {
  position: relative;
  align-self: stretch;
  /* stretch li to full nav height — keeps hover connected to dropdown */
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.38rem;
  cursor: pointer;
  height: 100%;
}

.nav__chevron {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  opacity: 0.65;
  transition: transform 0.25s ease;
}

.nav__item--dropdown:hover .nav__chevron,
.nav__item--dropdown.open .nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  list-style: none;
  padding: 8px 0 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 500;
}

/* Invisible hover bridge — fills the gap between nav link and dropdown */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav__item--dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav__dropdown-menu li {
  width: auto;
}

.nav__dropdown-menu li a {
  display: block !important;
  padding: 0.5rem 1.3rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  color: var(--text) !important;
  white-space: nowrap;
  border-bottom: none !important;
  transition: color 0.15s, background 0.15s !important;
}

.nav__dropdown-menu li a:hover {
  color: var(--blue) !important;
  background: rgba(0, 102, 153, 0.06) !important;
}

/* 2-column wide dropdown (Products & Industries) */
.nav__dropdown-menu--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 360px;
  left: 0;
  transform: translateY(-6px);
}

.nav__item--dropdown:hover .nav__dropdown-menu--wide {
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.45) 60%, rgba(10, 22, 40, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero__strapline {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
  background-clip: unset;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__strapline::before {
  content: '';
  display: block;
  width: 22px;
  height: 28px;
  background: url('/images/wing-only.png') center/contain no-repeat;
}

.hero__headline {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  margin-bottom: 3.5rem;
}

/* Inline hero stats */
.hero__stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  max-width: 520px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 2rem 0 0;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat-num {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  margin-right: 2rem;
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.hero__scroll span {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  animation: scrollPulse 2.2s 1.8s ease-in-out infinite;
}

/* Angled section divider from hero into marquee */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 0;
  z-index: 4;
}

/* ============================================================
   STATS BAR (kept for inner pages if needed)
   ============================================================ */
.stats {
  display: none;
}

/* Stats are now inline in the hero */

/* ============================================================
   INDUSTRIES — TABBED SECTION
   ============================================================ */
.ind-tabs {
  padding: 8rem 0 0;
  background: var(--white);
  position: relative;
}

.ind-tabs__container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ind-tabs__header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

/* Tab nav buttons */
.ind-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.ind-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.8rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.ind-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.ind-tab:hover {
  color: var(--dark);
}

.ind-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.ind-tab.active svg {
  opacity: 1;
}

/* Panels */
.ind-tabs__panels {
  position: relative;
}

.ind-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.ind-panel.active {
  display: grid;
}

/* Panel visual */
.ind-panel__visual {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.ind-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ind-panel:hover .ind-panel__visual img {
  transform: scale(1.04);
}

.ind-panel__visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
}

.ind-panel__visual-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ind-panel__visual--aerospace {
  background: #004d73;
}

.ind-panel__visual--defence {
  background: #4a0e1e;
}

.ind-panel__visual--motorsport {
  background: #5a2200;
}

.ind-panel__visual--marine {
  background: #002a5c;
}

.ind-panel__visual--space {
  background: #1a0050;
}

.ind-panel__visual--medical {
  background: #004d33;
}

.ind-panel__visual--industrial {
  background: #3a2a00;
}

/* Panel badge */
.ind-panel__badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid var(--blue);
  padding-left: 0.8rem;
}

.ind-panel__badge-num {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.ind-panel__badge-label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

/* Panel content */
.ind-panel__content {
  padding: 4rem 4rem 4rem 3.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--blue);
}

.ind-panel__tag {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.ind-panel__headline {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.ind-panel__desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.ind-panel__list {
  list-style: none;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ind-panel__list li {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}

.ind-panel__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* Old industry-card kept for inner pages */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-card:hover {
  background: var(--dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
  z-index: 2;
}

.industry-card:hover .industry-card__icon {
  color: var(--blue-mid);
  transform: translateY(-4px) scale(1.12);
}

.industry-card:hover h3 {
  color: var(--white);
}

.industry-card__icon {
  color: var(--blue);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 2.5rem;
  height: 2.5rem;
}

.industry-card__icon svg {
  width: 100%;
  height: 100%;
}

.industry-card h3 {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.3s;
}

/* ============================================================
   CASE STUDIES — NEW LAYOUT
   ============================================================ */
.case-studies {
  padding: 8rem 0;
  background: var(--light);
  position: relative;
}

.case-studies__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.case-studies__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.case-studies__header .section__headline {
  margin-bottom: 1rem;
}

.case-studies__header .section__headline em {
  font-style: normal;
  background: linear-gradient(90deg, #0099cc, #006699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-intro {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 440px;
}

/* Filter buttons */
.case-studies__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-self: end;
  justify-content: flex-end;
}

.cs-filter {
  padding: 0.55rem 1.1rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.cs-filter:hover {
  color: var(--dark);
  border-color: var(--dark);
}

.cs-filter.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Case study grid — featured left (2 rows), 2 stacked right, 2 across bottom */
.cs-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}

.case-study-card--featured {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.case-study-card--featured .case-study-card__image {
  flex: 1;
  height: auto;
  min-height: 180px;
}

.case-study-card--featured .case-study-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Right-side stacked cards — shorter image since cards are half the height */
.cs-grid > .case-study-card:nth-child(2) .case-study-card__image,
.cs-grid > .case-study-card:nth-child(3) .case-study-card__image {
  height: 135px;
}

/* Card base */
.case-study-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

/* Card image */
.case-study-card__image {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}


.case-study-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-study-card:hover .case-study-card__image img {
  transform: scale(1.05);
}

.case-study-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

/* Badge */
.cs-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--blue);
  color: var(--white);
}

.cs-badge--motorsport {
  background: #7f3500;
}

.cs-badge--defence {
  background: var(--red);
}

.cs-badge--marine {
  background: #003d77;
}

.cs-badge--space {
  background: #2c0072;
}

/* Card body */
.case-study-card__body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-study-card__tag {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 0.7rem;
}

.case-study-card__title {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}


.case-study-card__excerpt {
  font-size: 0.86rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Stat callouts */
.cs-stats {
  display: flex;
  gap: 1.8rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  margin-bottom: 1.4rem;
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cs-stat__num {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
}

.cs-stat__label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.case-study-card__link {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}

.case-study-card__link:hover {
  gap: 0.8rem;
  color: var(--dark);
}

/* Filter hide */
.case-study-card.cs-hidden {
  display: none;
}

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.trust-band__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-band__text {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--dark);
  line-height: 1.5;
}

.trust-band__text strong {
  font-weight: 400;
  color: var(--blue);
}

/* ============================================================
   CONTACT — SPLIT LAYOUT
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* Left red panel */
.contact-split__left {
  background: #bd1b44;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.contact-split__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 0, 0, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

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

.contact-split__left-inner {
  padding: 5rem 4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-split__strapline {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
  background-clip: unset !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.contact-split__strapline::before {
  display: none !important;
}

.contact-split__headline {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.contact-split__sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-split__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.contact-split__btn {
  justify-content: center;
}

/* Contact info */
.contact-split__info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-split__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-split__info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.contact-split__info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-split__info-item strong {
  font-family: "jaf-domus", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
}

.contact-split__info-item span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

/* Right form panel */
.contact-split__right {
  background: var(--light);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form__feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.form__feedback--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.form__feedback--error {
  background: #fff1f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.contact-split__form-title {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* Override form field styles for light bg */
.contact-split__right .form__group label {
  color: var(--grey);
}

.contact-split__right .form__group input,
.contact-split__right .form__group select,
.contact-split__right .form__group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.contact-split__right .form__group input::placeholder,
.contact-split__right .form__group textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.contact-split__right .form__group input:focus,
.contact-split__right .form__group select:focus,
.contact-split__right .form__group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 102, 153, 0.1);
}

.contact-split__right .form__group select option {
  background: var(--white);
  color: var(--text);
}

.contact-split__privacy {
  font-size: 0.76rem;
  color: var(--grey);
  margin-top: 1rem;
  text-align: center;
}

.contact-split__privacy a {
  color: var(--blue);
  text-decoration: none;
}

/* ============================================================
   FORM BASE STYLES (used by contact-split__right)
   ============================================================ */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form__row .form__group {
  margin-bottom: 0;
}

.form__group label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 1rem 1.1rem;
  font-family: "helvetica-neue-lt-pro", "helvetica neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--blue);
  background: rgba(0, 102, 153, 0.1);
  box-shadow: 0 4px 20px rgba(0, 102, 153, 0.15);
}

.form__group select option {
  background: var(--dark-2);
  color: var(--white);
}

.form__group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ============================================================
   FOOTER — multi-column
   ============================================================ */
.footer {
  background: #006699;
  padding: 0;
  border-top: 3px solid #004d80;
}

.footer__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.footer__brand {
  flex: 0 0 220px;
}

.footer__logo {
  font-family: "paralucent", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.footer__links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 1rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 0.55rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
}

.footer__copy a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__copy a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #001f30;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 9999;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner--hidden {
  transform: translateY(110%);
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  max-width: 680px;
  margin: 0;
}

.cookie-banner__text a {
  color: #66b3e0;
  text-decoration: underline;
  text-decoration-color: rgba(102, 179, 224, 0.4);
  transition: color 0.2s;
}

.cookie-banner__text a:hover {
  color: #99ccee;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.cookie-banner__btn--accept {
  background: #006699;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #0080bb;
}

.cookie-banner__btn--decline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 680px) {
  .footer__container {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem;
  }
  .footer__brand {
    flex: none;
    width: 100%;
  }
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
  }
  .cookie-banner {
    padding: 1.25rem 1.25rem;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================================================
   SCROLL REVEAL CLASSES (injected by JS)
   ============================================================ */
.reveal-hidden {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-from-bottom {
  transform: translateY(36px);
}

.reveal-from-left {
  transform: translateX(-36px);
}

.reveal-from-right {
  transform: translateX(36px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.96);
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  z-index: 500;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 102, 153, 0.7);
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s,
    border-color 0.3s,
    opacity 0.3s;
  top: -100px;
  left: -100px;
}

.cursor-ring.is-hovering {
  width: 56px;
  height: 56px;
  background: rgba(0, 102, 153, 0.1);
  border-color: var(--blue);
}

.cursor-ring.is-clicking {
  transform: translate(-50%, -50%) scale(0.85);
}

.cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
  top: -100px;
  left: -100px;
}

@media (hover: none) {

  .cursor-ring,
  .cursor-dot {
    display: none;
  }
}

/* ============================================================
   CO-REEL — 3D Company Carousel
   ============================================================ */
.co-reel {
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.6rem 0;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.co-reel__stage {
  perspective: 1100px;
  perspective-origin: center center;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.co-reel__track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.co-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 120px;
  margin-left: -100px;
  margin-top: -60px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.55s ease,
              border-color 0.55s ease,
              box-shadow 0.55s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.co-card--active {
  background: #ffffff;
  border-color: rgba(0, 102, 153, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.co-card__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  padding: 0 0.8rem;
  line-height: 1.2;
}

/* Text fallback for cards without a branded logo yet */
.co-card__name-text {
  font-family: "paralucent", "jaf-domus", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.3;
}


.co-reel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(0, 61, 92, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: rgba(0, 61, 92, 0.4);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  z-index: 20;
}

.co-reel__btn:hover {
  border-color: rgba(0, 102, 153, 0.55);
  color: #003d5c;
  background: rgba(0, 102, 153, 0.08);
}

.co-reel__btn--prev { left: 2rem; }
.co-reel__btn--next { right: 2rem; }

@media (max-width: 700px) {
  .co-reel__btn--prev { left: 0.5rem; }
  .co-reel__btn--next { right: 0.5rem; }
}

/* ============================================================
   HERO — italic accent on headline
   ============================================================ */
.hero__headline em {
  font-style: normal;
  background: linear-gradient(90deg, #0099cc, #006699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   WHY ISG SECTION
   ============================================================ */
.why-isg {
  padding: 8rem 0;
  background: #006699;
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
}

/* Subtle grid lines */
.why-isg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.why-isg__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.why-isg__header {
  max-width: 640px;
}

.why-isg__header .section__strapline {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82);
  background-clip: unset;
  color: rgba(255, 255, 255, 0.82);
}

.why-isg__header .section__strapline::before {
  background: rgba(255, 255, 255, 0.4);
  width: 28px;
  height: 1px;
}

.why-isg__header .section__headline {
  color: var(--white);
}

/* Responsive Supply icon — white */
.why-isg__card--accent .why-isg__icon {
  color: var(--white);
}

/* People First icon — white */
.why-isg__grid .why-isg__card:nth-child(3) .why-isg__icon {
  color: var(--white);
}

.why-isg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-isg__card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.why-isg__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.why-isg__card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.why-isg__card:hover::before {
  opacity: 1;
}

.why-isg__card--accent {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.why-isg__num {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s;
}

.why-isg__card:hover .why-isg__num {
  color: rgba(255, 255, 255, 0.07);
}

.why-isg__icon {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--white);
  margin-bottom: 1.8rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s;
}

.why-isg__card:hover .why-isg__icon {
  transform: scale(1.15);
  color: rgba(255, 255, 255, 0.85);
}

.why-isg__icon svg {
  width: 100%;
  height: 100%;
}

.why-isg__card h3 {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.why-isg__card p {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Active nav link */
.nav__links a.nav__active {
  color: var(--white) !important;
}


@media (max-width: 900px) {
  .cs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-study-card--featured {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .case-study-card--featured .case-study-card__image {
    height: 220px;
  }

  .cs-grid > .case-study-card:nth-child(2) .case-study-card__image,
  .cs-grid > .case-study-card:nth-child(3) .case-study-card__image {
    height: 170px;
  }
}

@media (max-width: 1024px) {
  .industries__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ind-panel {
    grid-template-columns: 1fr;
  }

  .ind-panel__visual {
    min-height: 360px;
  }

  .ind-panel__content {
    border-left: none;
    border-top: 4px solid var(--blue);
  }
}

@media (max-width: 900px) {
  .why-isg__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .case-studies__top {
    grid-template-columns: 1fr;
  }

  .case-studies__filters {
    justify-content: flex-start;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-split__left-inner {
    padding: 4rem 2.5rem;
  }

  .contact-split__right {
    padding: 4rem 2.5rem;
  }

  .trust-band__container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 102, 153, 0.1);
    border-radius: 0 0 14px 14px;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .nav__links .nav__cta {
    margin: 0.5rem 2rem;
    text-align: center;
    display: block;
  }

  .nav__burger {
    display: flex;
  }

  /* Mobile dropdowns */
  .nav__item--dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    justify-content: space-between;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    display: none;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: rgba(0, 102, 153, 0.04);
    padding: 0;
    min-width: 0;
    grid-template-columns: 1fr;
    z-index: auto;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__dropdown-menu--wide {
    min-width: 0;
    left: auto;
    grid-template-columns: 1fr;
  }

  .nav__item--dropdown.open .nav__dropdown-menu {
    display: block;
    visibility: visible;
  }

  .nav__dropdown-menu li a {
    padding: 0.85rem 3rem !important;
    font-size: 0.72rem !important;
  }

  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .case-study-card--featured {
    grid-column: 1;
    grid-row: auto;
  }

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

  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .hero__stats-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 100%;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    padding: 0;
  }

  .ind-tab {
    padding: 0.9rem 1.1rem;
    font-size: 0.65rem;
  }

  .ind-tab svg {
    display: none;
  }

  .ind-panel__content {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 540px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__scroll {
    display: none;
  }

  .ind-tabs__nav {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .contact-split__left-inner,
  .contact-split__right {
    padding: 3rem 1.5rem;
  }
}

/* ============================================================
   NAV — SOLID (inner pages always show nav bg)
   ============================================================ */
.nav--solid {
  /* Glass nav style is the same on all pages */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #003350 0%, #005a8c 35%, #006699 50%, #004d73 75%, #0a1e30 100%);
  background-size: 200% 200%;
  animation: heroGradientShift 12s ease infinite;
  overflow: hidden;
}

@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Soft radial light patches */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 70% 30%, rgba(0, 153, 221, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 85% 80%, rgba(126, 200, 232, 0.10) 0%, transparent 55%);
  pointer-events: none;
  animation: heroPulseGlow 8s ease-in-out infinite alternate;
}

@keyframes heroPulseGlow {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Fine grid overlay — circuit-board feel */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 30%, transparent 80%);
}

/* Floating geometric shapes */
.page-hero__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: heroFloat 18s ease-in-out infinite;
}

.page-hero__shape--1 {
  width: 320px; height: 320px;
  border: 1px solid rgba(0, 153, 221, 0.12);
  top: -60px; right: -40px;
  animation-delay: 0s;
}

.page-hero__shape--2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0, 153, 221, 0.06) 0%, transparent 70%);
  bottom: 20%; left: 8%;
  animation-delay: -4s;
  animation-duration: 22s;
}

.page-hero__shape--3 {
  width: 100px; height: 100px;
  border: 1px solid rgba(189, 27, 68, 0.10);
  top: 35%; right: 18%;
  animation-delay: -8s;
  animation-duration: 15s;
}

.page-hero__shape--4 {
  width: 60px; height: 60px;
  background: rgba(126, 200, 232, 0.06);
  top: 60%; left: 30%;
  animation-delay: -12s;
  animation-duration: 20s;
  border-radius: 4px;
  transform: rotate(45deg);
}

.page-hero__shape--5 {
  width: 240px; height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  bottom: -80px; right: 25%;
  animation-delay: -6s;
  animation-duration: 25s;
}

@keyframes heroFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  15%  { opacity: 1; }
  50%  { transform: translateY(-30px) scale(1.05); }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(0) scale(1); }
}

/* Animated accent line at bottom */
.page-hero__line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #006699, #0099dd, transparent);
  background-size: 200% 100%;
  animation: heroLineSweep 4s ease-in-out infinite;
}

@keyframes heroLineSweep {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.page-hero__container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__strapline {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
  background-clip: unset;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero__strapline .strapline-flag {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero__strapline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.page-hero__headline {
  font-family: "paralucent", sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 20px rgba(0, 20, 50, 0.2);
  animation: fadeUp 0.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero__headline em {
  font-style: normal;
  background: linear-gradient(90deg, #cce8ff, #7ec8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__sub,
.page-hero__body {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  animation: fadeUp 0.8s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: none;
}

.breadcrumb__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.breadcrumb a,
.breadcrumb span {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb .sep {
  color: var(--border);
  font-size: 0.6rem;
}

.breadcrumb .current {
  color: var(--text);
}

/* ============================================================
   CTA BANNER (shared)
   ============================================================ */
.cta-banner {
  background: var(--blue);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-banner__container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner__strapline {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.cta-banner__strapline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.cta-banner h2 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-intro {
  padding: 6rem 0 5rem;
  background: var(--white);
}

.products-intro__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.products-intro__lead {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.products-intro__body {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.9;
}

.products-intro__right {
  padding-top: 0.5rem;
}

.products-intro__right p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.products-intro__right p:last-child {
  margin-bottom: 0;
}

.products-grid-section {
  padding: 0 0 8rem;
  background: var(--white);
  position: relative;
}

.products-grid-section__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  padding: 2.8rem 2.2rem 3rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card:hover {
  border-color: rgba(0, 102, 153, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  color: var(--blue);
  margin-bottom: 2rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}

.product-card:hover .product-card__icon {
  transform: scale(1.1);
  color: var(--blue-mid);
}

.product-card__icon svg {
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: calc(100% + 4.4rem);
  margin: -2.8rem -2.2rem 2rem;
  height: 260px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.product-card__image--contain {
  background: #fff;
}

.product-card__image--contain img {
  object-fit: contain;
  padding: 1rem;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__name {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.product-card:hover .product-card__name {
  color: var(--blue);
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.78;
  flex: 1;
}

.product-card__link {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.product-card:hover .product-card__link {
  gap: 0.7rem;
}

/* Product card — circular image */
.product-card__circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover .product-card__circle {
  border-color: rgba(0, 102, 153, 0.3);
  box-shadow: 0 0 0 5px rgba(0, 102, 153, 0.07);
}
.product-card__circle img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

/* Product card — body text */
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin: 0 0 0.4rem;
}
.product-card__name {
  font-family: "paralucent", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.75rem;
}
.product-card__desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.75;
  flex: 1;
  margin: 0 0 1.5rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.product-card__cta:hover {
  gap: 0.65rem;
  color: var(--blue-dark);
}
.product-card__enquire {
  font-size: 0.8rem;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.product-card__enquire:hover {
  color: var(--blue);
}

/* ── Products filter bar ── */
.products-filter-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.products-filter-label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey);
  white-space: nowrap;
  flex-shrink: 0;
}
.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pf-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  line-height: 1.4;
}
.pf-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 102, 153, 0.1);
}
.pf-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 102, 153, 0.22);
}

/* ============================================================
   INDUSTRIES DETAIL PAGE
   ============================================================ */
.industries-page {
  padding: 6rem 0 8rem;
  background: var(--white);
}

.industries-page__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.industries-page__intro {
  max-width: 700px;
  margin-bottom: 5rem;
}

.industries-page__intro p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.85;
}

.industry-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border);
}

.industry-feature:last-child {
  border-bottom: none;
}

.industry-feature:nth-child(even) .industry-feature__visual {
  order: -1;
}

.industry-feature__visual {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.industry-feature__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Dark gradient overlay so icons/text stay readable over photos */
.industry-feature__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,10,22,0.72) 0%, rgba(0,30,55,0.55) 60%, rgba(0,60,100,0.38) 100%);
}

.industry-feature:hover .industry-feature__bg {
  transform: scale(1.04);
}

.industry-feature--aerospace .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #003d5c 60%, #006699 100%);
}

.industry-feature--defence .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #1a0a14 55%, #5a0028 100%);
}

.industry-feature--medical .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #002a1a 55%, #006644 100%);
}

.industry-feature--motorsport .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #1a0900 55%, #7f3500 100%);
}

.industry-feature--marine .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #00142e 55%, #003d77 100%);
}

.industry-feature--industrial .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #1a1200 55%, #4d3a00 100%);
}

.industry-feature--rail .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #1a0000 55%, #7a0e0e 100%);
}

.industry-feature--space .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #0a0620 55%, #2c0072 100%);
}

.industry-feature--energy .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #1a0e00 55%, #7f4000 100%);
}

.industry-feature--automotive .industry-feature__bg {
  background: linear-gradient(135deg, #060e1c 0%, #001a20 55%, #00556a 100%);
}

.industry-feature__icon-wrap {
  display: none;
}

.industry-feature__icon-large {
  display: none;
}

.industry-feature__corner {
  display: none;
}

.industry-feature__content {}

.industry-feature__tag {
  display: none;
}

.industry-feature h2 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.industry-feature h2::before {
  content: '';
  display: block;
  width: 26px;
  height: 32px;
  background: url('/images/wing-only.png') center/contain no-repeat;
  flex-shrink: 0;
}

.industry-feature__desc {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.industry-feature__challenges {}

.industry-feature__challenges h4 {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.industry-feature__challenges ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.industry-feature__challenges li {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.industry-feature__challenges li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 6rem 0 7rem;
  background: var(--white);
}

.about-story__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-story__lead {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--dark);
  line-height: 1.42;
  margin-bottom: 2rem;
}

.about-story__body {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

.about-story__body:last-child {
  margin-bottom: 0;
}

.about-story__right {}

.about-story__diploma {
  border-left: 3px solid var(--blue);
  padding: 2rem 2.2rem;
  background: var(--light);
  margin-bottom: 2rem;
}

.about-story__diploma p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.8;
}

.about-story__diploma strong {
  font-weight: 400;
  color: var(--text);
  font-family: "jaf-domus", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.6rem;
  color: var(--blue);
}

/* Timeline */
.timeline-section {
  padding: 7rem 0 9rem;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.timeline-section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline-section .section__strapline,
.tl-section .section__strapline {
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.timeline {
  position: relative;
  padding: 2rem 0 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 8%, var(--border) 92%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: start;
  margin-bottom: 2.5rem;
  gap: 0;
}

/* Odd items: content left, empty right */
.timeline-item__content {
  padding-top: 0.6rem;
}

.timeline-item:nth-child(odd) .timeline-item__content {
  grid-column: 1;
  text-align: right;
  padding-right: 2.5rem;
}

.timeline-item:nth-child(odd) .timeline-item__dot {
  grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-item__empty {
  grid-column: 3;
}

/* Even items: empty left, content right */
.timeline-item:nth-child(even) .timeline-item__empty {
  grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-item__dot {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-item__content {
  grid-column: 3;
  text-align: left;
  padding-left: 2.5rem;
}

.timeline-item__dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--light), 0 4px 20px rgba(0, 102, 153, 0.3);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.timeline-item:hover .timeline-item__dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--light), 0 8px 28px rgba(0, 102, 153, 0.5);
}

.timeline-item__dot span {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}

.timeline-item__content h4 {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.timeline-item:hover .timeline-item__content h4 {
  color: var(--blue);
}

.timeline-item__content p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.7;
}

/* Group companies */
.group-section {
  padding: 7rem 0 9rem;
  background: #006699;
  position: relative;
  overflow: hidden;
}

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

.group-section__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.group-section .section__strapline {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
  background-clip: unset;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.group-section .section__strapline::before {
  display: none;
}

.group-section .section__headline {
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
  margin-bottom: 3.5rem;
  clip-path: none !important;
  opacity: 1 !important;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.group-card {
  padding: 2.5rem 2rem 3rem;
  background: #006699;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.group-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.group-card:hover {
  background: #004f77;
  transform: translateY(-4px);
  z-index: 1;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.group-card:hover::after {
  transform: scaleX(1);
}

.group-card__num {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s;
}

.group-card:hover .group-card__num {
  color: rgba(0, 102, 153, 0.12);
}

.group-card__name {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.group-card__location {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.2rem;
}

.group-card__desc {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

/* ============================================================
   ADDITIONAL RESPONSIVE — inner pages
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .group-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-story__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .products-intro__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .industry-feature {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .industry-feature:nth-child(even) .industry-feature__visual {
    order: unset;
  }

  .timeline::before {
    left: 32px;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
  }

  .timeline-item:nth-child(odd) .timeline-item__content,
  .timeline-item:nth-child(even) .timeline-item__content {
    grid-column: 2;
    text-align: left;
    padding: 0.6rem 0 0 2rem;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) .timeline-item__dot,
  .timeline-item:nth-child(even) .timeline-item__dot {
    grid-column: 1;
  }

  .timeline-item__empty {
    display: none;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .group-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    padding: 9rem 2rem 6rem;
  }
}

@media (max-width: 540px) {
  .group-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCT / INDUSTRY INDIVIDUAL PAGES
   ============================================================ */
.page-hero--image {
  background-size: cover !important;
  background-position: center !important;
  min-height: 72vh;
}

.product-detail {
  padding: 6rem 0;
  background: var(--white);
}

.product-detail__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.product-detail__image {
  position: sticky;
  top: 120px;
}

.product-detail__image img {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--light);
  padding: 2.5rem;
}

.product-detail__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.product-detail__content p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.product-features {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 0.55rem;
}

.product-specs {
  padding: 5rem 0;
  background: var(--light);
}

.product-specs__container,
.related-products__container,
.product-applications__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.spec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 2rem 1.5rem;
}

.spec-card__label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.spec-card__value {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.spec-card__desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
}

.product-applications {
  padding: 5rem 0;
  background: var(--white);
}

.applications-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.application-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border: 1px solid var(--border);
  font-family: "jaf-domus", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}

.application-tag:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.related-products {
  padding: 5rem 0;
  background: var(--light);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.25s;
}

.related-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(0, 102, 153, 0.12);
  transform: translateY(-3px);
}

.related-card__label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.related-card__title {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.25;
}

.related-card__arrow {
  font-size: 1.1rem;
  color: var(--blue);
  margin-top: auto;
}

.product-card__explore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.product-card__explore:hover {
  gap: 0.7rem;
}

/* Industry pages */
.industry-overview {
  padding: 7rem 0;
  background: var(--white);
}

.industry-overview__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.industry-overview__lead {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.industry-overview__body {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.challenge-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.challenge-card {
  border-left: 3px solid var(--blue);
  padding: 1.2rem 1.5rem;
  background: var(--light);
}

.challenge-card h4 {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.challenge-card p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
}

.industry-products {
  padding: 6rem 0;
  background: var(--light);
}

.industry-products__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.industry-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.industry-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  padding: 1.8rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.25s;
}

.industry-product-card:hover {
  border-bottom-color: var(--blue);
  box-shadow: 0 6px 24px rgba(0, 102, 153, 0.1);
  transform: translateY(-2px);
}

.industry-product-card h4 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--dark);
}

.industry-product-card p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.5;
  flex: 1;
}

.industry-product-card .explore-link {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.industry-stats {
  padding: 4rem 0;
  background: var(--blue);
}

.industry-stats__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.industry-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.industry-stat__num {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}

.industry-stat__label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

.industry-card__explore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.industry-card:hover .industry-card__explore {
  color: var(--white);
}

.industry-card__explore:hover {
  gap: 0.7rem;
}

/* Partners page */
.partners-intro {
  padding: 6rem 0;
  background: var(--white);
}

.partners-intro__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partners-grid-section {
  padding: 5rem 0;
  background: var(--light);
}

.partners-grid-section__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.partner-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.6rem 2rem;
  transition: all 0.25s;
  cursor: default;
}

.partner-card:hover {
  background: var(--light);
}

.partner-card img {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: all 0.3s;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-card__name {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-align: center;
}

/* ============================================================
   COMPANIES OVERVIEW PAGE
   ============================================================ */
.companies-list {
  padding: 0 0 6rem;
  background: var(--light);
}

.companies-list__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.5rem 2rem 0;
}

/* Quick-jump nav strip */
.companies-intro {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.companies-intro__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.companies-intro__jump {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.companies-intro__jump-label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-right: 0.4rem;
  white-space: nowrap;
}
.companies-intro__jump a {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
  padding: 0.28rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.companies-intro__jump a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 102, 153, 0.04);
}

/* Company cards — scoped to overview page */
.companies-list .company-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.8rem 3rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.companies-list .company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}

.companies-list .company-card:hover {
  box-shadow: 0 16px 48px rgba(0, 61, 92, 0.12);
  transform: translateY(-3px);
}

.companies-list .company-card__num {
  display: none;
}

.companies-list .company-card__name {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.55rem;
  color: var(--dark);
  line-height: 1.2;
  margin: 0.2rem 0 0.5rem;
}

.companies-list .company-card__location {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.companies-list .company-card__markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.companies-list .market-tag {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.28rem 0.72rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--grey);
}

.companies-list .company-card__right h3 {
  font-family: "paralucent", sans-serif;
  font-weight: 400;
  font-size: 1.18rem;
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.companies-list .company-card__right p {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.companies-list .company-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0, 102, 153, 0.3);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.companies-list .company-card__link:hover {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
  gap: 0.55rem;
  text-decoration: none;
}

@media (max-width: 900px) {
  .companies-list .company-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.diploma-section {
  padding: 7rem 0;
  background: var(--dark);
}

.diploma-section__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.diploma-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.diploma-section p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.diploma-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.diploma-stat {
  border-left: 3px solid var(--blue);
  padding-left: 1.2rem;
}

.diploma-stat__num {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.diploma-stat__label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.3rem;
}

@media (max-width: 1024px) {
  .product-detail__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-detail__image {
    position: static;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-overview__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .company-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .diploma-section__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {

  .related-grid,
  .industry-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-stats__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 540px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid,
  .industry-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INDUSTRIES — ACCORDION + HOTSPOT SYSTEM
   ============================================================ */
.ind-accord {
  padding: 8rem 0 6rem;
  background-color: #f5f7fb;
  background-image:
    radial-gradient(ellipse at 5% 0%, rgba(0,102,153,0.07) 0%, transparent 50%),
    radial-gradient(circle, rgba(0,102,153,0.07) 1px, transparent 1px);
  background-size: auto, 28px 28px;
}

.ind-accord__container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ind-accord__hd {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.ind-accord__layout {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* ── Left nav list ── */
.ind-accord__nav {
  display: flex;
  flex-direction: column;
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

.ind-a-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  width: 100%;
}

.ind-a-btn:last-child {
  border-bottom: none;
}

.ind-a-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.ind-a-btn span {
  flex: 1;
}

.ind-a-btn__chev {
  width: 9px;
  height: 6px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: transform 0.25s ease, opacity 0.2s;
  margin-left: auto;
}

.ind-a-btn:hover {
  color: var(--dark);
  background: var(--light);
  border-left-color: var(--border);
}

.ind-a-btn:hover .ind-a-btn__icon {
  opacity: 0.8;
}

.ind-a-btn.active {
  color: var(--blue);
  background: #f0f7fc;
  border-left-color: var(--blue);
}

.ind-a-btn.active .ind-a-btn__icon {
  opacity: 1;
}

.ind-a-btn.active .ind-a-btn__chev {
  transform: rotate(90deg);
  opacity: 0.8;
}

/* ── Panel area ── */
.ind-accord__panels {
  flex: 1;
  min-height: 0;
  position: relative;
}


/* Side-by-side: image left | text right */
.ind-pane {
  display: none;
  grid-template-columns: 1fr 360px;
}

.ind-pane.active {
  display: grid;
}

/* ── Hotspot map (image + dots) ── */
.ind-pane__map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--dark);
}

.ind-pane__map--gradient {
  background: var(--ind-grad, var(--dark));
}

.hotspot-map {
  position: relative;
  width: 100%;
  height: 100%;
}

.hotspot-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gradient background panels get a subtle circuit-line SVG overlay */
.hotspot-map--no-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,102,153,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(0,102,153,0.08) 0%, transparent 50%);
}

/* ── Hotspot dots ── */
.hs {
  position: absolute;
  left: var(--hx, 50%);
  top: var(--hy, 50%);
  z-index: 10;
  transform: translate(-50%, -50%);
}

.hs__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 0 rgba(0,102,153,0.6);
  cursor: pointer;
  animation: hsPulse 2.4s ease-out infinite;
  transition: transform 0.2s ease;
}

.hs:hover .hs__dot {
  transform: scale(1.3);
  animation: none;
  box-shadow: 0 0 0 6px rgba(0,102,153,0.2);
}

@keyframes hsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,102,153,0.7); }
  60%  { box-shadow: 0 0 0 10px rgba(0,102,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,102,153,0); }
}

/* ── Hotspot tooltip ── */
.hs__tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: rgba(0, 30, 50, 0.96);
  border: 1px solid rgba(0,102,153,0.4);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(4px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hs:hover .hs__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.hs__tip strong {
  display: block;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6bbfdf;
  margin-bottom: 0.35rem;
}

.hs__tip p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
}

/* tooltip arrow */
.hs__tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0,102,153,0.4);
}

/* Position modifiers */
.hs__tip--below {
  bottom: auto;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-4px);
}
.hs:hover .hs__tip--below {
  transform: translateX(-50%) translateY(0);
}
.hs__tip--below::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: rgba(0,102,153,0.4);
}

.hs__tip--left {
  left: auto;
  right: calc(100% + 10px);
  transform: translateY(-50%) translateX(4px);
  top: 50%;
  bottom: auto;
}
.hs:hover .hs__tip--left {
  transform: translateY(-50%) translateX(0);
}
.hs__tip--left::after {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-top-color: transparent;
  border-left-color: rgba(0,102,153,0.4);
}

/* ── Panel body (right column next to map) ── */
.ind-pane__body {
  padding: 2rem 2.5rem 2.5rem;
  background: var(--white);
  border-left: 4px solid var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  overflow-y: auto;
}

.ind-pane__tag {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
}

.ind-pane__headline {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--dark);
  line-height: 1.12;
  margin: 0;
}

.ind-pane__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
}

.ind-pane__list li {
  font-size: 0.86rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.ind-pane__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* ── Industries accordion — responsive ── */
@media (max-width: 1100px) {
  .ind-pane { grid-template-columns: 1fr 320px; }
}
@media (max-width: 900px) {
  .ind-accord__layout { flex-direction: column; }
  .ind-accord__nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .ind-a-btn {
    width: auto;
    flex: 1 1 auto;
    border-left: none;
    border-bottom: 3px solid transparent;
    justify-content: center;
    font-size: 0.7rem;
    padding: 0.9rem 0.8rem;
  }
  .ind-a-btn.active {
    border-bottom-color: var(--blue);
    border-left-color: transparent;
    background: #f0f7fc;
  }
  .ind-a-btn__chev { display: none; }
  .ind-pane { grid-template-columns: 1fr; }
  .ind-pane__body { border-left: none; border-top: 4px solid var(--blue); }
  .ind-pane__map { min-height: 300px; }
}
@media (max-width: 600px) {
  .ind-pane__map { min-height: 220px; }
}

/* ============================================================
   CASE STUDIES — VIEW ALL + NEWS HEADER UPDATES
   ============================================================ */
.case-studies {
  background: var(--white);
}

.case-studies__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.case-studies__header .section__headline {
  margin-bottom: 0;
}

.cs-view-all {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}

.cs-view-all:hover {
  border-bottom-color: var(--blue);
  gap: 0.55rem;
}

.case-studies__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: flex-start;
}

/* News-style card top accent border */
.case-study-card {
  border-top: 3px solid var(--border);
}

.case-study-card[data-cat="aerospace"] { border-top-color: #006699; }
.case-study-card[data-cat="defence"]   { border-top-color: var(--red); }
.case-study-card[data-cat="motorsport"]{ border-top-color: #7f3500; }
.case-study-card[data-cat="marine"]    { border-top-color: #003d77; }
.case-study-card[data-cat="space"]     { border-top-color: #2c0072; }

/* ============================================================
   RESPONSIVE — ACCORDION + HOTSPOT
   ============================================================ */
@media (max-width: 900px) {
  .ind-accord__layout {
    flex-direction: column;
  }

  .ind-accord__nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .ind-a-btn {
    flex: 1 1 auto;
    min-width: 120px;
    border-left: none;
    border-bottom: 3px solid transparent;
    justify-content: center;
    padding: 0.9rem 0.8rem;
  }

  .ind-a-btn.active {
    border-bottom-color: var(--blue);
    border-left-color: transparent;
    background: #f0f7fc;
  }

  .ind-a-btn__chev {
    display: none;
  }

  .ind-pane__map {
    height: 240px;
  }

  .ind-pane__body {
    padding: 1.5rem 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .ind-accord__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ind-accord__nav::-webkit-scrollbar {
    display: none;
  }

  .ind-a-btn {
    min-width: 100px;
    white-space: nowrap;
  }

  .ind-a-btn__icon {
    display: none;
  }

  .ind-pane__map {
    height: 200px;
  }

  .case-studies__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}


/* ============================================================
   INDUSTRY PAGES — JOURNEY / PROCESS SECTION
   ============================================================ */
.ind-journey {
  padding: 6rem 0;
  background: var(--dark);
}

.ind-journey__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ind-journey .section__strapline {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
  background-clip: unset;
  color: rgba(255, 255, 255, 0.7);
}

.ind-journey .section__strapline::before {
  background: rgba(255,255,255,0.3);
  width: 28px;
  height: 1px;
}

.ind-journey .section__headline {
  color: var(--white);
  margin-bottom: 3rem;
}

.ind-journey__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.ind-journey__steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(2rem + 14px);
  right: calc(2rem + 14px);
  height: 1px;
  background: linear-gradient(90deg, rgba(0,102,153,0.5), rgba(0,153,204,0.5), rgba(0,102,153,0.5));
  z-index: 0;
}

.ind-journey__step {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.ind-journey__step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid rgba(0,153,204,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.ind-journey__step-body h3 {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.ind-journey__step-body p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .ind-journey__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .ind-journey__steps::before {
    display: none;
  }
  .ind-journey__step {
    padding: 0;
  }
}

@media (max-width: 540px) {
  .ind-journey__steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INDUSTRY PAGES — CHALLENGE CARDS (NUMBERED)
   ============================================================ */
.industry-overview__right {
  counter-reset: challenge;
}

.challenge-card {
  counter-increment: challenge;
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 4rem;
  border-left: 3px solid var(--border);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.challenge-card:hover {
  border-left-color: var(--blue);
}

.challenge-card::before {
  content: '0' counter(challenge);
  position: absolute;
  left: 0.9rem;
  top: 1.3rem;
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--blue);
  opacity: 0.5;
  line-height: 1;
}

/* ============================================================
   PRODUCT PAGES — STATS BAR
   ============================================================ */
.prod-stats {
  background: var(--dark);
  padding: 2rem 0;
}

.prod-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.prod-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.prod-stat:last-child {
  border-right: none;
}

.prod-stat__val {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.prod-stat__label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 680px) {
  .prod-stats__inner {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .prod-stat {
    flex: 1 1 40%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
  }
  .prod-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ============================================================
   COMPANY DETAIL PAGES
   ============================================================ */

.company-profile {
  padding: 5rem 0;
  background: var(--white);
}

.company-profile__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.company-profile__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.company-profile__sidebar {
  position: sticky;
  top: 100px;
}

.company-profile__num {
  font-family: "paralucent", sans-serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin: 0 0 1.5rem;
}

.company-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.company-profile__details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.company-profile__detail-label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin: 0 0 0.25rem;
}

.company-profile__detail-val {
  font-size: 0.9rem;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.company-profile__body h2 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  line-height: 1.12;
  margin: 0 0 1.5rem;
}

.company-profile__body > p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.company-profile__body h3 {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin: 2rem 0 1rem;
}

.company-capability-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.company-capability-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
}

.company-capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* ── Other companies grid ── */
.company-siblings {
  padding: 5rem 0;
  background: var(--light);
}

.company-siblings__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.company-siblings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.company-sibling-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: block;
}

.company-sibling-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(0,102,153,0.1);
  transform: translateY(-2px);
}

.company-sibling-card__num {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin: 0 0 0.5rem;
}

.company-sibling-card__name {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--dark);
  margin: 0 0 0.35rem;
}

.company-sibling-card__loc {
  font-size: 0.82rem;
  color: var(--grey);
  margin: 0;
}

@media (max-width: 900px) {
  .company-profile__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .company-profile__sidebar { position: static; display: flex; flex-direction: row; flex-wrap: wrap; gap: 2rem; align-items: flex-start; }
  .company-profile__num { font-size: 3.5rem; margin-bottom: 0; }
  .company-siblings__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .company-siblings__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT CATEGORIES SECTION
   ============================================================ */
.prod-categories {
  padding: 5rem 2.5rem;
  background: #fff;
}
.prod-categories__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .prod-cat-grid { grid-template-columns: 1fr; }
}
.prod-cat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 2rem 2.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.prod-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--blue);
}
.prod-cat-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.prod-cat-card__icon svg {
  width: 22px;
  height: 22px;
}
.prod-cat-card h3 {
  font-family: "paralucent", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 0.6rem;
  transition: color 0.2s;
  line-height: 1.3;
}
.prod-cat-card:hover h3 { color: var(--blue); }
.prod-cat-card__rule {
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-bottom: 0.9rem;
  transition: width 0.25s ease;
}
.prod-cat-card:hover .prod-cat-card__rule { width: 52px; }
.prod-cat-card p {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ── Company card profile link ── */
.company-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s ease;
  gap: 0.3rem;
}
.company-card__link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

/* ============================================================
   MAGIC TOUCHES — Polish & Micro-interactions
   ============================================================ */

/* Brand text selection */
::selection {
  background: rgba(0, 102, 153, 0.15);
  color: inherit;
}

/* Clean focus ring */
:focus-visible {
  outline: 2px solid rgba(0, 102, 153, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Card shine sweep on hover ---------- */
.case-study-card { position: relative; }

.case-study-card::after,
.why-isg__card::after,
.group-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 3;
}

.case-study-card:hover::after,
.why-isg__card:hover::after,
.group-card:hover::after {
  transform: translateX(220%);
}

/* ---------- Footer link underline draw ---------- */
.footer__col a {
  position: relative;
  display: inline;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.footer__col a:hover {
  color: #ffffff;
}
.footer__col a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.25s ease;
}
.footer__col a:hover::after {
  width: 100%;
}

/* ---------- Nav logo hover scale ---------- */
.nav__logo-img {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

/* ---------- Current page nav link ---------- */
.nav__links a.nav__current:not(.nav__cta) {
  color: var(--blue);
}

/* ---------- Scroll-to-top button ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s, box-shadow 0.3s;
  z-index: 900;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 102, 153, 0.3);
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 102, 153, 0.45);
}



/* ============================================================
   COMPANY AVAILABILITY SECTION (Product Pages)
   ============================================================ */
/* Section label gradient — overrides inline product page styles */
.section-label {
  background: linear-gradient(90deg, #0099cc, #006699) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.companies-section {
  padding: 4rem 2.5rem;
  background: #f8fafc;
  border-top: 3px solid #0080bb;
}
.companies-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.company-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #0080bb;
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.company-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,102,153,0.13);
  border-left-color: #0099cc;
  border-color: #0080bb;
}
.company-card__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #006699, #0099cc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.company-card__icon svg {
  width: 20px;
  height: 20px;
}
.company-card__body {
  flex: 1;
  min-width: 0;
}
.company-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c2e;
  margin: 0 0 0.3rem;
}
.company-card__desc {
  font-size: 0.82rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}
.company-card__link {
  font-size: 0.78rem;
  color: #0080bb;
  font-weight: 600;
}
.company-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.company-card__tag--manufacturer {
  background: #ecfdf5;
  color: #059669;
}
.company-card__tag--distributor {
  background: #eff6ff;
  color: #2563eb;
}

/* ============================================================
   ISG SERVICES & VALUE-ADD SECTION
   ============================================================ */
.isg-services {
  background: linear-gradient(180deg, #f8fafd 0%, #eef2f8 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.isg-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #0080bb 40%, var(--red) 80%, transparent);
}
.isg-services__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.isg-services__hd {
  text-align: center;
  margin-bottom: 60px;
}
.isg-services__sub {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}
.isg-services__sub strong { font-weight: 600; color: var(--dark); }

/* Service Cards */
.isg-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.isg-scard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.isg-scard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #0080bb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.isg-scard:hover { box-shadow: 0 16px 48px rgba(0,102,153,0.12); transform: translateY(-4px); border-color: #c8d8ea; }
.isg-scard:hover::before { transform: scaleX(1); }
.isg-scard__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #f0f6fb, #e5eef6);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--blue);
}
.isg-scard__icon svg { width: 26px; height: 26px; }
.isg-scard__label {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.isg-scard__title {
  font-family: "paralucent", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.isg-scard__body {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
}
.isg-scard__tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.isg-scard__tags li {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--blue);
  background: #f0f6fb;
  border: 1px solid #d0e4f0;
  border-radius: 20px;
  padding: 4px 12px;
}
.isg-scard__tags li::before { content: '✓'; font-size: 0.65rem; }
.isg-scard__stat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: #4a5568;
  padding-top: 20px;
  border-top: 1px solid var(--light);
}
.isg-scard__stat strong {
  font-family: "paralucent", sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--blue);
}

/* Why-choose dark strip */
.isg-services__why {
  background: #006699;
  border-radius: 20px;
  padding: 52px;
  margin-bottom: 40px;
  position: relative; overflow: hidden;
}
.isg-services__why::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.isg-services__why-eyebrow {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.isg-services__why-title {
  font-family: "paralucent", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.3;
  position: relative; z-index: 1;
}
.isg-services__usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative; z-index: 1;
}
.isg-usp {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.isg-usp:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.isg-usp__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.isg-usp__icon svg { width: 20px; height: 20px; }
.isg-usp strong { display: block; font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 5px; }
.isg-usp p { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* Certs bar */
.isg-services__certs {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px 20px;
  padding: 24px 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 40px;
  font-size: 0.82rem; font-weight: 600; color: #4a5568;
}
.isg-services__certs span { display: flex; align-items: center; gap: 8px; }
.isg-cert-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; display: inline-block; }
.isg-cert-sep { width: 1px; height: 18px; background: var(--border); display: inline-block; }

/* CTA row */
.isg-services__cta { text-align: center; }
.isg-services__cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.isg-services__cta-btn:hover { background: #a01739; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(189,27,68,0.4); }
.isg-services__cta-btn svg { width: 16px; height: 16px; }
.isg-services__cta-note { margin-top: 14px; font-size: 0.78rem; color: var(--grey); }

/* ============================================================
   ISG GLOBAL PRESENCE SECTION
   ============================================================ */
.isg-global {
  background: #f4f6f9;
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.isg-global::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #0080bb 40%, var(--red) 80%, transparent);
}
.isg-global__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.isg-global__hd { text-align: center; margin-bottom: 48px; }
.isg-global__strapline { color: var(--blue) !important; -webkit-text-fill-color: transparent !important; background: linear-gradient(90deg, #0099cc, var(--blue)) !important; -webkit-background-clip: text !important; background-clip: text !important; }
.isg-global__strapline::before { background: url('/images/wing-only.png') center/contain no-repeat !important; }
.isg-global__headline { color: var(--dark) !important; }
.isg-global__sub { font-size: 1rem; color: #4a5568; max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* Stats */
.isg-global__stats {
  display: flex; align-items: stretch; justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 2px 12px rgba(0,102,153,0.06);
}
.isg-gstat { flex: 1; text-align: center; padding: 22px 12px; }
.isg-gstat__num { display: block; font-family: "paralucent", sans-serif; font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 700; color: var(--blue); line-height: 1; }
.isg-gstat__label { display: block; font-family: "jaf-domus", sans-serif; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-top: 6px; }
.isg-gstat__sep { width: 1px; background: var(--border); align-self: stretch; }

/* Map */
.isg-global__map-wrap { margin-bottom: 44px; }
#isg-worldmap { width: 100%; height: 520px; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

/* Location grid */
.isg-global__locs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.isg-loc {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.isg-loc:hover { background: #f0f6fb; border-color: #c8d8ea; box-shadow: 0 4px 12px rgba(0,102,153,0.08); }
.isg-loc--hq { border-color: rgba(189,27,68,0.25); background: rgba(189,27,68,0.03); }
.isg-loc--hq:hover { background: rgba(189,27,68,0.07); border-color: rgba(189,27,68,0.35); }
.isg-loc__flag { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.isg-loc strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
.isg-loc p { font-size: 0.75rem; color: var(--grey); margin-top: 3px; }
.isg-loc__hq {
  display: inline-block;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
  background: rgba(189,27,68,0.15);
  border: 1px solid rgba(189,27,68,0.3);
  border-radius: 4px;
  padding: 2px 6px; margin-left: 6px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 1024px) {
  .isg-services__usp-grid { grid-template-columns: repeat(2, 1fr); }
  .isg-global__locs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .isg-services__grid { grid-template-columns: 1fr; }
  .isg-services__container, .isg-global__inner { padding: 0 24px; }
  .isg-services__why { padding: 36px 24px; }
  .isg-services__usp-grid { grid-template-columns: 1fr; }
  .isg-services__certs { padding: 20px; }
  .isg-cert-sep { display: none; }
  .isg-global__locs { grid-template-columns: 1fr; }
  .isg-global__stats { flex-wrap: wrap; }
  .isg-gstat { flex: 1 1 40%; }
  #isg-worldmap { height: 360px; }
}


/* ===== TE UAV RANGE SECTION ===== */
.te-uav-range {
  padding: 6rem 0;
  background: var(--dark);
}
.te-uav-range__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.te-uav-range__hd {
  max-width: 700px;
  margin-bottom: 3rem;
}
.te-uav-range .section__strapline {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: rgba(255,255,255,0.6);
  background-clip: unset;
  color: rgba(255,255,255,0.6);
}
.te-uav-range .section__strapline::before {
  background: rgba(255,255,255,0.25);
  width: 28px;
  height: 1px;
}
.te-uav-range .section__headline {
  color: #fff;
  margin-bottom: 1rem;
}
.te-uav-range__intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-top: 1rem;
}
.te-uav-range__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.te-uav-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid #006699;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.te-uav-card__label {
  font-family: 'jaf-domus', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.65rem;
}
.te-uav-card__name {
  font-family: 'paralucent', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.te-uav-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}
.te-uav-card__specs {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.te-uav-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.te-uav-card__specs li span {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  flex-shrink: 0;
}
.te-uav-range__footer {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.te-uav-range__partner-logo {
  opacity: 0.35;
  filter: brightness(10);
  height: 22px;
  width: auto;
}
.te-uav-range__cta {
  font-family: 'jaf-domus', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.te-uav-range__cta:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
@media (max-width: 960px) {
  .te-uav-range__grid { grid-template-columns: 1fr; }
}
