/* Omesa Drugs and Chemicals — palette: #fff, #00478F */
:root {
  --primary: #00478f;
  --primary-dark: #003566;
  --primary-bright: #0a6ebd;
  --primary-light: #e8f1f9;
  --primary-soft: #d4e5f4;
  --hero-cream: #fff3d6;
  --hero-cream-deep: #ffefbf;
  --white: #ffffff;
  --text: #1a2b3c;
  --text-muted: #3d556d;
  --max-w: 100%;
  --header-h: 92px;
  --radius: 8px;
  --shadow: 0 12px 40px rgba(0, 71, 143, 0.12);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
  /* Shared with editorial footer hero / slate sections */
  --editorial-slate-gradient: linear-gradient(168deg, #0f2744 0%, #0e1726 42%, #080d14 100%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  overflow-x: clip;
}

@media (min-width: 480px) {
  html {
    font-size: 105%;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 110%;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* —— Full-page entrance: curtain collapses TL → BR, then blocks stagger TB + LTR —— */
.page-reveal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: linear-gradient(152deg, #0f2744 0%, #0e1726 45%, #003566 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: page-reveal-diagonal 1.08s var(--ease-out) forwards;
}

@keyframes page-reveal-diagonal {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  88% {
    clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
    opacity: 1;
  }
  100% {
    clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
    opacity: 0;
    visibility: hidden;
  }
}

html.page-reveal-active .site-header {
  opacity: 0;
  animation: page-reveal-header-in 0.62s var(--ease-out) both;
  animation-delay: 0.42s;
}

html.page-reveal-active main > section,
html.page-reveal-active .site-footer {
  opacity: 0;
  animation: page-reveal-block-in 0.78s var(--ease-out) both;
  animation-delay: calc(0.48s + var(--reveal-order, 0) * 0.055s);
}

@keyframes page-reveal-header-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes page-reveal-block-in {
  from {
    opacity: 0;
    transform: translate3d(calc(-22px + var(--reveal-order, 0) * 9px), 34px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-reveal {
    display: none !important;
    animation: none !important;
  }

  html.page-reveal-active .site-header,
  html.page-reveal-active main > section,
  html.page-reveal-active .site-footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 3rem);
}

#top,
#about,
#mission-vision,
#products,
#contact {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Default: fully transparent so hero shows through until user scrolls */
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.site-header--scrolled {
  background-color: var(--white);
  border-bottom-color: rgba(0, 71, 143, 0.1);
  box-shadow: 0 4px 20px rgba(0, 71, 143, 0.08);
}

/* Nav + logo: white on transparent bar over dark hero; primary palette once header is white */
.site-header:not(.site-header--scrolled) .site-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header:not(.site-header--scrolled) .site-nav a:hover,
.site-header:not(.site-header--scrolled) .site-nav a[aria-current="page"] {
  color: #ffffff;
  text-decoration: none;
}

.site-header:not(.site-header--scrolled) .site-nav a.nav-link::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), #bae6fd);
}

.site-header:not(.site-header--scrolled) .logo--mark {
  color: #ffffff;
}

.site-header:not(.site-header--scrolled) .logo__img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.site-header--scrolled .logo__img {
  filter: none;
}

.site-header:not(.site-header--scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header:not(.site-header--scrolled) .nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.site-header:not(.site-header--scrolled) .nav-toggle__bar {
  background: #ffffff;
}

/* Hero sits under the sticky bar so a transparent header reads over the hero (not plain body bg) */
#main-content:has(> .hero:first-child) {
  margin-top: calc(-1 * var(--header-h));
}

#main-content:has(> .hero:first-child) > .hero:first-child {
  padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition-duration: 0.01ms;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: var(--header-h);
  gap: 0.75rem 1rem;
}

@media (min-width: 901px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .site-nav ul {
    justify-content: center;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
  }
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo--mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--primary);
}

.logo--mark:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo--mark:hover .logo__img {
  transform: rotate(-2deg) scale(1.03);
}

.logo__img {
  flex-shrink: 0;
  display: block;
  height: clamp(2.85rem, 5.5vw, 3.75rem);
  width: auto;
  max-width: min(280px, 58vw);
  object-fit: contain;
  object-position: left center;
  transition: transform 0.45s var(--ease-spring), filter 0.35s ease;
}

.logo__img--footer {
  height: auto;
  max-height: 4.1rem;
  max-width: min(280px, 100%);
  margin: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 71, 143, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 71, 143, 0.08);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.nav-toggle:hover {
  border-color: rgba(0, 71, 143, 0.35);
  box-shadow: 0 8px 28px rgba(0, 71, 143, 0.12);
  transform: scale(1.05);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  margin-inline: auto;
  background: var(--primary);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.72rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav a.nav-link {
  position: relative;
  padding-bottom: 0.35rem;
}

.site-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}

.site-nav a.nav-link:hover::after,
.site-nav a.nav-link[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary-dark);
  text-decoration: none;
}

.site-nav a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  text-transform: capitalize;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
}

/* —— Modern hero / header CTAs —— */
.btn__icon {
  flex-shrink: 0;
}

.btn-hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  text-transform: capitalize;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #0058a8 45%, var(--primary-bright) 100%);
  background-size: 180% 180%;
  box-shadow: 0 4px 16px rgba(0, 71, 143, 0.28), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out), background-position 0.5s var(--ease-out);
}

.btn-hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
}

.btn-hero-cta:hover {
  text-decoration: none;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 71, 143, 0.35), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
  background-position: 100% 50%;
}

.btn-hero-cta:hover::after {
  transform: translateX(120%);
}

.btn-hero-cta:active {
  transform: translateY(0);
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem 0.85rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-bright) 100%);
  background-size: 200% 200%;
  box-shadow: 0 6px 24px rgba(0, 71, 143, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background-position 0.55s var(--ease-out);
}

.btn-hero-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.btn-hero-primary:hover {
  text-decoration: none;
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 71, 143, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  background-position: 100% 50%;
}

.btn-hero-primary:hover::after {
  transform: translateX(100%);
}

.btn-hero-primary:hover .btn-hero-primary__icon {
  transform: translateX(4px);
}

.btn-hero-primary__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.4s var(--ease-spring);
}

.btn-hero-primary__icon svg {
  display: block;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid rgba(0, 71, 143, 0.22);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.btn-hero-ghost:hover {
  text-decoration: none;
  color: var(--primary-dark);
  border-color: rgba(0, 71, 143, 0.45);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 71, 143, 0.1);
}

.hero--modern .btn-hero-ghost {
  color: #e0f2fe;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero--modern .btn-hero-ghost:hover {
  color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.btn-hero-primary:focus-visible,
.btn-hero-cta:focus-visible,
.btn-hero-ghost:focus-visible {
  outline: 3px solid var(--primary-soft);
  outline-offset: 3px;
}

/* —— Hero (split white + pale yellow, image overlaps) —— */
.hero {
  position: relative;
  min-height: min(90vh, 640px);
  background: var(--white);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(44%, 560px);
  height: 100%;
  background: linear-gradient(165deg, var(--hero-cream) 0%, var(--hero-cream-deep) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero.hero--modern {
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 53, 102, 0.45), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(0, 53, 102, 0.42), transparent 36%),
    linear-gradient(165deg, #0a6ebd 0%, #095fa4 48%, #084f8b 100%);
  color: rgba(255, 255, 255, 0.9);
}

.hero.hero--modern::before {
  width: min(44%, 560px);
  background: linear-gradient(165deg, rgba(10, 110, 189, 0.18) 0%, rgba(0, 71, 143, 0.08) 42%, transparent 88%);
}

@media (max-width: 900px) {
  .hero:not(.hero--modern)::before {
    display: none;
  }

  .hero.hero--modern::before {
    display: block;
    width: 100%;
    height: min(55%, 420px);
    background: linear-gradient(180deg, rgba(10, 110, 189, 0.13) 0%, transparent 100%);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.25rem, 2vw, 1.25rem);
  align-items: center;
  width: 100%;
  max-width: min(100%, 1680px);
  margin-inline: auto;
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1rem, 3vw, 3rem);
}

.hero__text {
  position: relative;
  padding: 0.5rem clamp(0, 1vw, 0.5rem) 2rem 0;
  padding-inline-end: clamp(0.5rem, 3vw, 2rem);
  max-width: 34rem;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  min-height: 260px;
  margin-top: calc(-1 * clamp(2.25rem, 5vw, 4rem));
  margin-right: calc(-1 * clamp(1rem, 3vw, 3rem));
  margin-bottom: calc(-1 * clamp(2.25rem, 5vw, 4rem));
  padding-left: 25px;
  overflow: hidden;
}

.hero__visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 25px;
  background: linear-gradient(
    165deg,
    var(--primary-bright) 0%,
    var(--primary) 48%,
    var(--primary-dark) 100%
  );
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.18), 2px 0 14px rgba(0, 71, 143, 0.18);
  z-index: 1;
  pointer-events: none;
}

