:root {
  --green: #1fb400;
  --green-2: #25d300;
  --dark: #090d0f;
  --dark-2: #111518;
  --ink: #17191c;
  --muted: #6f7479;
  --line: #2d3337;
  --paper: #f7f8f6;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Be Vietnam Pro", sans-serif;
  letter-spacing: 0;
}

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

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

section,
footer {
  scroll-margin-top: 176px;
}

.shell {
  width: min(1700px, calc(100% - 92px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, #07090a, #101417);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 360px;
}

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

.brand span {
  color: #f1f4f2;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.brand strong {
  display: block;
  color: var(--green-2);
  font-size: 17px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hotline {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-width: 212px;
  min-height: 66px;
  padding: 10px 22px;
  border: 1px solid #51575c;
  border-radius: 5px;
  font-size: 13px;
  color: #d9dcde;
}

.hotline .icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #07090a;
  color: var(--white);
}

.hotline strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  white-space: nowrap;
}

.quote-btn,
.primary,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #27bd0a, #159200);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.quote-btn {
  min-height: 66px;
  padding: 0 34px;
  font-size: 16px;
  white-space: nowrap;
}

.lang-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-width: 88px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid #51575c;
  border-radius: 999px;
  background: #0a0e10;
  color: #cfd4d4;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lang-toggle span,
.lang-toggle b {
  display: grid;
  min-height: 32px;
  place-items: center;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.lang-toggle span {
  background: var(--green);
  color: var(--white);
}

.lang-toggle b {
  color: #cfd4d4;
}

.lang-toggle.is-en span {
  background: transparent;
  color: #cfd4d4;
}

.lang-toggle.is-en b {
  background: var(--green);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid #3b4246;
  background: #101417;
  color: var(--white);
  border-radius: 4px;
  font-size: 24px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  color: #f0f2f2;
  padding-block: 20px;
}

.nav a.active,
.nav a:hover {
  color: var(--green-2);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 560px;
  color: var(--white);
  overflow: hidden;
  background: #101417;
  isolation: isolate;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  --hero-energy: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #030506 0%, rgba(3, 5, 6, 0.98) 34%, rgba(3, 5, 6, 0.72) 56%, rgba(3, 5, 6, 0.08) 100%),
    url("assets/hero-wire-rope-v2.jpg") right center / cover no-repeat;
  filter: contrast(1.1) saturate(1.04);
  transform: translate3d(calc(var(--hero-x) * -0.14), calc(var(--hero-y) * -0.1 + var(--hero-scroll) * 0.07), 0) scale(1.07);
  transform-origin: center;
  will-change: transform;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 2;
  background:
    linear-gradient(112deg, transparent 0 52%, rgba(255, 255, 255, 0.08) 55%, transparent 59% 100%),
    repeating-linear-gradient(112deg, transparent 0 122px, rgba(209, 226, 224, 0.035) 124px, transparent 130px);
  mix-blend-mode: screen;
  opacity: calc(0.08 + var(--hero-energy) * 0.014);
  transform: translate3d(calc(var(--hero-x) * 0.1), calc(var(--hero-y) * 0.06), 0);
  animation: tensionDrift 9s ease-in-out infinite;
}

.hero::after {
  z-index: 1;
  background:
    radial-gradient(ellipse at 74% 42%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(ellipse at 62% 82%, rgba(31, 180, 0, 0.17), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28% 100%);
  mix-blend-mode: screen;
  opacity: 0.52;
  animation: heroBreath 6.8s ease-in-out infinite;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.62) 0%, transparent 45%, rgba(0, 0, 0, 0.2) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.32;
  pointer-events: none;
  animation: atmosphereSweep 9s linear infinite;
}

.hero-cable-pop {
  display: none;
}

.hero-cable-pop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(103deg, transparent 8%, rgba(255, 255, 255, 0.28) 34%, transparent 48%),
    repeating-linear-gradient(112deg, transparent 0 38px, rgba(255, 255, 255, 0.055) 41px, transparent 48px);
  transform: translateX(-82%) skewX(-8deg);
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: steelSweep 5.6s ease-in-out 900ms infinite;
}

.hero-cable-pop::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 46%;
  height: 44%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(31, 180, 0, 0.16), transparent 58%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0.5;
  filter: blur(14px);
  transform: rotate(-14deg);
}

.hero-steel-orbit {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 8vw, 155px);
  bottom: 34px;
  width: clamp(185px, 21vw, 360px);
  aspect-ratio: 1.52 / 1;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x) * 0.34), calc(var(--hero-y) * 0.22), 0);
  opacity: 0.72;
  will-change: transform;
}

