/* ============================================================
   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);
}

.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-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__logo-text {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--dark);
  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: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.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__current { color: var(--blue) !important; }

.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;
  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;
}

.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;
}

.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); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    align-items: flex-start;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__links li:last-child a { border-bottom: none; }
  .nav__item--dropdown { align-self: auto; flex-direction: column; align-items: flex-start; }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: none;
    width: 100%;
  }
  .nav__dropdown-menu--wide { grid-template-columns: 1fr; min-width: unset; }
  .nav__item--dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-menu li a { padding-left: 2.5rem !important; }
  .nav__links .nav__cta { margin: 0.5rem 1.5rem; }
}

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

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0,102,153,0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.15s ease, width 0.2s, height 0.2s, border-color 0.2s;
  z-index: 10000;
}
.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10001;
}
.cursor-ring.is-hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(0,102,153,0.3);
}
.cursor-ring.is-clicking {
  width: 28px;
  height: 28px;
}

@media (hover: none) {
  .cursor-ring, .cursor-dot { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  background: #fff;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem 8vw;
  background: #f0f6fb;
  overflow: hidden;
}
/* Ensure all direct children sit above the canvas */
.hero__content > * {
  position: relative;
  z-index: 1;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__visual {
  position: relative;
  overflow: hidden;
}
.hero__visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #004f78 0%, #006699 60%, #0080bb 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.hero__visual-product {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 3rem 0;
}
.hero__visual-product img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.3));
  animation: fadeUp 0.9s 0.6s cubic-bezier(0.22,1,0.36,1) both;
}

.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(2.8rem, 5vw, 5.5rem);
  color: var(--dark);
  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.3vw, 1.05rem);
  font-weight: 300;
  color: #444c5e;
  max-width: 520px;
  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;
}

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

.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(--dark);
  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: #7a8499;
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.1);
  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(0,61,92,0.35);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(0,61,92,0.35), transparent);
  animation: scrollPulse 2.2s 1.8s ease-in-out infinite;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  background: var(--dark);
  overflow: hidden;
}

.page-hero__fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.page-hero__shape--1 { width: 600px; height: 600px; background: var(--blue);     top: -200px; right: -100px; }
.page-hero__shape--2 { width: 400px; height: 400px; background: var(--red);      bottom: -150px; left: -80px; opacity: 0.1; }
.page-hero__shape--3 { width: 300px; height: 300px; background: var(--blue-mid); top: 50%; left: 30%; opacity: 0.08; }
.page-hero__shape--4 { width: 200px; height: 200px; background: var(--red);      top: 20%; right: 25%; opacity: 0.06; }
.page-hero__shape--5 { width: 500px; height: 500px; background: var(--blue);     bottom: -200px; right: 10%; opacity: 0.05; }

.page-hero__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,153,0.4), rgba(189,27,68,0.3), transparent);
}

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

.page-hero__strapline {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.page-hero__strapline::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue);
}

.page-hero__headline {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.page-hero__headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__sub {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  max-width: 640px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
}
.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #64748b;
}
.breadcrumb__inner a { color: var(--blue); text-decoration: none; }
.breadcrumb__inner a:hover { text-decoration: underline; }
.breadcrumb__inner .sep { color: #cbd5e1; }

/* ============================================================
   USP BAR
   ============================================================ */
.usp-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.2rem 2rem;
}
.usp-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.usp-item:first-child { padding-left: 0; }
.usp-item:last-child { border-right: none; }
.usp-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--blue);
}
.usp-item__icon svg { width: 100%; height: 100%; }
.usp-item__text strong {
  display: block;
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.usp-item__text span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .usp-bar__inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .usp-item { border-right: none; padding: 0.8rem 0; }
}
@media (max-width: 480px) {
  .usp-bar__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  padding: 7rem 2rem;
  background: var(--white);
}
.products-section__container {
  max-width: 1280px;
  margin: 0 auto;
}
.products-section__header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.products-intro {
  font-size: 1rem;
  color: #444c5e;
  line-height: 1.8;
  max-width: 560px;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

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

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,102,153,0.14);
  transform: translateY(-4px);
}

.product-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .product-card__image img { transform: scale(1.06); }

.product-card__image-placeholder {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.2);
}
.product-card__image-placeholder svg { width: 100%; height: 100%; }

.product-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
}