.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .hero__visual:hover .hero__visual-img {
    transform: scale(1.025);
  }
}

.hero__visual-frame {
  position: relative;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(10, 110, 189, 0.55) 35%,
    rgba(0, 71, 143, 0.65) 55%,
    rgba(255, 255, 255, 0.75) 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 2px 4px rgba(0, 71, 143, 0.04), 0 20px 48px rgba(0, 71, 143, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transition: transform 0.65s var(--ease-out), box-shadow 0.65s var(--ease-out), background-position 1.1s var(--ease-out);
  isolation: isolate;
}

.hero__visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.45) 0 7px, rgba(125, 211, 252, 0.72) 7px 14px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.16) 0 7px, rgba(10, 110, 189, 0.42) 7px 14px);
  background-size: 140% 140%;
  background-position: 0% 50%;
  pointer-events: none;
  z-index: 4;
  opacity: 0.85;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: background-position 0.9s var(--ease-out), opacity 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero__visual-frame:hover {
    transform: translateY(-10px) rotateX(2.5deg) rotateY(-2deg) scale(1.012);
    background-position: 100% 50%;
    box-shadow: 0 4px 8px rgba(0, 71, 143, 0.06), 0 28px 64px rgba(0, 71, 143, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.75) inset,
      0 0 80px rgba(10, 110, 189, 0.12);
  }

  .hero__visual-frame:hover::before {
    background-position: 100% 50%;
    opacity: 1;
  }
}

.hero__visual-orbit {
  position: absolute;
  inset: -5px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(10, 110, 189, 0.35), transparent 40%, transparent 60%, rgba(0, 71, 143, 0.25));
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.55s var(--ease-out), transform 0.75s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .hero__visual-frame:hover .hero__visual-orbit {
    opacity: 1;
    transform: scale(1.02);
  }
}

.hero__visual-glow {
  position: absolute;
  inset: -35%;
  background: radial-gradient(ellipse 70% 60% at 35% 35%, rgba(10, 110, 189, 0.35), transparent 58%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(255, 243, 214, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.75s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
  .hero__visual-frame:hover .hero__visual-glow {
    opacity: 1;
    transform: scale(1.04);
  }
}

.hero__visual-media {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 20px;
  transform: translateZ(0);
  aspect-ratio: 4 / 3;
}

.hero-visual-slider {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hero-visual-slider__viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  outline: none;
}

.hero-visual-slider__viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 5px rgba(10, 110, 189, 0.45);
}

.hero-visual-slider__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 -24px 48px rgba(0, 71, 143, 0.08);
  pointer-events: none;
  z-index: 3;
}

.hero-visual-slider__viewport::after {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(
    118deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-55%) skewX(-14deg);
  opacity: 0.35;
  transition: transform 0.95s var(--ease-out), opacity 0.35s ease;
  pointer-events: none;
  z-index: 4;
  animation: hero-slider-highlight 4.5s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .hero__visual-frame:hover .hero-visual-slider__viewport::after {
    opacity: 0.78;
    transform: translateX(55%) skewX(-14deg);
  }
}

@keyframes hero-slider-highlight {
  0% {
    transform: translateX(-58%) skewX(-14deg);
    opacity: 0.22;
  }
  50% {
    transform: translateX(8%) skewX(-14deg);
    opacity: 0.42;
  }
  100% {
    transform: translateX(58%) skewX(-14deg);
    opacity: 0.2;
  }
}

.hero-visual-slider__track {
  display: flex;
  height: 100%;
  width: calc(var(--hero-slides, 3) * 100%);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(0);
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-slider__track {
    transition: none;
  }

  .hero-visual-slider__viewport::after {
    animation: none;
    opacity: 0.28;
    transform: translateX(0) skewX(-14deg);
  }
}

.hero-visual-slider__slide {
  flex: 0 0 calc(100% / var(--hero-slides, 3));
  min-width: 0;
  position: relative;
}

.hero-visual-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.75s var(--ease-out), filter 0.55s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero__visual-frame:hover .hero-visual-slider__slide img {
    transform: scale(1.06);
    filter: brightness(1.04) saturate(1.05);
  }
}

.hero-visual-slider__chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.65rem;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 0.5rem;
  pointer-events: none;
}

.hero-visual-slider__chrome > * {
  pointer-events: auto;
}

.hero-visual-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(8, 13, 20, 0.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-out), box-shadow 0.25s ease;
}

.hero-visual-slider__btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.hero-visual-slider__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-visual-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 13, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-visual-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-visual-slider__dot:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.15);
}

.hero-visual-slider__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-visual-slider__dot[aria-current="true"] {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(10, 110, 189, 0.65);
  transform: scale(1.2);
}

@media (min-width: 901px) {
  .hero__visual {
    justify-content: flex-end;
  }

  .hero__visual-frame {
    width: min(118%, 640px);
    max-width: none;
    margin-left: clamp(-4rem, -10vw, -1.25rem);
    margin-right: clamp(-0.5rem, -1vw, 0);
  }

  .hero__visual-frame .hero-visual-slider__slide img {
    max-width: none;
    width: 100%;
  }
}

/* —— Modern hero UI —— */
.hero--modern .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.95rem 0.4rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bae6fd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(10, 110, 189, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.35s var(--ease-out);
}