.hero-steel-orbit span {
  position: absolute;
  inset: 10% 0;
  border-radius: 50%;
  border: 2px solid rgba(227, 235, 232, 0.24);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.12),
    0 0 20px rgba(31, 180, 0, 0.12);
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: orbitPulse 5.8s ease-in-out infinite;
}

.hero-steel-orbit span:nth-child(2) {
  inset: 18% 8%;
  animation-delay: -1.4s;
}

.hero-steel-orbit span:nth-child(3) {
  inset: 27% 17%;
  animation-delay: -2.8s;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 58px 0 48px;
}

.hero-content > * {
  animation: heroCopyIn 780ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-content .eyebrow {
  animation-delay: 80ms;
}

.hero-content h1 {
  animation-delay: 160ms;
}

.hero-content .lead {
  animation-delay: 260ms;
}

.hero-content .hero-buttons {
  animation-delay: 360ms;
}

.eyebrow,
.section-title span {
  margin: 0 0 14px;
  color: var(--green-2);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  width: min(650px, 100%);
  margin: 0;
  padding-bottom: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.lead {
  width: min(680px, 100%);
  margin: 26px 0 32px;
  color: #f2f4f2;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.primary,
.secondary {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 0 40px;
  font-size: 15px;
}

.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.36) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: buttonSweep 3.8s ease-in-out 1.3s infinite;
  pointer-events: none;
}

.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 280px;
  border: 1px solid #6b7174;
  border-radius: 4px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  background: rgba(8, 11, 13, 0.62);
}

.usp-band {
  background: linear-gradient(180deg, #161a1d, #0f1315);
  color: var(--white);
  border-top: 1px solid #32383c;
  border-bottom: 1px solid #32383c;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.usp-grid article {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 104px;
  padding: 16px 28px;
  border-right: 1px solid #4a5053;
}

.usp-grid article:first-child {
  padding-left: 0;
}

.usp-grid article:last-child {
  border-right: 0;
}

.usp-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green-2);
  border: 3px solid var(--green);
  border-radius: 10px;
  font-size: 24px;
  line-height: 1;
}

.usp-grid strong {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
}

.usp-grid small {
  display: block;
  margin-top: 8px;
  color: #f4f4f4;
  font-weight: 600;
}

.section {
  padding: 28px 0 0;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.section-title span {
  display: block;
  margin: 0 0 4px;
  font-size: 13px;
}

.section-title h2,
.accessory-panel h2,
.services h2,
.dark-card h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.product-card {
  position: relative;
  min-height: 475px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(20, 22, 24, 0.1);
  border: 1px solid #e2e5e6;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.card-icon {
  position: absolute;
  top: 185px;
  left: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: #0d1810;
  color: var(--green-2);
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.product-card h3 {
  margin: 38px 26px 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.product-card ul {
  margin: 0 26px 34px;
  padding: 0;
  list-style: none;
  color: #1f282d;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
}

.product-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 14px;
  border-radius: 1px;
  background: var(--green);
  vertical-align: middle;
}

.product-card a {
  position: absolute;
  left: 26px;
  bottom: 22px;
  color: #159200;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.accessory-panel {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding: 20px 0 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, #121619, #0b0e10);
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.accessory-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 88px;
  z-index: 1;
  background: linear-gradient(180deg, #080c0f 0%, rgba(8, 12, 15, 0.98) 54%, rgba(8, 12, 15, 0) 100%);
  pointer-events: none;
}

.accessory-panel h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(24px, 3.15vw, 56px);
  line-height: 1;
  margin-bottom: 0;
  padding-inline: 18px;
}

.accessory-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: space-between;
  gap: clamp(8px, 1vw, 20px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 26px 6px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.accessory-list::-webkit-scrollbar {
  display: none;
}

.accessory-list article {
  position: relative;
  --icon-scale: 1;
  flex: 1 1 0;
  display: grid;
  grid-template-rows: 82px auto;
  align-items: end;
  justify-items: center;
  min-width: 0;
  scroll-snap-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: accessoryRise 680ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.accessory-list article::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 86%;
  height: 62px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(31, 180, 0, 0.16), transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  filter: blur(10px);
  opacity: 0.74;
  transform: translateX(-50%);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.accessory-list article:nth-child(1) {
  animation-delay: 40ms;
}

.accessory-list article:nth-child(2) {
  animation-delay: 90ms;
}

.accessory-list article:nth-child(3) {
  animation-delay: 140ms;
}

.accessory-list article:nth-child(4) {
  animation-delay: 190ms;
}

.accessory-list article:nth-child(5) {
  animation-delay: 240ms;
}

.accessory-list article:nth-child(6) {
  animation-delay: 290ms;
}

.accessory-list article:nth-child(7) {
  animation-delay: 340ms;
}

.accessory-list article:nth-child(8) {
  animation-delay: 390ms;
}

.accessory-list img {
  position: relative;
  z-index: 1;
  width: min(112px, 100%);
  height: 82px;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.48));
  transform: scale(var(--icon-scale));
  transition: transform 220ms ease, filter 220ms ease;
}

.accessory-list article:hover img {
  transform: translateY(-7px) scale(calc(var(--icon-scale) * 1.08));
  filter: drop-shadow(0 0 18px rgba(31, 180, 0, 0.25)) drop-shadow(0 22px 22px rgba(0, 0, 0, 0.58));
}

.accessory-list article:nth-child(1) {
  --icon-scale: 1.08;
}

.accessory-list article:nth-child(2) {
  --icon-scale: 1.12;
}

.accessory-list article:nth-child(3) {
  --icon-scale: 1.28;
}

.accessory-list article:nth-child(4) {
  --icon-scale: 1.14;
}

.accessory-list article:nth-child(5) {
  --icon-scale: 1.22;
}

.accessory-list article:nth-child(6) {
  --icon-scale: 1.12;
}

.accessory-list article:nth-child(7) {
  --icon-scale: 1.24;
}

.accessory-list article:nth-child(8) {
  --icon-scale: 1.12;
}

.accessory-list article:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1.12);
}

