:root {
  --ink: #141821;
  --muted: #5c6675;
  --line: #d8dde6;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --blue: #145ca8;
  --blue-2: #0f73c9;
  --blue-dark: #092b53;
  --yellow: #f2d300;
  --steel: #263241;
  --radius: 8px;
  --shadow: 0 26px 60px rgba(14, 28, 48, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

[id] {
  scroll-margin-top: 128px;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(216, 221, 230, .9);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: 108px;
  padding: 12px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
}

.brand img {
  height: 86px;
  width: auto;
}

.product-page .brand img {
  height: 78px;
}

.brand img:first-child {
  height: 86px;
  width: auto;
}

.brand img:last-child {
  height: 86px;
}

.brand span {
  display: none;
  background: var(--line);
  height: 42px;
  width: 1px;
}

.nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 32px);
  justify-content: center;
}

.nav a,
.topbar__call {
  color: #263241;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  white-space: nowrap;
}

.nav a {
  padding: 12px 0;
  transition: color .25s ease, transform .25s ease;
}

.nav a::after {
  background: var(--yellow);
  bottom: 2px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
  width: 100%;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
  transform: translateY(-3px);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__call {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 16px;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease, transform .22s ease;
}

.topbar__call:hover,
.topbar__call:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(20, 92, 168, .2);
  color: #fff;
  outline: none;
  transform: translateY(-3px);
}

.service-head {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.service-link-grid {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.service-link-grid a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-dark);
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 74px;
  padding: 18px;
  text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.service-link-grid a:hover,
.service-link-grid a:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(20, 92, 168, .12);
  color: var(--blue);
  outline: none;
  transform: translateY(-2px);
}

.service-detail {
  padding-top: clamp(54px, 8vw, 96px);
}

.service-points {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.service-points article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.service-points h3 {
  color: var(--blue-dark);
  margin: 0 0 10px;
}

.service-points p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.hero {
  color: #fff;
  display: grid;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  position: relative;
}

.hero__slider,
.hero__shade,
.hero__beam,
.hero__content,
.hero__stats {
  grid-area: 1 / 1;
}

.hero__slider {
  position: relative;
  z-index: 0;
}

.hero__slide {
  animation: heroKenburns 18s linear infinite;
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.05);
}

.hero__slide--one {
  animation-delay: 0s;
  background-image: url("assets/gh/slide-solution-JENS-S-V02.jpg");
}

.hero__slide--two {
  animation-delay: 6s;
  background-image: url("assets/hero.jpg");
}

.hero__slide--three {
  animation-delay: 12s;
  background-image: url("assets/real/DSC_0773.JPG");
}

.hero__shade {
  background:
    radial-gradient(circle at var(--mx, 78%) var(--my, 30%), rgba(242, 211, 0, .32), transparent 18%),
    linear-gradient(100deg, rgba(6, 13, 23, .94) 0%, rgba(8, 18, 31, .75) 44%, rgba(8, 18, 31, .18) 100%),
    linear-gradient(0deg, rgba(6, 13, 23, .78), transparent 55%);
  z-index: 1;
}

.hero__beam {
  animation: beamSweep 7s ease-in-out infinite;
  background: linear-gradient(120deg, transparent 0%, rgba(242, 211, 0, .52) 48%, transparent 56%);
  filter: blur(1px);
  opacity: .72;
  transform: translateX(-80%) skewX(-12deg);
  width: 36%;
  z-index: 2;
}

.hero__content {
  align-self: center;
  max-width: 900px;
  padding: 86px clamp(22px, 6vw, 88px) 150px;
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: .94;
  margin: 0;
  max-width: 900px;
}

.hero__lead {
  color: rgba(255, 255, 255, .92);
  font-size: 21px;
  line-height: 1.5;
  max-width: 700px;
}

.hero__trust {
  align-items: center;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .26);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  margin: 2px 0 28px;
  max-width: 680px;
  padding: 14px 18px;
}