.product-card__body {
  padding: 1.6rem 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__tag {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.product-card__title {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.product-card__desc {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}
.product-card__link {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.product-card:hover .product-card__link { gap: 0.7rem; }

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section {
  padding: 7rem 2rem;
  background: var(--light);
}
.industries-section__container {
  max-width: 1280px;
  margin: 0 auto;
}
.industries-section__header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

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

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.2rem 1.2rem;
  background: var(--white);
  cursor: default;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  text-align: center;
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industry-card:hover {
  background: var(--dark);
  z-index: 2;
}
.industry-card:hover .industry-card__icon { color: var(--blue-mid); transform: translateY(-3px) scale(1.1); }
.industry-card:hover h3 { color: var(--white); }

.industry-card__icon {
  color: var(--blue);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  width: 2.2rem;
  height: 2.2rem;
}
.industry-card__icon svg { width: 100%; height: 100%; }

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

/* ============================================================
   GROUP COMPANIES SECTION
   ============================================================ */
.group-section {
  padding: 7rem 2rem;
  background: var(--white);
}
.group-section__container {
  max-width: 1280px;
  margin: 0 auto;
}

.group-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.group-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  min-width: 140px;
}
.group-logo-item:hover {
  box-shadow: 0 4px 20px rgba(0,102,153,0.12);
  transform: translateY(-2px);
  border-color: rgba(0,102,153,0.25);
}
.group-logo-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.25s, opacity 0.25s;
}
.group-logo-item:hover img { filter: grayscale(0%); opacity: 1; }

.group-logo-item__name {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  transition: color 0.25s;
}
.group-logo-item:hover .group-logo-item__name { color: var(--blue); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, var(--dark) 0%, #002a45 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,102,153,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,102,153,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner__container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner__strapline {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.cta-banner__strapline::before,
.cta-banner__strapline::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue);
}
.cta-banner h2 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  padding: 7rem 2rem;
  background: var(--white);
}
.about-story__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .about-story__container { grid-template-columns: 1fr; gap: 3rem; }
}