.hero--modern .hero__eyebrow:hover {
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.hero__eyebrow-icon {
  flex-shrink: 0;
  color: var(--primary-bright);
  animation: hero-icon-pulse 2.4s ease-in-out infinite;
}

.hero--modern .hero__eyebrow-icon {
  color: #7dd3fc;
}

@keyframes hero-icon-pulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero--modern h1 {
  font-size: clamp(1.65rem, 5.5vw + 0.35rem, 5rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
  overflow-wrap: anywhere;
}

.hero--modern .lead {
  margin-bottom: 1.35rem;
  color: rgba(186, 230, 253, 0.82);
  max-width: 42ch;
}

.hero__chips {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem 0.38rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 71, 143, 0.1);
  border-radius: 999px;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, color 0.3s ease, box-shadow 0.35s var(--ease-out);
}

.hero--modern .hero-chip {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-chip svg {
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.9;
}

.hero--modern .hero-chip svg {
  color: #93c5fd;
  opacity: 1;
}

.hero-chip:hover {
  color: var(--primary);
  border-color: rgba(0, 71, 143, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 71, 143, 0.1);
}

.hero--modern .hero-chip:hover {
  color: #fff;
  border-color: rgba(10, 110, 189, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

/* —— Hero stats / counter strip —— */
.hero-stats {
  margin: 2rem 0 0;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 1.4rem;
  align-items: stretch;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(2, 23, 50, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 560px;
}

.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.25rem 0.85rem 0.25rem 0;
}

.hero-stat + .hero-stat {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat__value {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, #cfe6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.hero-stat__num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.hero-stat__unit {
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #93c5fd;
  -webkit-text-fill-color: #93c5fd;
}

.hero-stat__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.78);
}

@media (max-width: 900px) {
  .hero-stats {
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.75rem 1rem;
  }

  .hero-stat {
    padding: 0.65rem 0;
  }

  .hero-stat + .hero-stat {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .hero-stat__value {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero--modern .hero__eyebrow {
    animation: hero-fade-up 0.75s var(--ease-out) backwards;
    animation-delay: 0.05s;
  }

  .hero--modern h1 {
    animation: hero-fade-up 0.8s var(--ease-out) backwards;
    animation-delay: 0.12s;
  }

  .hero--modern .lead {
    animation: hero-fade-up 0.8s var(--ease-out) backwards;
    animation-delay: 0.2s;
  }

  .hero--modern .hero__chips {
    animation: hero-fade-up 0.8s var(--ease-out) backwards;
    animation-delay: 0.28s;
  }

  .hero--modern .hero__actions {
    animation: hero-fade-up 0.85s var(--ease-out) backwards;
    animation-delay: 0.36s;
  }

  .hero--modern .hero-stats {
    animation: hero-fade-up 0.9s var(--ease-out) backwards;
    animation-delay: 0.44s;
  }

  .hero--modern .hero__visual-frame {
    animation: hero-fade-up 0.95s var(--ease-out) backwards;
    animation-delay: 0.18s;
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow-icon {
    animation: none;
  }

  .hero--modern .hero__eyebrow,
  .hero--modern h1,
  .hero--modern .lead,
  .hero--modern .hero__chips,
  .hero--modern .hero__actions,
  .hero--modern .hero-stats,
  .hero--modern .hero__visual-frame {
    animation: none;
  }

  .btn-hero-primary:hover,
  .btn-hero-cta:hover,
  .hero__visual-frame:hover {
    transform: none;
    background-position: 0% 50%;
    box-shadow: 0 2px 4px rgba(0, 71, 143, 0.04), 0 20px 48px rgba(0, 71, 143, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  }

  .hero__visual-frame:hover .hero-visual-slider__slide img {
    transform: none;
    filter: none;
  }

  .hero__visual-frame:hover .hero__visual-glow,
  .hero__visual-frame:hover .hero__visual-orbit {
    opacity: 0;
    transform: none;
  }

  .hero__visual-frame:hover .hero-visual-slider__viewport::after {
    opacity: 0;
    transform: translateX(-55%) skewX(-14deg);
  }

  .hero__visual-frame,
  .hero-visual-slider__slide img,
  .hero__visual-glow,
  .hero__visual-orbit,
  .hero-visual-slider__viewport::after,
  .hero-visual-slider__track {
    transition: none !important;
  }

  .btn-hero-primary:hover .btn-hero-primary__icon {
    transform: none;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.15;
  color: var(--primary);
  margin: 0 0 1rem;
  font-weight: 800;
}

.lead {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.75;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin: 0 0 1rem;
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

/* —— Marquee band (infinite scrolling industries strip) —— */
.marquee-band {
  position: relative;
  width: 100%;
  padding: clamp(0.85rem, 2vw, 1.25rem) 0;
  background: linear-gradient(90deg, var(--primary-light) 0%, #ffffff 50%, var(--primary-light) 100%);
  color: var(--primary);
  overflow: hidden;
  border-block: 1px solid rgba(0, 71, 143, 0.12);
  isolation: isolate;
}

.marquee-band::before,
.marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 110px);
  z-index: 2;
  pointer-events: none;
}

.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(232, 241, 249, 0) 100%);
}

.marquee-band::after {
  right: 0;
  background: linear-gradient(270deg, var(--primary-light) 0%, rgba(232, 241, 249, 0) 100%);
}

.marquee-band__track {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  width: max-content;
  animation: marquee-band-scroll 38s linear infinite;
  will-change: transform;
}

.marquee-band:hover .marquee-band__track {
  animation-play-state: paused;
}

.marquee-band__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.marquee-band__item {
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s var(--ease-out);
}

.marquee-band__item:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.marquee-band__item--brand {
  background: linear-gradient(180deg, var(--primary-bright) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.marquee-band__item--diamond {
  width: 0.55em;
  height: 0.55em;
  flex-shrink: 0;
  background: var(--primary);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 71, 143, 0.18);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
}

.marquee-band__item--diamond:hover {
  transform: rotate(45deg) translateY(-1px);
  background: var(--primary-dark);
}

@keyframes marquee-band-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-band__track {
    animation: none;
    transform: translateX(0);
  }
}

/* —— Facility (full-bleed image strip with overlay copy) —— */
.section-facility {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
  border-top: 1px solid rgba(0, 71, 143, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.section-facility__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 38% at 92% 12%, rgba(10, 110, 189, 0.1), transparent 70%),
    radial-gradient(ellipse 45% 36% at 8% 90%, rgba(0, 71, 143, 0.08), transparent 70%);
}

.section-facility__intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
  text-align: center;
}

.section-facility__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 1rem 0.4rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(10, 110, 189, 0.08);
  border: 1px solid rgba(0, 71, 143, 0.16);
  border-radius: 999px;
}

.section-facility__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-bright);
  box-shadow: 0 0 0 4px rgba(10, 110, 189, 0.18);
  flex-shrink: 0;
}

.section-facility__intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.section-facility__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}

.facility-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.facility-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  background: var(--white);
  border: 0;
  box-shadow: none;
  transition: box-shadow 0.45s var(--ease-out);
  isolation: isolate;
}

.facility-card + .facility-card {
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.facility-card:hover {
  z-index: 2;
  box-shadow: 0 22px 60px rgba(0, 71, 143, 0.18);
}

.facility-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0e1726;
}

.facility-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.85s var(--ease-out), filter 0.5s ease;
}

.facility-card:hover .facility-card__media img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.facility-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 28, 0) 18%,
    rgba(8, 16, 28, 0.45) 58%,
    rgba(0, 30, 70, 0.88) 100%
  );
  opacity: 0.95;
  transition: opacity 0.45s ease;
}

.facility-card:hover .facility-card__overlay {
  opacity: 1;
}

.facility-card__index {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1.1rem, 2.2vw, 1.6rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  height: 2.3rem;
  padding: 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 30, 70, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.facility-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 2.8vw, 2.25rem);
  background: linear-gradient(180deg, rgba(0, 30, 70, 0) 0%, rgba(0, 30, 70, 0.55) 60%, rgba(0, 30, 70, 0.85) 100%);
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.5s var(--ease-out);
}

.facility-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.facility-card__desc {
  margin: 0 0 1.05rem;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
}

.facility-card__line {
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.45) 100%);
  transition: width 0.45s var(--ease-out), background 0.4s ease;
}

.facility-card:hover .facility-card__line {
  width: 80px;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .facility-card {
    animation: facility-card-in 0.65s var(--ease-out) backwards;
  }

  .facility-card:nth-child(1) { animation-delay: 0.05s; }
  .facility-card:nth-child(2) { animation-delay: 0.14s; }
  .facility-card:nth-child(3) { animation-delay: 0.23s; }
}

@keyframes facility-card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .facility-card + .facility-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
  }

  .facility-card__media {
    aspect-ratio: 16 / 11;
  }
}

@media (prefers-reduced-motion: reduce) {
  .facility-card,
  .facility-card__media img,
  .facility-card__overlay,
  .facility-card__line {
    animation: none;
    transition: none;
  }

  .facility-card:hover {
    transform: none;
  }

  .facility-card:hover .facility-card__media img {
    transform: none;
    filter: none;
  }

  .facility-card:hover .facility-card__line {
    width: 36px;
  }
}

/* —— Industries (modern numbered cards) —— */
.section-industries {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
  border-top: 1px solid rgba(0, 71, 143, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.section-industries__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 10% 12%, rgba(10, 110, 189, 0.1), transparent 68%),
    radial-gradient(ellipse 50% 38% at 92% 90%, rgba(0, 71, 143, 0.08), transparent 70%);
}

.section-industries__inner {
  position: relative;
  z-index: 1;
}

.section-industries__intro {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-industries__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 1rem 0.4rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(10, 110, 189, 0.08);
  border: 1px solid rgba(0, 71, 143, 0.16);
  border-radius: 999px;
}

.section-industries__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-bright);
  box-shadow: 0 0 0 4px rgba(10, 110, 189, 0.18);
  flex-shrink: 0;
}

.section-industries__intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.section-industries__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

/* Home: 3-up grid with image stacked above copy (matches hero industry cards) */
.section-industries--home .industries-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-industries--home .industry-card {
  grid-template-columns: 1fr;
  background: #fff;
}

.section-industries--home .industry-card::after {
  display: none;
}

@media (max-width: 1080px) {
  .section-industries--home .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section-industries--home .industries-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--white) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(0, 71, 143, 0.12);
  box-shadow: 0 12px 28px rgba(0, 71, 143, 0.06);
  transition: transform 0.45s var(--ease-out), border-color 0.3s ease, box-shadow 0.45s var(--ease-out);
}

.industry-card__media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--primary-soft);
}

.industry-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
}

.industry-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 71, 143, 0.12) 0%, rgba(0, 71, 143, 0) 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.industry-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.2vw, 2rem);
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-bright), var(--primary) 50%, transparent 95%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-out);
  z-index: 3;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(10, 110, 189, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 71, 143, 0.32);
  box-shadow: 0 22px 44px rgba(0, 71, 143, 0.14);
}

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

.industry-card:hover::after {
  opacity: 1;
}

.industry-card:hover .industry-card__media img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