.accessory-list span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: 10px;
  color: #f3f5f5;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(13px, 0.86vw, 18px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}

.accessory-list article:hover span {
  color: var(--green-2);
  transform: translateY(1px);
}

.accessory-panel a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 360px;
  min-height: 46px;
  margin-top: 14px;
  border: 2px solid var(--green);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.service-grid article {
  min-height: 178px;
  padding: 20px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid #dcdfe0;
  border-radius: 4px;
}

.service-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 48px;
  line-height: 1;
}

.service-grid h3 {
  margin: 0 auto 8px;
  max-width: 180px;
  font-size: 18px;
  line-height: 1.2;
}

.service-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  gap: 10px;
  margin-top: 20px;
}

.dark-card {
  min-height: 455px;
  padding: 20px;
  border-radius: 5px;
  background: linear-gradient(180deg, #181d20, #101416);
  color: var(--white);
  box-shadow: var(--shadow);
}

.dark-card h2 {
  margin-bottom: 16px;
  font-size: 23px;
}

.project-card img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #42484b;
}

.project-card h3 {
  margin: 22px 0 14px;
  font-size: 20px;
}

.project-card p {
  color: #e5e7e8;
  line-height: 1.55;
}

.project-card a,
.all-link {
  color: var(--green-2);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 15px;
}

.dots {
  display: flex;
  gap: 22px;
  margin-top: 28px;
}

.dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #5d6265;
}

.dots span:first-child {
  border: 4px solid var(--green);
  background: transparent;
}

.academy {
  padding-bottom: 16px;
}

.academy > a:not(.all-link) {
  position: relative;
  display: block;
  min-height: 61px;
  padding: 10px 46px 10px 68px;
  border-bottom: 1px solid #2c3337;
  background: rgba(255, 255, 255, 0.035);
  line-height: 1.25;
}

.academy span {
  position: absolute;
  left: 18px;
  top: 14px;
  color: #eef3ef;
  font-size: 24px;
}

.academy small,
.news-item small {
  display: block;
  margin-top: 4px;
  color: #bfc4c5;
  font-size: 13px;
}

.academy b {
  position: absolute;
  right: 18px;
  top: 12px;
  color: #bfc4c5;
  font-size: 34px;
  font-weight: 400;
}

.academy .all-link,
.news-card .all-link {
  display: block;
  margin-top: 22px;
  text-align: center;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  min-height: 120px;
  padding-bottom: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid #30373a;
}

.news-item img {
  width: 150px;
  height: 92px;
  object-fit: cover;
  border-radius: 2px;
}

.news-item strong {
  display: block;
  line-height: 1.35;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 34px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 32px 40px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(7, 10, 12, 0.98) 0%, rgba(7, 10, 12, 0.94) 47%, rgba(7, 10, 12, 0.88) 100%),
    url("assets/hero-scene.png") right center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-copy h2 {
  font-size: 31px;
}

