/* ============================================================
   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;
  color: var(--blue);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section__strapline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue);
  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); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.8rem 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(0,61,92,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav__container {
  max-width: 1240px; margin: 0 auto; padding: 0 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(--white); letter-spacing: 0.06em;
}
.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: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links .nav__cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white); transition: all 0.2s;
}
.nav__links .nav__cta:hover { background: var(--blue); border-color: var(--blue); }
.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(--white); 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%;             /* flush to li bottom — no gap to lose hover over */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 6px 6px;
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 500;
}
.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: rgba(255,255,255,0.65) !important;
  white-space: nowrap;
  border-bottom: none !important;
  transition: color 0.15s, background 0.15s !important;
}
.nav__dropdown-menu li a:hover {
  color: var(--white) !important;
  background: rgba(0,102,153,0.3);
}

/* 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.78rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--blue); 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: 28px; height: 1px; background: var(--blue); }
.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.6); 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;
}
.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 stats */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--blue);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 4;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--blue);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
/* Subtle dot grid texture */
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Angled exit into industries */
.stats::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 20%, 100% 100%);
}
.stats__container {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.stats__item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1rem;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.stats__number {
  font-family: "paralucent", sans-serif; font-weight: 300;
  font-size: 3.8rem; color: var(--white);
  line-height: 1; margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.stats__label {
  font-family: "jaf-domus", sans-serif; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { padding: 6rem 0 8rem; background: var(--white); position: relative; }
.industries__container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.industries__header { max-width: 640px; }

.industries__grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.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
   ============================================================ */
.case-studies { padding: 8rem 0; background: var(--light); position: relative; }
/* Angled top */
.case-studies::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.case-studies__container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.case-studies__header { max-width: 640px; }

.case-studies__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.case-study-card {
  background: var(--white);
  display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-bottom: 3px solid transparent;
}
.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.14);
  border-bottom-color: var(--blue);
}

/* Gradient image blocks */
.case-study-card:nth-child(1) .case-study-card__image {
  background: linear-gradient(135deg, #0a1628 0%, #003d5c 50%, #006699 100%);
}
.case-study-card:nth-child(2) .case-study-card__image {
  background: linear-gradient(135deg, #0a1628 0%, #1a0a14 50%, #bd1b44 100%);
}
.case-study-card:nth-child(3) .case-study-card__image {
  background: linear-gradient(135deg, #0d1628 0%, #1a0f00 50%, #7f4000 100%);
}

.case-study-card__image {
  height: 200px;
  position: relative; overflow: hidden;
  transition: height 0.4s cubic-bezier(0.22,1,0.36,1);
}
.case-study-card:hover .case-study-card__image { height: 220px; }

/* Shimmer overlay on image */
.case-study-card__image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
/* Corner accent */
.case-study-card__image::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--blue);
}
.case-study-card:nth-child(2) .case-study-card__image::after { background: var(--red); }
.case-study-card:nth-child(3) .case-study-card__image::after { background: #cc6600; }

.case-study-card__body { padding: 2rem 2.2rem 2.5rem; display: flex; flex-direction: column; flex: 1; }
.case-study-card__tag {
  font-family: "jaf-domus", sans-serif; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--red); margin-bottom: 1rem;
}
.case-study-card:nth-child(3) .case-study-card__tag { color: #cc6600; }

.case-study-card__title {
  font-family: "paralucent", sans-serif; font-weight: 300;
  font-size: 1.35rem; color: var(--dark); line-height: 1.25; margin-bottom: 1rem;
}
.case-study-card__excerpt {
  font-size: 0.88rem; color: var(--grey); line-height: 1.75; margin-bottom: 2rem; flex: 1;
}
.case-study-card__link {
  font-family: "jaf-domus", sans-serif; font-size: 0.78rem;
  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); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 8rem 0; background: var(--dark);
  position: relative; overflow: hidden;
}
/* Animated gradient blob */
.contact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,153,0.18) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,27,68,0.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
}
.contact__container { max-width: 900px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.contact__strapline { color: var(--blue) !important; }
.contact__headline { color: var(--white) !important; }
.contact__sub { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.75; max-width: 540px; margin-bottom: 3.5rem; }

.contact__form { width: 100%; }
.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
   ============================================================ */
.footer { background: #003d5c; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__container {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__logo { font-family: "paralucent", sans-serif; font-weight: 300; font-size: 0.9rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.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); }

/* ============================================================
   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), var(--red));
  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; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--dark-2);
  border-top:    1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  text-transform: uppercase;
}
.marquee__sep {
  color: var(--blue) !important;
  font-size: 0.7rem !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   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: var(--dark);
  position: relative;
  overflow: hidden;
}
/* 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 { color: var(--blue); }
.why-isg__header .section__headline  { 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(0,102,153,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.why-isg__card:hover { border-color: rgba(0,102,153,0.5); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.why-isg__card:hover::before { opacity: 1; }
.why-isg__card--accent {
  border-color: rgba(0,102,153,0.35);
  background: rgba(0,102,153,0.06);
}

.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(0,102,153,0.15); }

.why-isg__icon {
  width: 2.8rem; height: 2.8rem;
  color: var(--blue);
  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: #0099cc; }
.why-isg__icon svg { width: 100%; height: 100%; }

.why-isg__card h3 {
  font-family: "jaf-domus", sans-serif; font-weight: 400;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 1rem;
}
.why-isg__card p {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Active nav link */
.nav__links a.nav__active { color: var(--white) !important; }
.nav__links a.nav__active:not(.nav__cta)::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--blue);
  margin-top: 2px;
  animation: fadeIn 0.3s ease;
}