.industry-card__num {
  position: absolute;
  top: clamp(0.75rem, 1.4vw, 1rem);
  right: clamp(0.9rem, 1.6vw, 1.25rem);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(180deg, rgba(0, 71, 143, 0.28) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.industry-card__title {
  margin: 0 0 0.7rem;
  padding-right: clamp(2.5rem, 4vw, 3.5rem);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--primary);
  line-height: 1.25;
}

.industry-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex-grow: 1;
}

.industry-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(0, 71, 143, 0.3);
  transition: gap 0.3s var(--ease-out), border-color 0.3s ease, color 0.25s ease;
}

.industry-card__cta svg {
  transition: transform 0.35s var(--ease-out);
}

.industry-card__cta:hover {
  text-decoration: none;
  gap: 0.7rem;
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.industry-card__cta:hover svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: no-preference) {
  .industry-card {
    animation: industry-card-in 0.65s var(--ease-out) backwards;
  }

  .industry-card:nth-child(1) { animation-delay: 0.05s; }
  .industry-card:nth-child(2) { animation-delay: 0.12s; }
  .industry-card:nth-child(3) { animation-delay: 0.19s; }
  .industry-card:nth-child(4) { animation-delay: 0.26s; }
  .industry-card:nth-child(5) { animation-delay: 0.33s; }
  .industry-card:nth-child(6) { animation-delay: 0.4s; }
}

@keyframes industry-card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .industry-card {
    grid-template-columns: 1fr;
  }

  .industry-card__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-card,
  .industry-card::before,
  .industry-card__media img {
    animation: none;
    transition: none;
  }

  .industry-card:hover {
    transform: none;
  }

  .industry-card:hover .industry-card__media img {
    transform: none;
    filter: none;
  }
}

/* —— About (modern UI: glass cards + CTA + framed media) —— */
.section-about--modern-ui {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, #fafcfe 0%, var(--white) 40%, #f5f9fc 100%);
  overflow: hidden;
}

.section-about--modern-ui::after {
  content: none;
}

.about-ui__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.about-ui__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-ui__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.95rem 0.4rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 71, 143, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.about-ui__eyebrow:hover {
  border-color: rgba(0, 71, 143, 0.22);
  box-shadow: 0 8px 28px rgba(0, 71, 143, 0.1);
  transform: translateY(-2px);
}

.about-ui__eyebrow-icon {
  flex-shrink: 0;
  color: var(--primary-bright);
}

.about-ui__copy h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.about-ui__lead {
  margin: 0 0 1.5rem;
  max-width: 54ch;
  font-size: 1rem;
  font-weight: 400;
  color: #1d3553;
  line-height: 1.72;
}

.about-ui__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem 0.7rem;
  margin-bottom: 1.7rem;
}

@media (min-width: 992px) {
  .about-ui__cards {
    flex-wrap: nowrap;
  }
}

.about-card {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(248, 252, 255, 0.8));
  border: 1px solid rgba(0, 71, 143, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(0, 71, 143, 0.07);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s var(--ease-out);
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 71, 143, 0.32);
  box-shadow: 0 12px 26px rgba(0, 71, 143, 0.14);
}

.about-card__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 48%, transparent 62%);
  transform: translateX(-100%);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
}

.about-card:hover .about-card__sheen {
  transform: translateX(100%);
}

.about-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 0.72rem;
  border-radius: 12px;
  color: #0054a6;
  background: linear-gradient(145deg, rgba(0, 71, 143, 0.12), rgba(10, 110, 189, 0.06));
  transition: transform 0.4s var(--ease-spring), background 0.3s ease, color 0.25s ease;
}

.about-card:hover .about-card__icon {
  transform: scale(1.1) rotate(-4deg);
  color: var(--primary-dark);
  background: linear-gradient(145deg, rgba(0, 71, 143, 0.18), rgba(10, 110, 189, 0.1));
}

.about-card__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.3;
  white-space: nowrap;
}

.about-card__text {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
  color: #355372;
}

.about-ui__prose {
  display: grid;
  gap: 0.95rem;
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.about-ui__prose p {
  margin: 0;
  color: #1f3b58;
  font-weight: 400;
  line-height: 1.78;
  font-size: 1rem;
}

.about-ui__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.about-ui__figure {
  margin: 0;
  position: relative;
  z-index: 1;
  min-width: 0;
  perspective: 1200px;
}

.about-ui__frame {
  position: relative;
  border-radius: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: 0 18px 40px rgba(0, 71, 143, 0.14), 0 4px 14px rgba(0, 71, 143, 0.08);
  overflow: visible;
  transform: translateZ(0);
  transition: transform 0.55s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.about-ui__frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0, 71, 143, 0.18), 0 6px 16px rgba(0, 71, 143, 0.1);
}

.about-ui__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 35% 30%, rgba(10, 110, 189, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.about-ui__frame:hover .about-ui__glow {
  opacity: 1;
}

.about-ui__frame-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 71, 143, 0.06) 0%,
    rgba(10, 110, 189, 0.08) 35%,
    rgba(0, 0, 0, 0.12) 100%
  );
  opacity: 0.65;
  transition: opacity 0.4s var(--ease-out);
}

.about-ui__frame:hover .about-ui__frame-overlay {
  opacity: 0.9;
}

.about-ui__frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(420px, 56vw, 640px);
  border-radius: 18px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease-out), filter 0.45s ease;
}

.about-ui__frame:hover img {
  transform: scale(1.01);
  filter: saturate(1.04) contrast(1.02);
}

.about-ui__chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 35, 63, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #edf6ff;
  box-shadow: 0 8px 22px rgba(3, 27, 49, 0.28);
  transition: transform 0.4s var(--ease-out), box-shadow 0.35s ease, background 0.35s ease;
}

.about-ui__chip--top {
  top: 1rem;
  right: 1rem;
}

.about-ui__chip--bottom {
  right: 1rem;
  bottom: 1rem;
}

.about-ui__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: rgba(137, 213, 255, 0.2);
}

.about-ui__chip-text {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.about-ui__frame:hover .about-ui__chip {
  transform: translateY(-2px);
  background: rgba(6, 44, 81, 0.8);
  box-shadow: 0 10px 24px rgba(3, 27, 49, 0.34);
}

.about-ui__badge {
  position: absolute;
  bottom: clamp(0.85rem, 2vw, 1.25rem);
  right: clamp(0.85rem, 2vw, 1.25rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.15rem, 2.4vw, 1.6rem);
  min-width: clamp(7.5rem, 14vw, 9.5rem);
  border-radius: 12px;
  background: linear-gradient(160deg, var(--primary-bright) 0%, var(--primary) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 30, 70, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.35s ease;
}

.about-ui__frame:hover .about-ui__badge {
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(0, 30, 70, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.about-ui__badge-num {
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f0c14b;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.about-ui__badge-plus {
  font-size: 0.55em;
  font-weight: 800;
  margin-left: 0.05em;
  margin-top: 0.05em;
  color: #f0c14b;
}

.about-ui__badge-label {
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

@media (min-width: 901px) {
  .about-ui__figure {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .section-about--modern-ui .about-ui__copy {
    animation: about-ui-in 0.75s var(--ease-out) backwards;
  }

  .section-about--modern-ui .about-ui__figure {
    animation: about-ui-in 0.8s var(--ease-out) 0.1s backwards;
  }

  .about-card:nth-child(1) {
    animation: about-ui-in 0.6s var(--ease-out) 0.15s backwards;
  }

  .about-card:nth-child(2) {
    animation: about-ui-in 0.6s var(--ease-out) 0.22s backwards;
  }

  .about-card:nth-child(3) {
    animation: about-ui-in 0.6s var(--ease-out) 0.29s backwards;
  }
}

@keyframes about-ui-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .about-ui__cards {
    justify-content: flex-start;
  }

  .about-ui__frame img {
    height: clamp(340px, 70vw, 520px);
    aspect-ratio: auto;
  }

  .about-ui__chip {
    padding: 0.42rem 0.62rem;
  }

  .about-ui__chip-text {
    font-size: 0.62rem;
  }

  .about-ui__chip--top {
    top: 0.75rem;
    right: 0.75rem;
  }

  .about-ui__chip--bottom {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-about--modern-ui .about-ui__copy,
  .section-about--modern-ui .about-ui__figure,
  .about-card {
    animation: none;
  }

  .about-card:hover,
  .about-ui__frame:hover,
  .about-ui__eyebrow:hover {
    transform: none;
  }

  .about-card:hover .about-card__sheen {
    transform: translateX(-100%);
  }

  .about-ui__frame:hover img {
    transform: none;
    filter: none;
  }

  .about-card:hover .about-card__icon {
    transform: none;
  }

  .about-ui__frame:hover .about-ui__badge {
    transform: none;
  }

  .about-ui__frame:hover .about-ui__chip {
    transform: none;
  }
}

/* —— Mission & core values (modern numbered grid) —— */
.section-mv {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
  border-top: 1px solid rgba(0, 71, 143, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.section-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 38% at 8% 12%, rgba(10, 110, 189, 0.1), transparent 70%),
    radial-gradient(ellipse 45% 36% at 92% 90%, rgba(0, 71, 143, 0.08), transparent 70%);
}

.section-mv__wrap {
  position: relative;
  z-index: 1;
}

.section-mv__intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
}

.section-mv__intro--modern {
  grid-template-columns: minmax(340px, 0.54fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.8vw, 2.4rem);
  align-items: stretch;
}

.section-mv__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  min-height: 100%;
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(128deg, #00478f 0%, #0762b8 58%, #0a6ebd 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(0, 71, 143, 0.2);
}

.section-mv__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.45rem;
  width: fit-content;
  padding: 0.42rem 0.96rem 0.42rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.section-mv__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9efff;
  box-shadow: 0 0 0 4px rgba(217, 239, 255, 0.22);
  flex-shrink: 0;
}

.section-mv__intro h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 800;
  white-space: normal;
  overflow-wrap: anywhere;
}

.section-mv__heading-sub {
  margin: 0;
  color: rgba(235, 246, 255, 0.95);
  font-size: 0.96rem;
  line-height: 1.62;
  max-width: 40ch;
}

.section-mv__lead {
  position: relative;
  margin: 0;
  max-width: 58ch;
  justify-self: start;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.4rem);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.8;
  color: var(--text);
  border-left: 3px solid var(--primary-bright);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 255, 0.88));
  box-shadow: 0 14px 32px rgba(0, 71, 143, 0.1);
}

.section-mv__lead::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: -3px;
  width: 3px;
  height: calc(100% - 1.7rem);
  border-radius: 999px;
  background: linear-gradient(180deg, #0a6ebd 0%, #3aa6f8 100%);
}

.section-mv__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.4rem);
  align-items: stretch;
}