.quote-copy h3 {
  margin: 12px 0 22px;
  font-size: 21px;
  text-transform: uppercase;
}

.quote-copy p {
  width: min(430px, 100%);
  color: #eef0f1;
  line-height: 1.6;
}

.quote-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.9;
  font-weight: 700;
}

.quote-copy li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 28px;
  align-self: center;
  min-width: 0;
}

.quote-form input,
.quote-form select,
.newsletter input {
  min-width: 0;
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #596066;
  border-radius: 3px;
  background: rgba(17, 20, 22, 0.74);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  text-overflow: ellipsis;
}

.quote-form input::placeholder,
.newsletter input::placeholder {
  color: #c3c7c9;
}

.quote-form .wide {
  grid-column: span 2;
}

.quote-form button {
  grid-column: 1 / -1;
  height: 62px;
  font-size: 18px;
  cursor: pointer;
}

@keyframes cableEnter {
  from {
    opacity: 0;
    transform: translate3d(96px, 38px, 0) rotate(-2deg) scale(0.98);
  }

  to {
    opacity: 1;
  }
}

@keyframes cableFloat {
  0%,
  100% {
    filter: contrast(1.24) saturate(1.05) drop-shadow(-38px 42px 38px rgba(0, 0, 0, 0.76));
  }

  50% {
    filter: contrast(1.34) saturate(1.12) drop-shadow(-50px 52px 48px rgba(0, 0, 0, 0.88));
  }
}

@keyframes lightRibbon {
  0%,
  100% {
    opacity: 0.42;
    filter: blur(0.6px);
  }

  48% {
    opacity: 0.68;
    filter: blur(0.25px);
  }
}

@keyframes steelSweep {
  0%,
  36% {
    transform: translateX(-84%) skewX(-8deg);
    opacity: 0;
  }

  52% {
    opacity: 0.82;
  }

  74%,
  100% {
    transform: translateX(94%) skewX(-8deg);
    opacity: 0;
  }
}

@keyframes heroBreath {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(1);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.018);
  }
}

@keyframes atmosphereSweep {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 58px 0;
  }
}