@media (max-width: 1024px) {
  .industries__grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 900px) {
  .why-isg__grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 768px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,18,35,0.98); flex-direction: column; gap: 0; padding: 1rem 0;
    backdrop-filter: blur(12px);
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 1rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .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(255,255,255,0.06);
    background: rgba(0,0,0,0.25);
    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; }
  .stats__container { grid-template-columns: repeat(2,1fr); }
  .stats__item + .stats__item::before { display: none; }
  .industries__grid { grid-template-columns: repeat(3,1fr); }
  .case-studies__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__container { flex-direction: column; text-align: center; }
  .hero::after { height: 40px; }
}
@media (max-width: 540px) {
  .industries__grid { grid-template-columns: repeat(2,1fr); }
  .hero__scroll { display: none; }
}

/* ============================================================
   NAV — SOLID (inner pages always show nav bg)
   ============================================================ */
.nav--solid {
  background: var(--dark) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem 0 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 12rem 2rem 8rem;
  background: var(--dark);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(0,102,153,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(189,27,68,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 20%, 100% 100%);
  z-index: 4;
}
.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.78rem; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--blue); 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::before { content: ''; display: block; width: 28px; height: 1px; background: var(--blue); flex-shrink: 0; }
.page-hero__headline {
  font-family: "paralucent", sans-serif; font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white);
  line-height: 1.05; margin-bottom: 1.8rem;
  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, #0099cc, #006699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.8;
  animation: fadeUp 0.8s 0.6s cubic-bezier(0.22,1,0.36,1) both;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 1.2rem 2rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.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: 6rem 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);
}
.products-grid-section__container {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
}
.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__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; }

/* ============================================================
   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;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.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 {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.industry-feature__icon-large {
  width: 140px; height: 140px; color: rgba(255,255,255,0.07);
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), color 0.5s;
}
.industry-feature:hover .industry-feature__icon-large { transform: scale(1.12); color: rgba(255,255,255,0.13); }
.industry-feature__icon-large svg { width: 100%; height: 100%; }

.industry-feature__corner {
  position: absolute; bottom: 0; left: 0;
  width: 64px; height: 3px;
  background: var(--blue);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.industry-feature:hover .industry-feature__corner { width: 120px; }

.industry-feature__content {}
.industry-feature__tag {
  font-family: "jaf-domus", sans-serif; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.industry-feature__tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--blue); flex-shrink: 0; }
.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;
}
.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 { color: var(--blue); }

.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: var(--dark);
  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 { color: var(--blue); }
.group-section .section__headline  { color: var(--white); }

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 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: var(--dark);
  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: var(--dark-2); 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.05rem; color: var(--white);
  margin-bottom: 0.35rem; letter-spacing: 0.03em;
}
.group-card__location {
  font-family: "jaf-domus", sans-serif; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--blue); margin-bottom: 1.2rem;
}
.group-card__desc {
  font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.75;
}

/* ============================================================
   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: 1rem; padding: 2.2rem 1.5rem; transition: all 0.25s; cursor: default; }
.partner-card:hover { background: var(--light); }
.partner-card img { max-width: 110px; max-height: 48px; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.6; 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 page */
.companies-list { padding: 6rem 0; background: var(--white); }
.companies-list__container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.company-card { border: 1px solid var(--border); border-left: 4px solid var(--blue); padding: 3rem; margin-bottom: 2rem; display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; transition: box-shadow 0.25s; }
.company-card:hover { box-shadow: 0 8px 40px rgba(0,102,153,0.1); }
.company-card__left { }
.company-card__num { font-family: "paralucent",sans-serif; font-weight: 300; font-size: 4rem; color: var(--blue); opacity: 0.2; line-height: 1; }
.company-card__name { font-family: "paralucent",sans-serif; font-weight: 300; font-size: 1.6rem; color: var(--dark); line-height: 1.2; margin: 0.5rem 0 0.4rem; }
.company-card__location { font-family: "jaf-domus",sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); }
.company-card__markets { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.market-tag { font-family: "jaf-domus",sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.7rem; background: var(--light); border: 1px solid var(--border); color: var(--grey); }
.company-card__right h3 { font-family: "jaf-domus",sans-serif; font-weight: 400; font-size: 1rem; color: var(--text); margin-bottom: 1rem; }
.company-card__right p { font-size: 0.93rem; color: #4a5568; line-height: 1.8; margin-bottom: 0.8rem; }
.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; }
}