.mv-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 2.4vw, 2rem) clamp(1.4rem, 2.2vw, 1.8rem) clamp(1.5rem, 2.2vw, 1.85rem);
  background: var(--white);
  border: 1px solid rgba(0, 71, 143, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 71, 143, 0.06);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, box-shadow 0.45s var(--ease-out);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-bright) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .mv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 110, 189, 0.28);
    box-shadow: 0 22px 48px rgba(0, 71, 143, 0.16);
  }

  .mv-card:hover::before {
    transform: scaleX(1);
  }
}

.mv-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.15rem;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(10, 110, 189, 0.14) 0%, rgba(10, 110, 189, 0.04) 100%);
  border: 1px solid rgba(0, 71, 143, 0.14);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 71, 143, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.5s var(--ease-spring), background 0.4s ease, color 0.35s ease,
    box-shadow 0.4s ease, border-color 0.35s ease;
}

.mv-card__icon svg {
  display: block;
  transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .mv-card:hover .mv-card__icon {
    transform: translateY(-3px) scale(1.06);
    color: var(--white);
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-bright) 100%);
    border-color: rgba(10, 110, 189, 0.45);
    box-shadow: 0 14px 32px rgba(0, 71, 143, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .mv-card:hover .mv-card__icon svg {
    transform: scale(1.05);
  }
}

.mv-card__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.25;
}

.mv-card__body {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex-grow: 1;
}

.mv-card__line {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-bright) 100%);
  transition: width 0.45s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .mv-card:hover .mv-card__line {
    width: 64px;
  }
}

@media (max-width: 1100px) {
  .section-mv__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section-mv__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-mv__intro h2 {
    white-space: normal;
  }

  .section-mv__heading {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: auto;
  }

  .section-mv__lead {
    max-width: none;
  }

  .section-mv__lead::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .section-mv__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .section-mv__intro {
    animation: mv-rise 0.72s var(--ease-out) backwards;
  }

  .section-mv .mv-card {
    animation: mv-rise 0.7s var(--ease-out) backwards;
  }

  .section-mv .mv-card:nth-child(1) { animation-delay: 0.08s; }
  .section-mv .mv-card:nth-child(2) { animation-delay: 0.16s; }
  .section-mv .mv-card:nth-child(3) { animation-delay: 0.24s; }
  .section-mv .mv-card:nth-child(4) { animation-delay: 0.32s; }
}

@keyframes mv-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-mv__intro,
  .section-mv .mv-card {
    animation: none !important;
  }

  .mv-card,
  .mv-card::before,
  .mv-card__icon,
  .mv-card__icon svg,
  .mv-card__line {
    transition: none;
  }

  .mv-card:hover {
    transform: none;
  }

  .mv-card:hover::before {
    transform: scaleX(0);
  }

  .mv-card:hover .mv-card__icon {
    transform: none;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(10, 110, 189, 0.14) 0%, rgba(10, 110, 189, 0.04) 100%);
  }

  .mv-card:hover .mv-card__icon svg {
    transform: none;
  }

  .mv-card:hover .mv-card__line {
    width: 36px;
  }
}

/* —— Products —— */
.section-products {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.section-products--modern {
  background: linear-gradient(180deg, #fafcfe 0%, var(--white) 40%, #f5f9fc 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.products-intro__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-bright);
}

.products-intro__lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 420px;
}

.product-grid--modern {
  gap: 1.15rem;
  min-height: 440px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 71, 143, 0.08);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.product-card:hover {
  box-shadow: 0 20px 48px rgba(0, 71, 143, 0.16);
  transform: translateY(-4px);
}

.product-card--large {
  grid-row: span 2;
  min-height: 100%;
}

.product-card__link {
  display: block;
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 240px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
  overflow: hidden;
  outline: none;
}

@media (min-width: 901px) {
  .product-card--large .product-card__link {
    min-height: 100%;
  }
}

.product-card__link:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.product-card__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.28) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.product-card:hover .product-card__shine {
  transform: translateX(120%);
}

.product-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s var(--ease-out), filter 0.5s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.03);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    165deg,
    rgba(0, 36, 74, 0.05) 0%,
    rgba(0, 71, 143, 0.25) 45%,
    rgba(0, 53, 102, 0.88) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.35rem 1.5rem 1.4rem;
  transition: background 0.45s var(--ease-out), padding 0.35s ease;
}

.product-card:hover .product-card__overlay {
  background: linear-gradient(
    165deg,
    rgba(0, 36, 74, 0.08) 0%,
    rgba(0, 71, 143, 0.35) 42%,
    rgba(0, 53, 102, 0.94) 100%
  );
  padding-bottom: 1.55rem;
}

.product-card__overlay-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
}

.product-card__overlay h3 {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  margin: 0;
  flex: 1 1 8rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s var(--ease-out);
}

.product-card:hover .product-card__overlay h3 {
  transform: translateY(-2px);
}

.product-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.45s var(--ease-spring);
}

.product-card:hover .product-card__chip {
  opacity: 1;
  transform: translateY(0);
}

.product-card__chip svg {
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}

.product-card:hover .product-card__chip svg {
  transform: translateX(3px);
}

.product-card__link:focus-visible .product-card__chip {
  opacity: 1;
  transform: translateY(0);
}

.products-cta {
  text-align: center;
  margin-top: 2.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover {
    transform: none;
  }

  .product-card:hover .product-card__media img {
    transform: scale(1.02);
    filter: none;
  }

  .product-card:hover .product-card__shine {
    transform: translateX(-120%);
  }

  .product-card:hover .product-card__chip,
  .product-card:hover .product-card__chip svg,
  .product-card:hover .product-card__overlay h3 {
    transform: none;
  }

  .product-card__chip {
    opacity: 1;
    transform: none;
  }
}

/* —— Quality (modern layout) —— */
.section-quality {
  padding: clamp(3.25rem, 7vw, 5.75rem) 0;
  background: var(--primary-soft);
}

.section-quality--modern {
  position: relative;
  overflow: hidden;
  background: linear-gradient(152deg, #eef3fa 0%, #e2ecf8 38%, #d5e5f4 72%, #cadef0 100%);
}

.section-quality--modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 75% at 100% -5%, rgba(10, 110, 189, 0.16), transparent 52%),
    radial-gradient(ellipse 70% 45% at -8% 105%, rgba(0, 71, 143, 0.09), transparent 48%);
  pointer-events: none;
}