@keyframes tensionDrift {
  0%,
  100% {
    opacity: 0.14;
  }

  46% {
    opacity: 0.32;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: rotateX(68deg) rotateZ(-18deg) scale(0.98);
  }

  45% {
    opacity: 0.58;
    transform: rotateX(68deg) rotateZ(-18deg) scale(1.04);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes buttonSweep {
  0%,
  44% {
    transform: translateX(-120%);
  }

  66%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes accessoryRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

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

.site-footer {
  background: linear-gradient(180deg, #171c1f, #101416);
  color: #e9ebeb;
  padding: 42px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.86fr 0.86fr 1fr 1.32fr 1.15fr;
  gap: 36px;
}

.footer-grid > div {
  padding-left: 28px;
  border-left: 1px solid #3a4145;
}

.footer-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 22px;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 12px;
  color: #d7dbdc;
  font-size: 14px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 24px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e5e6;
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.newsletter label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  margin-top: 26px;
}

.newsletter button {
  border: 0;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #2c3337;
  color: #c9cdcf;
  font-size: 13px;
}

@media (max-width: 1280px) {
  .shell {
    width: min(1120px, calc(100% - 40px));
  }

  .topbar {
    gap: 16px;
  }

  .brand {
    gap: 18px;
    min-width: 0;
  }

  .brand img {
    width: 148px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand strong {
    font-size: 16px;
  }

  .header-actions {
    gap: 16px;
  }

  .quote-btn {
    padding-inline: 24px;
  }

  .nav {
    gap: 28px;
  }

  .hero-cable-pop {
    right: -10vw;
    width: min(720px, 58vw);
    opacity: 0.48;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy p {
    width: min(720px, 100%);
  }

  .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form .wide {
    grid-column: 1 / -1;
  }

  .quote-form button {
    grid-column: 1 / -1;
  }

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

  .card-icon {
    top: calc((100vw - 92px) / 5 / 1.52 - 22px);
  }
}

@media (max-width: 920px) {
  .topbar {
    min-height: 88px;
  }

  .brand {
    min-width: 0;
    gap: 14px;
  }

  .brand img {
    width: 116px;
  }

  .brand span {
    display: none;
  }

  .hotline,
  .quote-btn {
    display: none;
  }

  .lang-toggle {
    min-width: 76px;
    min-height: 40px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    padding: 8px 0 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid #252b2f;
  }

  .hero {
    min-height: 560px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.9) 66%, rgba(3, 5, 6, 0.52) 100%),
      url("assets/hero-wire-rope-v2.jpg") 65% center / cover no-repeat;
  }

  .hero-cable-pop {
    right: -32vw;
    bottom: -28px;
    width: 92vw;
    opacity: 0.34;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 34%, #000 64%, transparent 100%);
  }

  .hero-steel-orbit {
    right: 10px;
    bottom: 18px;
    opacity: 0.42;
  }

  .usp-grid,
  .product-grid,
  .service-grid,
  .insight-grid,
  .quote-section,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .usp-grid article {
    border-right: 0;
    border-bottom: 1px solid #3a4145;
    padding-left: 0;
  }

  .product-card {
    min-height: 440px;
  }

  .card-icon {
    top: calc((100vw - 66px) / 2 / 1.52 - 22px);
  }

  .quote-section,
  .insight-grid .news-card,
  .footer-grid .newsletter {
    grid-column: 1 / -1;
  }

  .quote-form {
    grid-template-columns: 1fr 1fr;
  }

  .quote-form .wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .hero-content {
    padding-top: 42px;
  }

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

  .hero-cable-pop {
    right: -64vw;
    bottom: -44px;
    width: 126vw;
    height: 72%;
    opacity: 0.22;
  }

  .hero-steel-orbit {
    display: none;
  }

  .lead {
    font-size: 15px;
  }

  .primary,
  .secondary {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
  }

  .usp-grid,
  .product-grid,
  .service-grid,
  .insight-grid,
  .quote-section,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 466px;
  }

  .card-icon {
    top: calc((100vw - 28px) / 1.52 - 22px);
  }

  .accessory-panel a {
    min-width: 0;
    width: calc(100% - 34px);
  }

  .accessory-list {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .accessory-list article {
    grid-template-rows: 82px auto;
    flex-basis: 118px;
    min-width: 118px;
  }

  .accessory-list img {
    height: 82px;
  }

  .quote-section {
    padding: 28px 18px;
  }

  .quote-form .wide,
  .quote-form button {
    grid-column: auto;
  }

  .news-item {
    grid-template-columns: 112px 1fr;
  }

  .news-item img {
    width: 112px;
  }

  .footer-grid > div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #30373a;
    padding-top: 22px;
  }

  .footer-grid > div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

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

  .hero-bg,
  .hero-cable-pop,
  .hero-steel-orbit,
  .hero::before,
  .hero::after {
    transform: none !important;
  }
}

/* About page */
.about-page {
  background: #fff;
}

.about-page .lang-toggle {
  display: none;
}

.about-page .site-header {
  position: sticky;
}

.about-hero {
  position: relative;
  min-height: 585px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #05080a;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.9) 38%, rgba(3, 5, 6, 0.44) 66%, rgba(3, 5, 6, 0.08) 100%),
    url("assets/about-real/hero-press-machine.jpg") right center / cover no-repeat;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 70px;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  color: #c7cccf;
  font-size: 14px;
  font-weight: 600;
}

.about-hero h1 {
  margin: 0 0 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  text-transform: uppercase;
}

.about-hero h2 {
  width: min(780px, 100%);
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.96;
  text-transform: uppercase;
}

.about-hero p:not(.eyebrow) {
  width: min(820px, 100%);
  margin: 24px 0 30px;
  color: #edf1f2;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-hero-badges span {
  color: #dfe4e5;
  font-weight: 800;
}

.about-hero-badges span::first-letter {
  color: var(--green-2);
}

.about-tabs {
  position: sticky;
  top: 162px;
  z-index: 10;
  background: linear-gradient(180deg, #14191c, #0d1113);
  border-top: 1px solid #2b3236;
  border-bottom: 1px solid #2b3236;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.about-tabs .shell {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.about-tabs a {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: #e9eeee;
  border-left: 1px solid #252b2f;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.about-tabs a:first-child {
  border-left: 0;
  color: var(--green-2);
}

.about-intro {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  padding: 54px 0;
  align-items: center;
}

.about-copy h2,
.vision-panel h2,
.capability-card h2,
.about-cert h2,
.about-partners h2 {
  margin: 0 0 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 1.02;
  text-transform: uppercase;
}

.about-copy p {
  color: #1f292f;
  line-height: 1.75;
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.about-values article {
  min-height: 132px;
  padding: 18px 14px;
  border-right: 1px solid #dfe3e4;
  text-align: center;
}

.about-values article:last-child {
  border-right: 0;
}

.about-values span {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.about-values strong {
  display: block;
  margin: 8px 0;
  text-transform: uppercase;
}

.about-values small {
  display: block;
  color: #5b6266;
  line-height: 1.45;
}

.about-image-card img,
.capability-card img,
.about-cert img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.about-image-card img {
  aspect-ratio: 1.62 / 1;
  object-position: left top;
}

.about-stats {
  background: linear-gradient(180deg, #121719, #080c0e);
  color: var(--white);
}

.about-stats .shell {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.about-stats article {
  min-height: 150px;
  padding: 30px 32px;
  border-right: 1px solid #30373b;
}

.about-stats article:last-child {
  border-right: 0;
}

.about-stats span {
  display: block;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.about-stats strong {
  display: block;
  margin: 6px 0 10px;
  text-transform: uppercase;
  line-height: 1.15;
}

.about-stats small {
  color: #cfd5d6;
  line-height: 1.45;
}

.about-split {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr;
  gap: 58px;
  padding: 48px 0;
}

.vision-panel article {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 26px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border: 1px solid #dde1e2;
  border-radius: 5px;
  overflow: hidden;
}

.vision-panel img {
  width: 185px;
  height: 130px;
  object-fit: cover;
  object-position: center;
}

.vision-panel h3 {
  margin: 20px 0 8px;
  text-transform: uppercase;
}

.vision-panel p {
  margin: 0;
  color: #3b454a;
  line-height: 1.55;
}

.capability-card {
  min-width: 0;
}

.capability-card img {
  height: 430px;
  object-position: center center;
}

.capability-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -1px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background: linear-gradient(180deg, #151b1e, #0a0e10);
  color: #eef2f2;
}

.capability-points span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid #2f3639;
  color: #e8ecec;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.capability-points span:last-child {
  border-right: 0;
}

.about-cert {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid #d8dddf;
}

.about-cert p,
.about-cert li {
  color: #263137;
  line-height: 1.7;
  font-weight: 500;
}

.about-cert a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.about-cert img {
  height: 350px;
  object-position: center 54%;
}

.about-partners {
  padding: 28px 0 36px;
  border-top: 1px solid #d8dddf;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.partner-row span {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe3e4;
  background: #fff;
  color: #142025;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(20, 28, 32, 0.05);
}

.about-contact-strip {
  background: linear-gradient(180deg, #111719, #070b0d);
  color: var(--white);
}

.about-contact-strip .shell {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.85fr 0.8fr;
  gap: 22px;
  align-items: center;
  min-height: 120px;
}

.about-contact-strip h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.about-contact-strip a:not(.quote-btn) {
  display: block;
  padding: 18px 22px;
  border: 1px solid #283135;
  border-radius: 5px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-contact-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 16px;
}

@media (max-width: 1280px) {
  .about-tabs {
    top: 146px;
  }

  .about-intro,
  .about-split,
  .about-cert,
  .about-contact-strip .shell {
    grid-template-columns: 1fr;
  }

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

  .partner-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 920px) {
  .about-hero {
    min-height: 640px;
  }

  .about-hero-bg {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.86) 70%, rgba(3, 5, 6, 0.45) 100%),
      url("assets/about-real/hero-press-machine.jpg") 58% center / cover no-repeat;
  }

  .about-tabs {
    position: static;
    overflow-x: auto;
  }

  .about-tabs .shell {
    display: flex;
    width: 100%;
    overflow-x: auto;
  }

  .about-tabs a {
    flex: 0 0 220px;
  }

  .about-intro {
    gap: 32px;
  }

  .about-values,
  .capability-points {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .vision-panel article {
    grid-template-columns: 130px 1fr;
  }

  .vision-panel img {
    width: 130px;
    height: 100%;
  }
}

@media (max-width: 640px) {
  .about-hero h2 {
    font-size: 48px;
  }

  .about-hero-badges,
  .about-stats .shell,
  .about-values,
  .capability-points,
  .partner-row {
    grid-template-columns: 1fr;
  }

  .about-hero-badges {
    display: grid;
  }

  .about-stats article {
    border-right: 0;
    border-bottom: 1px solid #30373b;
  }

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

  .vision-panel img {
    width: 100%;
    height: 160px;
  }

  .capability-card img,
  .about-cert img {
    height: 260px;
  }
}