.about-story__lead {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
.about-story__body {
  font-size: 0.96rem;
  color: #444c5e;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-story__card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--blue);
}
.about-story__card:last-child { margin-bottom: 0; }
.about-story__card strong {
  display: block;
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.about-story__card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   SERVICES SECTION (Who is LJR)
   ============================================================ */
.services-section {
  padding: 7rem 2rem;
  background: var(--light);
}
.services-section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.2rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(0,102,153,0.1);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(0,102,153,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section {
  padding: 7rem 2rem;
  background: var(--white);
}
.locations-section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
@media (max-width: 768px) { .locations-grid { grid-template-columns: 1fr; } }

.location-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.location-card__header {
  padding: 1.6rem 2rem;
  background: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.location-card__flag {
  font-size: 1.6rem;
}
.location-card__name {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--white);
}
.location-card__body {
  padding: 1.6rem 2rem;
  background: var(--white);
}
.location-card__body address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.location-card__body a {
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
}
.location-card__body a:hover { text-decoration: underline; }

/* ============================================================
   PRODUCT DETAIL (inner product pages)
   ============================================================ */
.product-detail {
  padding: 5rem 2rem;
  background: var(--white);
}
.product-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
@media (max-width: 768px) { .product-detail__inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.product-detail__img-wrap {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.product-detail__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.product-detail__content .section__strapline { margin-bottom: 0.6rem; }
.product-detail__content h2 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 1.4rem;
  line-height: 1.12;
}
.product-detail__content p {
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.96rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.feature-check {
  color: var(--blue);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ============================================================
   PRODUCT SERIES SECTION
   ============================================================ */
.series-section {
  padding: 5rem 2rem;
  background: var(--light);
}
.series-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .series-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .series-grid { grid-template-columns: 1fr; } }

.series-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  transition: box-shadow 0.25s, transform 0.25s;
  border-top: 3px solid var(--blue);
}
.series-card:hover {
  box-shadow: 0 6px 28px rgba(0,102,153,0.1);
  transform: translateY(-2px);
}
.series-card__name {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.series-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SPECS SECTION
   ============================================================ */
.specs-section {
  padding: 5rem 2rem;
  background: var(--white);
}
.specs-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.specs-table th,
.specs-table td {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  text-align: left;
}
.specs-table th {
  background: var(--dark);
  color: var(--white);
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.specs-table tr:nth-child(even) td { background: var(--light); }
.specs-table tr:hover td { background: rgba(0,102,153,0.05); }

/* ============================================================
   LINE CARD PAGE
   ============================================================ */
.line-card-section {
  padding: 5rem 2rem;
  background: var(--white);
}
.line-card-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.download-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: 14px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 640px) { .download-card { flex-direction: column; } }
.download-card__text h3 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.download-card__text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.product-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .product-categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .product-categories-grid { grid-template-columns: repeat(2, 1fr); } }

.prod-cat-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.prod-cat-card:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-section {
  padding: 5rem 2rem 7rem;
  background: var(--white);
}
.news-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
}
.news-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.news-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  overflow: hidden;
}
.news-card__image img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 1.6rem; }
.news-card__date {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.news-card__title {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.news-card__excerpt {
  font-size: 0.86rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.news-card__read-more {
  font-family: "jaf-domus", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 5rem 2rem 7rem;
  background: var(--white);
}
.contact-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-section__inner { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info__heading {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.contact-intro__copy {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-location {
  margin-bottom: 2rem;
  padding: 1.6rem;
  background: var(--light);
  border-radius: 10px;
  border-left: 3px solid var(--blue);
}
.contact-location--secondary { border-left-color: rgba(0,102,153,0.35); }

.contact-location__title {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
.contact-location address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.9;
}
.contact-location a {
  color: var(--blue);
  text-decoration: none;
}
.contact-location a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: var(--light);
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.8rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }

.form__field { margin-bottom: 1rem; }
.form__label {
  display: block;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "helvetica-neue-lt-pro", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--blue);
}
.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__feedback {
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.form__feedback--success {
  background: rgba(0,102,153,0.08);
  color: var(--blue);
  border: 1px solid rgba(0,102,153,0.25);
}
.form__feedback--error {
  background: rgba(189,27,68,0.08);
  color: var(--red);
  border: 1px solid rgba(189,27,68,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 5rem 2rem 0;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer__container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer__container { grid-template-columns: 1fr; } }

.footer__brand {}
.footer__logo {
  font-family: "paralucent", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__tagline {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.8rem; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.2s;
}
.footer__social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,102,153,0.1);
}

.footer__col-heading {
  font-family: "jaf-domus", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer__copy a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer__copy a:hover { color: var(--white); }
.footer__legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-hidden {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal-from-bottom  { transform: translateY(32px); }
.reveal-from-left    { transform: translateX(-32px); }
.reveal-from-right   { transform: translateX(32px); }
.reveal-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,102,153,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,102,153,0.4); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
  width: calc(100% - 2rem);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  flex: 1;
}
.cookie-banner__text a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-family: "jaf-domus", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.cookie-banner__btn--accept {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.cookie-banner__btn--accept:hover { background: var(--blue-dark); }
.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.15);
}
.cookie-banner__btn--decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.35; }
  50%       { transform: scaleY(0.5); opacity: 0.1;  }
}

/* ============================================================
   PRIVACY / LEGAL PAGES
   ============================================================ */
.legal-section {
  padding: 5rem 2rem 7rem;
  background: var(--white);
}
.legal-section__inner {
  max-width: 860px;
  margin: 0 auto;
}
.legal-section h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 2.5rem 0 0.8rem;
}
.legal-section h3 {
  font-size: 1rem;
  color: var(--dark);
  margin: 2rem 0 0.6rem;
}
.legal-section p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.legal-section ul {
  margin: 0.8rem 0 1.2rem 1.5rem;
}
.legal-section ul li {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.legal-section a { color: var(--blue); }
.legal-meta {
  font-size: 0.8rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.legal-section address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 2;
  background: var(--light);
  border-left: 3px solid var(--blue);
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1rem;
}
.legal-section code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  background: #f0f4f8;
  color: #003d5c;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.82rem;
}

/* ============================================================
   FREE QUOTE PAGE
   ============================================================ */
.quote-section {
  padding: 5rem 2rem 7rem;
  background: var(--white);
}
.quote-section__inner {
  max-width: 860px;
  margin: 0 auto;
}
.quote-form-wrap {
  background: var(--light);
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero__content {
    padding: 7rem 2rem 3rem;
    order: 2;
  }
  .hero__visual {
    order: 1;
    height: 280px;
  }
  .hero__visual-bg {
    clip-path: none;
  }
  .hero__visual-product {
    left: 0;
    padding: 2rem;
  }
  .hero__scroll { display: none; }
}

@media (max-width: 640px) {
  .hero__stats-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero__stat-divider { display: none; }
  .hero__stat { padding: 0; }
}

@media (max-width: 480px) {
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .cta-banner { padding: 5rem 1.5rem; }
}

/* ============================================================
   ACCORDION — product spec tables
   ============================================================ */
.accordion {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem 0;
}
.accordion__item + .accordion__item {
  border-top: 1px solid var(--border);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: background 0.15s;
  gap: 1rem;
}
.accordion__trigger:hover { background: var(--light); }
.accordion__trigger[aria-expanded="true"] { background: #f0f7fb; color: var(--blue); }
.accordion__trigger-meta {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--grey);
  margin-left: auto;
  white-space: nowrap;
}
.accordion__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--grey);
  transition: transform 0.25s;
}
.accordion__trigger[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
  color: var(--blue);
}
.accordion__panel {
  display: none;
  padding: 0 1.5rem 1.5rem;
  background: #fafcfe;
  border-top: 1px solid var(--border);
}
.accordion__panel.is-open { display: block; }
.accordion__panel .specs-table {
  margin: 1rem 0 0;
  font-size: 0.82rem;
}
.accordion__panel .specs-table th,
.accordion__panel .specs-table td {
  padding: 0.45rem 0.7rem;
}

/* product variant tabs */
.variant-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.variant-tab {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  background: var(--light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
  text-align: center;
}
.variant-tab + .variant-tab { border-left: 1px solid var(--border); }
.variant-tab.is-active { background: var(--blue); color: #fff; }
.variant-tab:hover:not(.is-active) { background: #e8f4f9; color: var(--blue); }
.variant-panel { display: none; }
.variant-panel.is-active { display: block; }

/* Datasheet note */
.datasheet-note {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.7;
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
}