.section-quality--modern > .container.quality-layout {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: clamp(1.2rem, 2.8vw, 2rem);
  padding: clamp(1.25rem, 3.2vw, 2.4rem);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 22px 56px rgba(0, 55, 102, 0.11), 0 6px 20px rgba(0, 71, 143, 0.05);
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(1.5rem, 4vw, 2.75rem);
  row-gap: clamp(1.35rem, 3vw, 2.25rem);
  align-items: start;
}

.quality-layout__headline-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 1.65rem);
  width: 100%;
  min-width: 0;
}

.section-quality--modern .quality-layout__headline-row {
  padding-bottom: clamp(1rem, 2.2vw, 1.45rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  border-bottom: 1px solid rgba(0, 71, 143, 0.09);
}

.quality-layout__kicker {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-bright);
  white-space: nowrap;
}

.section-quality--modern .quality-layout__kicker {
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(10, 110, 189, 0.16), rgba(0, 71, 143, 0.08));
  border: 1px solid rgba(10, 110, 189, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.quality-layout__headline-row h2 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--primary);
  font-size: clamp(1.05rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  font-weight: 800;
}

.section-quality--modern .quality-layout__headline-row h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.quality-layout__headline-row .quality-layout__lead {
  margin: 0;
  flex: 0 1 38%;
  min-width: 0;
  max-width: none;
  color: var(--text-muted);
  font-size: clamp(0.8rem, 1.35vw, 0.95rem);
  line-height: 1.45;
}

.section-quality--modern .quality-layout__headline-row .quality-layout__lead {
  color: #2d4358;
  font-weight: 500;
  line-height: 1.52;
}

.quality-layout__tabs-wrap {
  min-width: 0;
  align-self: stretch;
}

@media (max-width: 720px) {
  .quality-layout__headline-row {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .quality-layout__headline-row .quality-layout__kicker {
    white-space: normal;
  }

  .quality-layout__headline-row .quality-layout__lead {
    flex: 1 1 auto;
    max-width: 42ch;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .quality-layout__headline-row h2 {
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  }
}

.quality-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 71, 143, 0.1);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.35s ease, background 0.3s ease;
}

.quality-item--tab {
  width: 100%;
  margin: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.quality-item--tab:focus {
  outline: none;
}

.quality-item--tab:focus-visible {
  outline: 3px solid var(--primary-bright);
  outline-offset: 2px;
}

.quality-item--tab.is-active {
  border-color: rgba(10, 110, 189, 0.45);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(228, 240, 252, 0.98) 100%);
  box-shadow: 0 10px 32px rgba(0, 71, 143, 0.12), 0 0 0 1px rgba(10, 110, 189, 0.12);
  transform: translateX(4px);
}

.quality-item:hover {
  transform: translateX(6px);
  border-color: rgba(0, 71, 143, 0.22);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 28px rgba(0, 71, 143, 0.1);
}

.quality-item--tab.is-active:hover {
  transform: translateX(6px);
}

.section-quality--modern .quality-items {
  gap: 0.48rem;
}

.section-quality--modern .quality-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(0, 71, 143, 0.07);
  box-shadow: 0 1px 3px rgba(0, 71, 143, 0.05);
}

.section-quality--modern .quality-item--tab.is-active {
  transform: none;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 244, 252, 0.96) 100%);
  border-color: rgba(10, 110, 189, 0.22);
  box-shadow: inset 3px 0 0 var(--primary-bright), 0 10px 28px rgba(0, 71, 143, 0.08);
}

.section-quality--modern .quality-item:hover {
  transform: translateX(3px);
  border-color: rgba(0, 71, 143, 0.14);
}

.section-quality--modern .quality-item--tab.is-active:hover {
  transform: translateX(3px);
}

.section-quality--modern .quality-item__icon {
  background: linear-gradient(145deg, rgba(10, 110, 189, 0.14), rgba(0, 71, 143, 0.06));
}

.quality-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(0, 71, 143, 0.12), rgba(10, 110, 189, 0.06));
  transition: transform 0.35s var(--ease-spring), color 0.25s ease;
}

.quality-item:hover .quality-item__icon {
  transform: scale(1.08);
  color: var(--primary-dark);
}

.quality-layout__side {
  min-width: 0;
}

.quality-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quality-panel__text {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 71, 143, 0.1);
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 28px rgba(0, 71, 143, 0.06);
}

.quality-panel__figure {
  margin: 0;
}

.quality-panel__frame {
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(145deg, rgba(0, 71, 143, 0.35), rgba(10, 110, 189, 0.4), rgba(255, 255, 255, 0.55));
  box-shadow: 0 16px 48px rgba(0, 71, 143, 0.14);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.section-quality--modern .quality-panel__frame {
  border-radius: clamp(1rem, 2.2vw, 1.35rem);
  padding: 4px;
  background: linear-gradient(148deg, rgba(0, 71, 143, 0.48) 0%, rgba(10, 110, 189, 0.36) 45%, rgba(255, 255, 255, 0.42) 100%);
  box-shadow: 0 18px 52px rgba(0, 55, 102, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.section-quality--modern .quality-panel__frame img {
  border-radius: 14px;
}

.quality-panel__frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 71, 143, 0.18);
}

.quality-panel__frame img {
  display: block;
  width: 100%;
  border-radius: 17px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s var(--ease-out), filter 0.45s ease, opacity 0.35s var(--ease-out);
}

.quality-panel__preview-img {
  opacity: 1;
}

.quality-panel__preview-img.is-switching {
  opacity: 0;
}

.quality-panel__frame:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .quality-item:hover,
  .quality-item--tab.is-active {
    transform: none;
  }

  .quality-item:hover .quality-item__icon {
    transform: none;
  }

  .quality-panel__frame:hover {
    transform: none;
  }

  .quality-panel__frame:hover img {
    transform: none;
    filter: none;
  }

  .quality-panel__preview-img,
  .quality-panel__preview-img.is-switching {
    transition: none;
    opacity: 1 !important;
  }
}

/* —— Features (accordion + imagery) —— */
.section-features {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.section-features--modern {
  background: linear-gradient(180deg, var(--white) 0%, #f7fafd 45%, var(--primary-light) 100%);
}

.features-intro__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-bright);
}

.features-intro__lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.feature-acc {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-stack {
  gap: 1rem;
  max-width: 960px;
}

.feature-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 71, 143, 0.12);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 28px rgba(0, 71, 143, 0.06);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.3s ease;
}

.feature-item.is-open {
  border-color: rgba(0, 71, 143, 0.22);
  box-shadow: 0 14px 40px rgba(0, 71, 143, 0.1);
}

.feature-item:nth-child(1) .feature-item__head {
  background: linear-gradient(90deg, var(--primary-light), rgba(255, 255, 255, 0.65));
}

.feature-item:nth-child(2) .feature-item__head {
  background: linear-gradient(90deg, #eef5fc, rgba(255, 255, 255, 0.7));
}

.feature-item:nth-child(3) .feature-item__head {
  background: linear-gradient(90deg, #e8f0f8, rgba(255, 255, 255, 0.72));
}

.feature-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease, color 0.25s ease;
}

.feature-item__title {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.feature-item__head:hover {
  filter: brightness(0.99);
}

.feature-item.is-open .feature-item__head {
  color: var(--primary-dark);
}

.feature-item__icon {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.feature-item.is-open .feature-item__icon {
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(0, 71, 143, 0.08);
}

.feature-item__icon::before,
.feature-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.feature-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature-item.is-open .feature-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.feature-item__panel {
  display: none;
  padding: 0 1.35rem 1.35rem;
  background: rgba(255, 255, 255, 0.92);
}

.feature-item.is-open .feature-item__panel {
  display: block;
}

.feature-item__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding-top: 0.15rem;
}

.feature-item__text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.feature-item__figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 71, 143, 0.12);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.feature-item.is-open .feature-item__figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 71, 143, 0.16);
}

.feature-item__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out), filter 0.4s ease;
}

.feature-item.is-open .feature-item__figure:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .feature-item {
    transition: none;
  }

  .feature-item__figure {
    transition: none;
  }

  .feature-item__figure img {
    transition: none;
  }

  .feature-item.is-open .feature-item__figure:hover {
    transform: none;
  }

  .feature-item.is-open .feature-item__figure:hover img {
    transform: none;
    filter: none;
  }
}

/* —— Global presence —— */
.section-global {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--white);
  border-top: 1px solid var(--primary-soft);
}

.section-global--modern {
  position: relative;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 42%, #fafcfe 100%);
  border-top: none;
  overflow: hidden;
}