.hero__stats {
  align-self: end;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: clamp(22px, 6vw, 88px);
  max-width: 780px;
  position: relative;
  z-index: 4;
}

.hero__stats span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  gap: 4px;
  padding: 18px;
}

.hero__stats strong {
  color: var(--yellow);
  font-size: 19px;
}

.actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  transition: box-shadow .24s ease, transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
  outline: none;
  transform: translateY(-4px);
}

.button--primary {
  background: var(--yellow);
  color: #171717;
}

.button--secondary {
  background: var(--blue);
  color: #fff;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, .58);
  color: #fff;
}

.motion-strip {
  background: var(--yellow);
  color: #10141b;
  font-weight: 900;
  overflow: hidden;
  white-space: nowrap;
}

.motion-strip div {
  animation: marquee 22s linear infinite;
  display: inline-flex;
  gap: 42px;
  padding: 16px 0;
}

.motion-strip span {
  position: relative;
}

.motion-strip span::after {
  content: "/";
  margin-left: 42px;
  opacity: .35;
}

.intro,
.certification,
.contact,
.section-head {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 590px);
}

.intro,
.services,
.equipment,
.references,
.certification,
.contact,
.showcase,
.coverage {
  padding: 82px clamp(20px, 6vw, 88px);
}

.intro {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand-note {
  background: #f4f7fb;
  border: 1px solid #d8dde6;
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  margin-top: 24px;
  padding: 18px 20px;
}

.brand-note strong {
  color: var(--blue-dark);
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.brand-note span {
  color: #263241;
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.48;
}

h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  margin: 0;
}

h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.services {
  background:
    linear-gradient(180deg, #f4f7fb, #eef3f8);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: 236px 1fr;
  overflow: hidden;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.service-card:hover {
  border-color: rgba(20, 92, 168, .46);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.service-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease, filter .7s ease;
  width: 100%;
}

.service-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.1);
}

.service-card div {
  padding: 28px;
}

.service-card__tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.equipment {
  background:
    radial-gradient(circle at 84% 8%, rgba(20, 92, 168, .12), transparent 30%),
    #fff;
}

.section-head {
  align-items: end;
}

.equipment__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.equipment-card {
  animation: cardFloat 6.5s ease-in-out infinite;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: 238px auto auto;
  min-height: 330px;
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  transform-style: preserve-3d;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.equipment-card::before {
  background: radial-gradient(circle at var(--x, 50%) var(--y, 30%), rgba(242, 211, 0, .36), transparent 33%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease;
}

.equipment-card:nth-child(2n) {
  animation-delay: -1.7s;
}

.equipment-card:nth-child(3n) {
  animation-delay: -3.4s;
}

.equipment-card:hover,
.equipment-card:focus-visible {
  border-color: rgba(20, 92, 168, .7);
  box-shadow: 0 24px 60px rgba(20, 92, 168, .2);
  outline: none;
  transform: translateY(-12px) scale(1.02);
}

.equipment-card:hover::before,
.equipment-card:focus-visible::before {
  opacity: 1;
}

.equipment-card img {
  align-self: center;
  height: 100%;
  justify-self: center;
  object-fit: cover;
  object-position: center;
  position: relative;
  transition: filter .45s ease, transform .45s ease;
  width: 100%;
  z-index: 1;
}

.equipment-card img.equipment-img--bridge,
.product-hero__image img.equipment-img--bridge,
.product-gallery img.equipment-img--bridge {
  background: #f4f7fb;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.equipment-card img.equipment-img--bracket,
.product-hero__image img.equipment-img--bracket,
.product-gallery img.equipment-img--bracket {
  background: #f4f7fb;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.equipment-card img.equipment-img--contain,
.equipment-card img.equipment-img--chain,
.product-hero__image img.equipment-img--contain,
.product-hero__image img.equipment-img--chain,
.product-gallery img.equipment-img--contain,
.product-gallery img.equipment-img--chain {
  background: #f4f7fb;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.equipment-card:hover img,
.equipment-card:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.08);
}

.equipment-card:hover img.equipment-img--contain,
.equipment-card:focus-visible img.equipment-img--contain,
.equipment-card:hover img.equipment-img--chain,
.equipment-card:focus-visible img.equipment-img--chain,
.equipment-card:hover img.equipment-img--bridge,
.equipment-card:focus-visible img.equipment-img--bridge,
.equipment-card:hover img.equipment-img--bracket,
.equipment-card:focus-visible img.equipment-img--bracket {
  transform: scale(1.02);
}

.equipment-card span {
  color: #17202b;
  font-size: 22px;
  font-weight: 900;
  padding: 0 24px 4px;
  position: relative;
  z-index: 1;
}

.equipment-card small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.references {
  background:
    linear-gradient(180deg, #eef3f8 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.references__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.reference-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 520px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.reference-card:hover,
.reference-card:focus-within {
  border-color: rgba(20, 92, 168, .58);
  box-shadow: 0 24px 58px rgba(14, 28, 48, .14);
  transform: translateY(-8px);
}

.reference-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .65s ease;
  width: 100%;
}

.reference-card:hover img {
  transform: scale(1.08);
}

.reference-card div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 24px;
}

.reference-card__sector {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.reference-card h3 {
  font-size: 22px;
}

.reference-card p {
  margin-top: 0;
}

.reference-card a {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.showcase {
  align-items: center;
  background: #0c1724;
  color: #fff;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
}

.showcase__image {
  border-radius: var(--radius);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.showcase__image img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  width: 100%;
}

.showcase:hover .showcase__image img {
  transform: scale(1.07);
}

.showcase h2,
.showcase p {
  color: #fff;
}

.showcase .section-kicker {
  color: var(--yellow);
}

.certification {
  background:
    linear-gradient(135deg, rgba(15, 28, 44, .98), rgba(23, 45, 71, .96)),
    url("assets/real/0016.jpg") center / cover;
  color: #fff;
}

.certification .section-kicker,
.certification h2 {
  color: #fff;
}

.certification p {
  color: rgba(255, 255, 255, .8);
}

.coverage {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
}

.coverage__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.coverage__list li {
  background: #eef4fb;
  border: 1px solid #cbd9e8;
  border-radius: var(--radius);
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  padding: 12px 14px;
}

.contact {
  align-items: start;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 211, 0, .22), transparent 22%),
    linear-gradient(135deg, rgba(11, 55, 105, .99), rgba(4, 18, 35, .96)),
    url("assets/logos/header-original.jpg") center / cover;
  color: #fff;
}

.contact .section-kicker,
.contact p,
.contact h2 {
  color: #fff;
}

.contact__lead {
  max-width: 560px;
}

.contact address {
  display: grid;
  font-style: normal;
  gap: 8px;
  margin-top: 28px;
}

.contact address strong {
  color: var(--yellow);
  font-size: 14px;
  text-transform: uppercase;
}

.contact address span,
.contact address a {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
  color: #17202b;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
}

.contact-form label {
  color: #263241;
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #f7f9fc;
  border: 1px solid #d4dbe6;
  border-radius: var(--radius);
  color: #17202b;
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 92, 168, .12);
  outline: none;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form__check {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  text-transform: none;
}

.contact-form__check input {
  min-height: 18px;
  margin-top: 1px;
}

.contact-form__check a,
.legal-content a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-status {
  color: #116234;
  font-size: 15px;
  font-weight: 800;
  min-height: 22px;
}

.form-status.is-error {
  color: #a63b27;
}

.hp {
  position: absolute;
  left: -9999px;
}

.site-footer {
  align-items: center;
  background: #101923;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

.site-footer span {
  font-size: 14px;
  font-weight: 900;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--yellow);
}

.legal-page {
  background: var(--soft);
  min-height: calc(100vh - 108px);
}

.legal-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 70px clamp(20px, 7vw, 100px) 56px;
}

.legal-hero .section-kicker {
  color: var(--yellow);
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  margin: 0;
  max-width: 900px;
}

.legal-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(14, 28, 48, .08);
  margin: -22px auto 72px;
  max-width: 980px;
  padding: clamp(28px, 5vw, 56px);
  position: relative;
}

.legal-content h2 {
  color: var(--blue-dark);
  font-size: 22px;
  margin: 34px 0 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #263241;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.reveal {
  animation: revealUp .75s ease both;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroKenburns {
  0% {
    opacity: 0;
    transform: scale(1.05) translateX(0);
  }

  6%,
  32% {
    opacity: 1;
  }

  43%,
  100% {
    opacity: 0;
    transform: scale(1.14) translateX(-1.8%);
  }
}

@keyframes beamSweep {
  0%,
  25% {
    transform: translateX(-95%) skewX(-12deg);
  }

  60%,
  100% {
    transform: translateX(360%) skewX(-12deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

.product-page {
  background: #f4f7fb;
}

.product-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 211, 0, .28), transparent 24%),
    linear-gradient(135deg, #071320, #123f70);
  color: #fff;
  min-height: calc(100vh - 108px);
  padding: 72px clamp(20px, 6vw, 88px);
}

.product-hero__grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
}

.product-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  margin: 0;
}

.product-hero p {
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
}

.product-hero__image {
  animation: cardFloat 5s ease-in-out infinite;
  background: rgba(255, 255, 255, .96);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.product-hero__image img {
  height: min(48vh, 420px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-specs {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.product-specs span {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  padding: 16px;
}

.product-gallery {
  background: #fff;
  padding: 72px clamp(20px, 6vw, 88px);
}

.product-gallery h2 {
  margin-bottom: 28px;
}

.product-gallery__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-gallery figure {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}

.product-gallery img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
  width: 100%;
}

.product-gallery figure:hover img {
  transform: scale(1.08);
}

.product-gallery figure:hover img.equipment-img--bridge,
.product-gallery figure:hover img.equipment-img--bracket,
.product-gallery figure:hover img.equipment-img--contain,
.product-gallery figure:hover img.equipment-img--chain {
  transform: scale(1.02);
}

.product-gallery figcaption {
  color: #263241;
  font-size: 15px;
  font-weight: 900;
  padding: 14px 16px 16px;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .brand img:first-child {
    height: 72px;
  }

  .brand img:last-child {
    height: 72px;
  }

  .nav {
    display: none;
  }

  .intro,
  .certification,
  .contact,
  .section-head,
  .services,
  .showcase,
  .references__grid,
  .coverage,
  .product-hero__grid,
  .product-gallery__grid,
  .service-link-grid,
  .service-points {
    grid-template-columns: 1fr;
  }

  .equipment__grid,
  .references__grid,
  .product-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__stats {
    grid-template-columns: 1fr;
    margin-right: clamp(22px, 6vw, 88px);
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 92px;
  }

  [id] {
    scroll-margin-top: 92px;
  }

  .topbar {
    min-height: 78px;
    padding: 10px 14px;
  }

  .brand {
    max-width: 56vw;
  }

  .brand img {
    max-width: 100%;
  }

  .brand img:first-child {
    height: 54px;
  }

  .brand img:last-child {
    height: 54px;
  }

  .brand span {
    height: 30px;
  }

  .topbar__call {
    font-size: 13px;
    padding: 10px;
  }

  .hero {
    min-height: 980px;
  }

  .hero__content {
    padding: 58px 20px 330px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__stats {
    margin: 0 20px;
  }

  .button {
    width: 100%;
  }

  .intro,
  .services,
  .equipment,
  .references,
  .certification,
  .contact,
  .showcase,
  .coverage,
  .product-hero {
    padding: 58px 20px;
  }

  .equipment__grid,
  .references__grid,
  .product-specs,
  .contact-form,
  .service-link-grid,
  .service-points {
    grid-template-columns: 1fr;
  }

  .equipment-card {
    grid-template-rows: 190px auto auto;
    min-height: 300px;
  }

  .reference-card {
    grid-template-rows: 190px 1fr;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