.section-global--modern::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  max-height: 420px;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(0, 71, 143, 0.07), transparent 70%);
  pointer-events: none;
}

.section-global--modern .container {
  position: relative;
  z-index: 1;
}

.presence-intro__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-bright);
}

.presence-intro__lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.presence-slider {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.presence-slider__wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(0.45rem, 2vw, 0.85rem);
  align-items: stretch;
}

.presence-slider__viewport {
  --presence-gap: clamp(0.5rem, 1.5vw, 0.85rem);
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.35rem;
  padding: 0.35rem 0.15rem 0.85rem;
  margin: 0;
  outline: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.presence-slider__viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 71, 143, 0.25);
  border-radius: 14px;
}

.presence-slider__viewport::-webkit-scrollbar {
  display: none;
}

.presence-slider__track {
  display: flex;
  gap: var(--presence-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
}

.presence-slide {
  flex: 0 0 clamp(148px, 42vw, 220px);
  scroll-snap-align: start;
}

@supports (container-type: inline-size) {
  .presence-slider__viewport {
    container-type: inline-size;
    container-name: presence;
  }

  .presence-slide {
    flex: 0 0 calc((100cqi - 1 * var(--presence-gap)) / 2);
  }

  @container presence (min-width: 520px) {
    .presence-slide {
      flex: 0 0 calc((100cqi - 3 * var(--presence-gap)) / 4);
    }
  }

  @container presence (min-width: 840px) {
    .presence-slide {
      flex: 0 0 calc((100cqi - 4 * var(--presence-gap)) / 5);
    }
  }
}

.presence-slide__card {
  position: relative;
  margin: 0;
  padding: 1rem 0.85rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 71, 143, 0.1);
  box-shadow: 0 6px 24px rgba(0, 71, 143, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}

.presence-slide__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 71, 143, 0.2);
  box-shadow: 0 14px 36px rgba(0, 71, 143, 0.12);
}

.presence-slide__flag {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: linear-gradient(160deg, var(--primary-light), #eef5fb);
  border: 1px solid rgba(0, 71, 143, 0.08);
}

.presence-slide__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.presence-slide__name {
  margin: 0.85rem 0 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.3;
}

.presence-slider__btn {
  position: relative;
  z-index: 1;
  align-self: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(0, 71, 143, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 71, 143, 0.12);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, color 0.2s ease, border-color 0.2s ease,
    opacity 0.2s ease;
}

.presence-slider__btn:hover:not(:disabled) {
  color: var(--primary-bright);
  border-color: rgba(0, 71, 143, 0.22);
  box-shadow: 0 10px 32px rgba(0, 71, 143, 0.16);
  transform: scale(1.05);
}

.presence-slider__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 71, 143, 0.28), 0 8px 26px rgba(0, 71, 143, 0.12);
}

.presence-slider__btn:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 14px rgba(0, 71, 143, 0.06);
}

.presence-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding: 0;
}

.presence-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: rgba(0, 71, 143, 0.22);
  cursor: pointer;
  transition: width 0.35s var(--ease-out), background 0.25s ease, transform 0.2s ease;
}

.presence-slider__dot:hover {
  background: rgba(0, 71, 143, 0.38);
  transform: scale(1.15);
}

.presence-slider__dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 71, 143, 0.28);
}

.presence-slider__dot[aria-current="true"] {
  width: 26px;
  background: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .presence-slide__card,
  .presence-slider__btn,
  .presence-slider__dot {
    transition: none;
  }

  .presence-slide__card:hover {
    transform: none;
  }

  .presence-slider__btn:hover:not(:disabled) {
    transform: none;
  }

  .presence-slider__dot:hover {
    transform: none;
  }
}

/* —— Footer: editorial (flat slate, typographic) —— */
.site-footer {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer--editorial {
  position: relative;
  padding: 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 53, 102, 0.45), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(0, 53, 102, 0.42), transparent 36%),
    linear-gradient(165deg, #0a6ebd 0%, #095fa4 48%, #084f8b 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer--editorial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-bright), var(--primary), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.site-footer--editorial .site-footer__cta {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 5vw, 3.25rem) 0 clamp(1.75rem, 3vw, 2.25rem);
  border-bottom: 1px solid rgba(10, 110, 189, 0.28);
}

.site-footer--editorial .site-footer__main {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 2.75rem) 0 1.5rem;
}

.footer-cta__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.35rem, 3vw, 1.85rem);
}

.footer-cta__content {
  max-width: 38rem;
}

.footer-cta__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer--editorial .footer-cta__kicker {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.24em;
}

.footer-cta__content h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--white);
}

.footer-cta__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer--editorial .footer-cta__lead {
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.site-footer--editorial .footer-cta__btn {
  gap: 0.6rem;
  padding: 0.82rem 1.55rem 0.82rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  overflow: visible;
  isolation: auto;
  transition: background 0.3s var(--ease-out), color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.site-footer--editorial .footer-cta__btn::before,
.site-footer--editorial .footer-cta__btn::after {
  display: none;
}

.site-footer--editorial .footer-cta__btn:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 71, 143, 0.28);
  text-decoration: none;
}

.site-footer--editorial .footer-cta__btn-text {
  z-index: auto;
}

.site-footer--editorial .footer-cta__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  transition: color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease-spring), border-color 0.3s ease;
}

.site-footer--editorial .footer-cta__btn:hover .footer-cta__btn-icon {
  color: var(--primary);
  background: rgba(0, 71, 143, 0.08);
  border-color: rgba(0, 71, 143, 0.12);
  transform: translateX(3px);
}

.site-footer--editorial .footer-cta__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.footer-cta__btn-icon svg {
  display: block;
}

@media (min-width: 768px) {
  .footer-cta__container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1.5rem 2rem;
  }

  .footer-cta__content {
    flex: 1 1 16rem;
    max-width: none;
  }

  .footer-cta__btn {
    flex-shrink: 0;
  }
}

.site-footer--editorial .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr) minmax(0, 1.02fr);
  gap: clamp(1.15rem, 2.5vw, 1.65rem);
  align-items: stretch;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.site-footer--editorial .footer-col {
  padding: clamp(1.15rem, 2.5vw, 1.45rem);
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.site-footer--editorial .footer-col .logo {
  margin: 0;
  line-height: 0;
}

.site-footer--editorial .footer-col .logo__img--footer {
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
  opacity: 0.98;
}

.footer-col__text {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer--editorial .footer-quick__title,
.site-footer--editorial .footer-contact__title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(10, 110, 189, 0.35);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.78);
}

.footer-quick__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-quick__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(10, 110, 189, 0.22);
  color: #93c5fd;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s var(--ease-spring);
}

.footer-quick__ico svg {
  display: block;
}

.footer-quick__label {
  min-width: 0;
}

.site-footer--editorial .footer-quick__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.45rem;
  margin: 0 -0.35rem;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-out);
}

.site-footer--editorial .footer-quick__link:hover {
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--primary-bright);
  transform: translateX(2px);
}

.site-footer--editorial .footer-quick__link:hover .footer-quick__ico {
  background: rgba(10, 110, 189, 0.38);
  color: #e0f2fe;
  transform: scale(1.04);
}

.footer-address {
  margin: 0;
  font-style: normal;
}

.footer-address__row {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  gap: 0.65rem 0.75rem;
  align-items: start;
  margin-top: 1rem;
}

.footer-address__row:first-of-type {
  margin-top: 0;
}

.footer-address__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.1rem;
  border-radius: 10px;
  background: rgba(10, 110, 189, 0.22);
  color: #93c5fd;
}

.footer-address__ico svg {
  display: block;
}

.footer-address__block {
  min-width: 0;
}

.footer-address__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.65);
}

.footer-address__value {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-address__dot {
  margin: 0 0.3rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-address__a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-address__a:hover {
  color: #bae6fd;
  border-bottom-color: rgba(125, 211, 252, 0.5);
  text-decoration: none;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(1rem, 2vw, 1.35rem);
  margin-top: 0.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  font-size: 0.82rem;
}

.footer-bar__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.footer-bar__muted {
  color: rgba(255, 255, 255, 0.48);
}

.footer-bar__sep {
  margin: 0 0.35rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bar__attrib {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  white-space: nowrap;
}

.footer-bar__credit {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-bar__credit:hover {
  color: #fff;
}

.footer-bar__credit:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.85);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  justify-content: flex-end;
}

.footer-bar__link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.88rem;
  font-weight: 600;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
}

.footer-bar__link:hover {
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(10, 110, 189, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.footer-bar__link:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.85);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bar__list {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer--editorial .footer-quick__link,
  .site-footer--editorial .footer-cta__btn,
  .site-footer--editorial .footer-cta__btn-icon,
  .footer-quick__ico,
  .footer-bar__link {
    transition: none;
  }

  .site-footer--editorial .footer-quick__link:hover,
  .site-footer--editorial .footer-quick__link:hover .footer-quick__ico {
    transform: none;
  }

  .site-footer--editorial .footer-cta__btn:hover {
    transform: none;
  }

  .site-footer--editorial .footer-cta__btn:hover .footer-cta__btn-icon {
    transform: none;
  }

  .footer-bar__link:hover {
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .site-nav.is-open
   {
          background: #003f7c;
      }
  /*
   * Full-viewport scrim below the header bar: guarantees page content (hero) never shows
   * through the menu on any browser / compositor.
   */
  body.site-nav-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: #fff;
    background-color: #fff;
    background-image: none;
    pointer-events: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    position: relative;
    z-index: 0;
  }

  /* Keep logo + toggle above the full-screen nav sheet */
  .site-header .logo--mark,
  .site-header .nav-toggle {
    position: relative;
    z-index: 2;
  }

  /* Solid header bar on small screens (transparent desktop hero header is hard to read on phones) */
  .site-header {
    /* Shorthand + explicit color so nothing resets only background-color; no glass effect on the bar */
    background: var(--white);
    background-color: var(--white);
    background-image: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom-color: rgba(0, 71, 143, 0.1);
    box-shadow: 0 2px 14px rgba(0, 71, 143, 0.08);
  }
  .site-nav.is-open
   {
          background: #003f7c;
      }
  /* When menu is open: keep the header bar white to match the white menu beneath.
     Two selectors so we work on browsers without :has() support too. */
  .site-header:has(.site-nav.is-open),
  body.site-nav-open .site-header {
    z-index: 10001;
    background-color: #ffffff;
    background-image: none;
    border-bottom-color: rgba(0, 71, 143, 0.12);
    box-shadow: 0 2px 14px rgba(0, 71, 143, 0.08);
  }

  .site-header:has(.site-nav.is-open) .logo--mark,
  body.site-nav-open .site-header .logo--mark {
    color: var(--primary);
  }

  .site-header:has(.site-nav.is-open) .logo__img,
  body.site-nav-open .site-header .logo__img {
    filter: none;
  }

  .site-header:has(.site-nav.is-open) .nav-toggle,
  body.site-nav-open .site-header .nav-toggle {
    border-color: rgba(0, 71, 143, 0.22);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 71, 143, 0.1);
  }

  .site-header:has(.site-nav.is-open) .nav-toggle:hover,
  body.site-nav-open .site-header .nav-toggle:hover {
    border-color: rgba(0, 71, 143, 0.38);
    box-shadow: 0 6px 20px rgba(0, 71, 143, 0.14);
  }

  .site-header:has(.site-nav.is-open) .nav-toggle__bar,
  body.site-nav-open .site-header .nav-toggle__bar {
    background: var(--primary);
  }

  .site-header:not(.site-header--scrolled) .logo--mark {
    color: var(--primary);
  }

  .site-header:not(.site-header--scrolled) .logo__img {
    filter: none;
  }

  .site-header:not(.site-header--scrolled) .nav-toggle {
    border-color: rgba(0, 71, 143, 0.22);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 71, 143, 0.1);
  }

  .site-header:not(.site-header--scrolled) .nav-toggle:hover {
    border-color: rgba(0, 71, 143, 0.38);
    box-shadow: 0 6px 20px rgba(0, 71, 143, 0.14);
  }

  .site-header:not(.site-header--scrolled) .nav-toggle__bar {
    background: var(--primary);
  }

  /* Open state wins over “not scrolled” bar colors — keep header white & primary-colored */
  .site-header:has(.site-nav.is-open):not(.site-header--scrolled) .logo--mark,
  body.site-nav-open .site-header:not(.site-header--scrolled) .logo--mark {
    color: var(--primary);
  }

  .site-header:has(.site-nav.is-open):not(.site-header--scrolled) .logo__img,
  body.site-nav-open .site-header:not(.site-header--scrolled) .logo__img {
    filter: none;
  }

  .site-header:has(.site-nav.is-open):not(.site-header--scrolled) .nav-toggle,
  body.site-nav-open .site-header:not(.site-header--scrolled) .nav-toggle {
    border-color: rgba(0, 71, 143, 0.22);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 71, 143, 0.1);
  }

  .site-header:has(.site-nav.is-open):not(.site-header--scrolled) .nav-toggle__bar,
  body.site-nav-open .site-header:not(.site-header--scrolled) .nav-toggle__bar {
    background: var(--primary);
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    min-height: 100dvh;
    border-bottom: none;
    padding: calc(var(--header-h) + 0.85rem) clamp(0.85rem, 3.5vw, 1.15rem)
      calc(1.35rem + env(safe-area-inset-bottom, 0px));
    transform: translate3d(0, -100%, 0);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s var(--ease-out), visibility 0s linear 0.28s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 1;
    mix-blend-mode: normal;
    /* Single full-viewport #fff sheet (no gap under sticky bar; beats compositor glitches) */
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
  }

  .site-nav::before {
    display: none;
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.28s var(--ease-out), visibility 0s linear 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem 0;
    border-radius: 0;
    background-color: #ffffff;
    border: none;
    border-top: 1px solid rgba(0, 71, 143, 0.1);
    border-bottom: 1px solid rgba(0, 71, 143, 0.1);
    box-shadow: none;
  }

  .site-nav a,
  .site-header:not(.site-header--scrolled) .site-nav a,
  .site-header--scrolled .site-nav a {
    display: block;
    padding: 1rem 0.35rem;
    border-bottom: 1px solid rgba(0, 71, 143, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .site-nav li:last-child a {
    border-bottom: none;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"],
  .site-header:not(.site-header--scrolled) .site-nav a:hover,
  .site-header:not(.site-header--scrolled) .site-nav a[aria-current="page"] {
    color: var(--primary-dark);
    background: rgba(0, 71, 143, 0.06);
  }

  /* Hero header uses white nav links on desktop; force dark links on mobile menu so they stay on #fff */
  body.site-nav-open .site-header .site-nav a,
  .site-header:has(.site-nav.is-open) .site-nav a {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary);
  }

  body.site-nav-open .site-header .site-nav a:hover,
  body.site-nav-open .site-header .site-nav a[aria-current="page"],
  .site-header:has(.site-nav.is-open) .site-nav a:hover,
  .site-header:has(.site-nav.is-open) .site-nav a[aria-current="page"] {
    color: var(--primary-dark) !important;
    -webkit-text-fill-color: var(--primary-dark);
  }

  .site-nav a.nav-link::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .site-nav .nav-cta-mobile {
    display: block;
    margin: 0.75rem 0 0;
    padding: 0 0.85rem 0.35rem;
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 1.5rem 2.5rem;
  }

  .hero__text {
    padding: 0;
    order: 1;
  }

  .hero__visual {
    order: 2;
    min-height: 240px;
    margin-top: 0;
    margin-right: calc(-1 * clamp(1rem, 3vw, 3rem));
    margin-left: calc(-1 * clamp(1rem, 3vw, 3rem));
    margin-bottom: calc(-1 * clamp(1.5rem, 5vw, 2.5rem));
    aspect-ratio: 16 / 10;
  }

  .about-ui__grid,
  .quality-layout,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-quality--modern .quality-layout__tabs-wrap {
    border-right: none;
    padding-right: 0;
    padding-bottom: clamp(0.85rem, 2.5vw, 1.25rem);
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
    border-bottom: 1px solid rgba(0, 71, 143, 0.09);
  }

  .section-quality--modern > .container.quality-layout {
    padding: clamp(1.05rem, 3vw, 1.65rem);
  }

  .product-card--large {
    grid-row: auto;
    min-height: 260px;
  }

  .product-card__link {
    min-height: 260px;
  }

  .product-card--large .product-card__link {
    min-height: 300px;
  }

  .site-footer--editorial .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item__body {
    grid-template-columns: 1fr;
  }

  .feature-item__figure img {
    max-width: 100%;
  }
}

@media (min-width: 901px) {
  .site-nav .nav-cta-mobile {
    display: none;
  }

  .section-quality--modern .quality-layout__tabs-wrap {
    padding-right: clamp(1rem, 2.4vw, 1.65rem);
    border-right: 1px solid rgba(0, 71, 143, 0.1);
  }

  .section-quality--modern .quality-layout__side {
    align-self: center;
  }
}
