:root {
  --navy-950: #041122;
  --navy-900: #071a33;
  --navy-800: #0b2545;
  --blue-600: #1769c2;
  --blue-500: #2380e2;
  --steel-700: #394452;
  --steel-500: #697686;
  --steel-200: #d9e0e8;
  --steel-100: #eef2f6;
  --white: #ffffff;
  --ink: #101923;
  --shadow: 0 24px 60px rgba(4, 17, 34, 0.14);
  --radius: 8px;
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  box-shadow: 0 10px 28px rgba(4, 17, 34, 0.08);
  transition:
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(4, 17, 34, 0.1);
}

.header-top {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 28px;
  background:
    linear-gradient(90deg, #061529 0%, #082846 48%, #061529 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 720;
}

.header-top a:hover {
  color: var(--white);
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #dceeff;
}

.top-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.top-phone {
  font-size: 22px;
  line-height: 1;
}

.top-phone strong {
  color: var(--white);
  font-weight: 900;
}

.top-separator {
  width: 2px;
  height: 18px;
  background: #d8a736;
  transform: skewX(-12deg);
}

.top-spacer {
  width: min(3vw, 48px);
  flex: 0 0 auto;
}

.nav-shell {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  width: 236px;
  height: 64px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 9px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 200ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-1px);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(7, 26, 51, 0.14);
  border-radius: 6px;
  background: #f7f9fc;
}

.language-switcher button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--steel-700);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.language-switcher button:hover {
  transform: translateY(-1px);
  color: var(--navy-950);
}

.language-switcher button.is-active {
  background: var(--navy-900);
  color: var(--white);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  padding: 0 16px;
  background: var(--navy-900);
  color: var(--white);
}

.btn {
  padding: 0 22px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 17, 34, 0.18);
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-500);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(7, 26, 51, 0.16);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(540px, calc(100vh - 160px), 650px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  filter: saturate(1.03) contrast(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(4, 17, 34, 0.96) 0%, rgba(4, 17, 34, 0.78) 42%, rgba(4, 17, 34, 0.22) 100%),
    radial-gradient(circle at 75% 35%, rgba(35, 128, 226, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(4, 17, 34, 0.04), rgba(4, 17, 34, 0.54));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 118px;
  background: var(--white);
  clip-path: polygon(0 70%, 100% 22%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -56px;
  top: 23%;
  width: 270px;
  height: 176px;
  background: linear-gradient(135deg, #0b6ef6, #21a8ff);
  clip-path: polygon(38% 0, 100% 0, 72% 100%, 0 100%);
  z-index: 1;
  opacity: 0.94;
}

.hero-accent-wedge {
  position: absolute;
  left: -80px;
  top: 14%;
  width: 280px;
  height: 520px;
  background: linear-gradient(135deg, rgba(12, 66, 116, 0.52), rgba(4, 17, 34, 0));
  clip-path: polygon(0 0, 62% 0, 30% 100%, 0 100%);
  z-index: 1;
}

.hero-content {
  width: var(--page);
  margin: 0 auto;
  padding: 44px 0 112px;
  color: var(--white);
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker,
.product-card span {
  margin: 0 0 12px;
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 760px;
}

.hero-display {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family:
    Impact, "Arial Black", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-style: italic;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.hero-title-pre,
.hero-title-accent {
  display: block;
}

.hero-title-accent {
  color: #0b73ff;
  font-size: 1.18em;
}

.hero-lede {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 20px;
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  max-width: 910px;
  margin-top: 24px;
}

.benefit-item {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.52);
}

.benefit-item:first-child {
  padding-left: 0;
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-item strong {
  max-width: 96px;
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.benefit-icon {
  position: relative;
  display: inline-grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b6ef6, #1aa7ff);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(4, 17, 34, 0.32);
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
  border-color: var(--white);
}

.icon-quality::before {
  width: 25px;
  height: 25px;
  border: 3px solid var(--white);
  transform: rotate(45deg);
}

.icon-quality::after {
  width: 18px;
  height: 3px;
  background: var(--white);
  border: 0;
  transform: rotate(-28deg);
}

.icon-cutting::before,
.icon-cutting::after {
  width: 30px;
  height: 3px;
  background: var(--white);
  border: 0;
  transform-origin: center;
}

.icon-cutting::before {
  transform: rotate(42deg);
}

.icon-cutting::after {
  transform: rotate(-42deg);
}

.icon-design::before {
  width: 27px;
  height: 27px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.icon-design::after {
  width: 10px;
  height: 10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow:
    14px 0 0 -3px var(--white),
    -14px 0 0 -3px var(--white),
    0 14px 0 -3px var(--white),
    0 -14px 0 -3px var(--white);
}

.icon-delivery::before {
  width: 29px;
  height: 19px;
  border: 3px solid var(--white);
  border-radius: 3px;
}

.icon-delivery::after {
  width: 8px;
  height: 8px;
  left: 18px;
  bottom: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 20px 0 0 -3px var(--white);
}

.ticker-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 8px 0 10px;
  background: transparent;
  overflow: visible;
}

.ticker-band::before {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  top: 0;
  height: 5px;
  background: var(--white);
  transform: rotate(-1.5deg);
  z-index: 3;
}

.ticker-row {
  width: calc(100% + 96px);
  margin-left: -48px;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-1.35deg);
  box-shadow: 0 12px 24px rgba(4, 17, 34, 0.22);
}

.ticker-row + .ticker-row {
  margin-top: 5px;
  transform: rotate(-1.35deg);
}

.ticker-row-blue {
  background: linear-gradient(90deg, #0874ff, #0056d7);
  color: var(--white);
}

.ticker-row-dark {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.9);
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  padding: 8px 0 9px;
  animation: ticker-left 28s linear infinite;
}

.ticker-track.reverse {
  animation-name: ticker-right;
  animation-duration: 32s;
}

.ticker-track span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-track i {
  width: 22px;
  height: 3px;
  background: #f4c126;
  transform: skewX(-22deg);
}

.hero-products {
  position: relative;
  padding: 44px 0 20px;
  background:
    linear-gradient(177deg, var(--white) 0 78%, #061529 78% 100%);
  overflow: hidden;
}

.hero-products::before {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: 76px;
  height: 95px;
  background: var(--white);
  transform: rotate(-1.5deg);
  transform-origin: left bottom;
}

.hero-products-inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
}

.hero-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.preview-card {
  position: relative;
  min-height: 152px;
  border-radius: var(--radius);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(4, 17, 34, 0.18);
}

.preview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 17, 34, 0.05), rgba(4, 17, 34, 0.84)),
    linear-gradient(90deg, rgba(4, 17, 34, 0.52), rgba(4, 17, 34, 0));
}

.preview-card div {
  position: absolute;
  inset: auto 18px 14px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.preview-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.preview-link {
  display: inline-flex;
  min-width: 82px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(4, 17, 34, 0.56);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.preview-card:hover img {
  transform: scale(1.05);
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 82px;
  color: var(--white);
}

.script-line,
.priority-line {
  margin: 0;
}

.script-line {
  font-family: "Segoe Script", "Bradley Hand ITC", cursive;
  font-size: 27px;
  line-height: 1.1;
}

.priority-line {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 650;
  text-transform: uppercase;
}

.section {
  padding: 70px 0;
}

.section-grid,
.section-heading,
.services-showcase,
.service-grid,
.product-gallery,
.contact-grid,
.footer-inner,
.quote-strip-inner {
  width: var(--page);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.reverse-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.section-copy h2,
.section-heading h2,
.quote-strip h2 {
  margin: 0;
  max-width: 780px;
  color: var(--navy-950);
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.quote-strip p {
  max-width: 730px;
  color: var(--steel-700);
  font-size: 17px;
}

.section-copy .section-kicker,
.section-heading .section-kicker {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.about {
  background: var(--white);
}

.about .section-grid {
  align-items: start;
}

.about .section-copy {
  padding-top: 8px;
}

.about-visual {
  display: grid;
  gap: 0;
}

.about-proof {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 28px;
}

.about-logo-lockup {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: var(--radius);
  background: #f7f9fb;
  box-shadow: 0 12px 32px rgba(4, 17, 34, 0.08);
}

.about-logo-lockup img {
  width: 150px;
}

.about-highlights {
  display: grid;
  gap: 8px;
}

.about-highlights span {
  display: flex;
  min-height: 34px;
  align-items: center;
  padding: 9px 12px;
  border-left: 3px solid var(--blue-600);
  background: #f7f9fb;
  color: var(--steel-700);
  font-size: 14px;
  line-height: 1.35;
}

.about-portrait {
  position: relative;
  height: 530px;
  min-height: 510px;
  margin: 0;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: var(--radius);
  background: var(--navy-950);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.02);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(4, 17, 34, 0.72)),
    linear-gradient(90deg, rgba(4, 17, 34, 0.16), transparent 46%);
  pointer-events: none;
}

.about-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 17, 34, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.about-caption span {
  color: #8fc8ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-caption strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.about-panel {
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(4, 17, 34, 0.1);
  overflow: hidden;
}

.about-panel img {
  width: 100%;
  padding: 22px 26px;
  background: #f7f9fb;
  border-bottom: 1px solid var(--steel-200);
}

.panel-list {
  display: grid;
  gap: 0;
}

.panel-list span {
  display: block;
  padding: 18px 22px;
  color: var(--steel-700);
  border-top: 1px solid rgba(217, 224, 232, 0.8);
}

.panel-list span:first-child {
  border-top: 0;
}

.services {
  background:
    linear-gradient(180deg, #f7f9fc 0%, var(--white) 100%);
}

.section-heading {
  margin-bottom: 28px;
}

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

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: 18px;
  align-items: stretch;
}

.services-showcase .service-grid {
  width: auto;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.services-showcase .service-card {
  min-height: 186px;
  padding: 22px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 105, 194, 0.34);
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.team-list h3,
.product-card h3 {
  margin: 18px 0 8px;
  color: var(--navy-950);
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

.service-card p,
.team-list p,
.product-card p {
  margin: 0;
  color: var(--steel-700);
}

.service-video-card {
  min-height: 100%;
}

.service-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 594px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.14);
  border-radius: var(--radius);
  background: var(--navy-950);
  box-shadow: 0 22px 54px rgba(4, 17, 34, 0.14);
  cursor: zoom-in;
  isolation: isolate;
}

.service-video-trigger video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.service-video-trigger:hover video {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.08);
}

.service-video-trigger:focus-visible {
  outline: 3px solid rgba(35, 128, 226, 0.85);
  outline-offset: 4px;
}

.service-video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 17, 34, 0.05) 0%, rgba(4, 17, 34, 0.18) 45%, rgba(4, 17, 34, 0.88) 100%),
    linear-gradient(90deg, rgba(23, 105, 194, 0.2), transparent 48%);
  pointer-events: none;
}

.service-video-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 17, 34, 0.78);
  color: var(--white);
  text-align: left;
  backdrop-filter: blur(10px);
}

.service-video-kicker {
  color: #8fc8ff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-video-title {
  font-size: 20px;
  line-height: 1.18;
}

.service-video-expand {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(23, 105, 194, 0.92);
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.machinery {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(35, 128, 226, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 56%, #082846 100%);
  color: var(--white);
}

.machinery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.16;
  pointer-events: none;
}

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

.machinery .section-kicker {
  color: #8fc8ff;
}

.machinery .section-heading h2,
.machinery .section-heading p:not(.section-kicker) {
  color: var(--white);
}

.machinery .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.machinery-layout {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.machinery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.machinery-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

.machinery-feature div {
  display: grid;
  align-content: center;
  padding: 36px;
}

.machinery-feature span,
.machinery-card span {
  color: #8fc8ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.machinery-feature h3 {
  margin: 12px 0 12px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.12;
}

.machinery-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.machinery-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.machinery-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.machinery-stat strong {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 12px;
}

.machinery-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.32;
}

.machinery-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.machinery-card {
  position: relative;
  min-height: 292px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--navy-950);
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.machinery-card img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.machinery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(4, 17, 34, 0.88)),
    linear-gradient(90deg, rgba(4, 17, 34, 0.28), transparent);
  pointer-events: none;
}

.machinery-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 1;
}

.machinery-card strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.16;
}

.machinery-card:hover img {
  transform: scale(1.04);
}

.team {
  background: var(--navy-950);
  color: var(--white);
}

.team .section-copy h2,
.team .section-copy p {
  color: var(--white);
}

.team .section-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.team-list {
  display: grid;
  gap: 14px;
}

.team-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.team-list h3 {
  margin-top: 0;
  color: var(--white);
}

.team-list p {
  color: rgba(255, 255, 255, 0.72);
}

.products {
  background:
    linear-gradient(180deg, var(--white) 0%, #f7f9fc 100%);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(4, 17, 34, 0.08);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card.featured {
  grid-column: span 2;
}

.product-card.wide {
  grid-column: span 2;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.product-card.featured img {
  height: 352px;
}

.product-card.wide img {
  height: 250px;
}

.product-card div {
  flex: 1;
  padding: 22px;
}

.product-card span {
  display: block;
  margin-bottom: 0;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 105, 194, 0.28);
  box-shadow: 0 24px 58px rgba(4, 17, 34, 0.13);
}

.product-card:hover img {
  transform: scale(1.04);
}

.quote-strip {
  background: var(--blue-600);
  color: var(--white);
}

.quote-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}

.quote-strip h2 {
  color: var(--white);
  font-size: 32px;
}

.quote-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  background: #f7f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 18px;
}

.contact-panel,
.contact-form,
.map-panel {
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(4, 17, 34, 0.08);
}

.contact-panel {
  display: grid;
}

.contact-panel a {
  display: block;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(217, 224, 232, 0.9);
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel a:hover {
  background: #f9fbfd;
}

.contact-panel strong {
  display: block;
  color: var(--navy-950);
  font-size: 14px;
}

.contact-panel span {
  display: block;
  margin-top: 4px;
  color: var(--steel-700);
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 750;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 105, 194, 0.14);
}

.map-panel {
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px 0;
}

.footer-logo-frame {
  display: grid;
  width: 232px;
  min-height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(23, 105, 194, 0.08);
}

.footer-logo-frame img {
  width: 198px;
  opacity: 1;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: var(--white);
  font-size: 18px;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

.footer-copy {
  display: grid;
  gap: 5px;
  justify-items: start;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.footer-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-link:hover {
  transform: translateY(-2px);
  background: var(--blue-600);
}

.footer-admin {
  border-color: rgba(143, 200, 255, 0.28);
  background: rgba(23, 105, 194, 0.18);
}

body.lightbox-open {
  overflow: hidden;
}

.is-zoomable,
.has-zoom {
  cursor: zoom-in;
}

.has-zoom a,
.has-zoom button {
  cursor: pointer;
}

.is-zoomable:focus-visible {
  outline: 3px solid rgba(35, 128, 226, 0.85);
  outline-offset: 4px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 16px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(35, 128, 226, 0.22), transparent 36%),
    rgba(4, 17, 34, 0.92);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  margin: 0;
}

.lightbox-frame img {
  max-width: min(100%, 1180px);
  max-height: min(78vh, 760px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--navy-950);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.lightbox-frame video {
  width: min(100%, 1180px);
  max-height: min(78vh, 760px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.image-lightbox.is-video {
  grid-template-columns: minmax(0, 1fr);
}

.image-lightbox.is-video .lightbox-frame {
  grid-column: 1;
}

.image-lightbox.is-video .lightbox-nav,
.lightbox-frame [hidden] {
  display: none;
}

.lightbox-frame figcaption {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: var(--blue-600);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid rgba(143, 200, 255, 0.9);
  outline-offset: 3px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  width: 56px;
  height: 74px;
  border-radius: var(--radius);
  font-size: 48px;
  line-height: 1;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #21bf63;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(4, 17, 34, 0.22);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float.is-disabled {
  background: #74808d;
  cursor: not-allowed;
  opacity: 0.76;
  filter: grayscale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

.product-gallery .product-card.reveal {
  opacity: 1;
  transform: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.about .section-copy.reveal,
.about-visual.reveal {
  opacity: 1;
  transform: none;
}

@keyframes ticker-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ticker-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1080px) {
  .header-top {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-inline: 18px;
  }

  .top-spacer {
    display: none;
  }

  .top-phone {
    font-size: 19px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    width: 218px;
    height: 60px;
  }

  .menu-toggle {
    display: block;
    margin-left: 0;
  }

  .language-switcher {
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 108px 20px auto;
    display: none;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(7, 26, 51, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: grid;
    gap: 10px;
  }

  .nav-links a {
    padding: 10px 4px;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    padding-inline: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 82px 0 142px;
  }

  .hero-display {
    font-size: 62px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-benefits {
    max-width: 650px;
  }

  .benefit-item {
    flex-basis: 50%;
    padding: 10px 20px 10px 0;
    border-right: 0;
  }

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

  .section-grid,
  .reverse-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .about-proof {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  }

  .about-portrait,
  .about-portrait img {
    height: 480px;
    min-height: 480px;
  }

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

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .service-video-trigger {
    min-height: 420px;
  }

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

  .machinery-feature img {
    height: 460px;
  }

  .machinery-feature div {
    padding: 30px;
  }

  .machinery-stats,
  .machinery-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .footer-logo-frame {
    width: 236px;
  }

  .image-lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 10px;
    padding: 24px;
  }

  .lightbox-nav {
    width: 46px;
    height: 64px;
    font-size: 40px;
  }
}

@media (max-width: 680px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .header-top {
    justify-content: flex-start;
    padding: 8px 14px;
    font-size: 12px;
  }

  .header-top .top-address,
  .header-top .header-city,
  .header-top .top-separator,
  .header-top a[href="mailto:Foamfactory1@yahoo.com"] {
    display: none;
  }

  .top-item {
    gap: 6px;
  }

  .top-phone {
    margin-left: auto;
    font-size: 16px;
  }

  .top-icon {
    width: 17px;
    height: 17px;
  }

  .top-icon svg {
    width: 17px;
    height: 17px;
  }

  .nav-shell {
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    width: 172px;
    height: 50px;
  }

  .language-switcher button {
    min-width: 33px;
    height: 31px;
    font-size: 12px;
  }

  .nav-links {
    inset: 102px 14px auto;
  }

  .hero {
    min-height: 710px;
    overflow: hidden;
  }

  .hero-content {
    padding: 56px 0 130px;
  }

  .hero::after,
  .hero-accent-wedge {
    display: none;
  }

  .hero-media {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(100deg, rgba(4, 17, 34, 0.96) 0%, rgba(4, 17, 34, 0.84) 58%, rgba(4, 17, 34, 0.52) 100%),
      linear-gradient(180deg, rgba(4, 17, 34, 0.06), rgba(4, 17, 34, 0.72));
  }

  .hero-display {
    font-size: 43px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .benefit-item {
    min-height: 0;
    padding: 0;
    gap: 10px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-item strong {
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
  }

  .ticker-band {
    bottom: 18px;
    padding: 14px 0 16px;
  }

  .ticker-track {
    gap: 14px;
    padding: 9px 0;
  }

  .ticker-track span {
    font-size: 11px;
  }

  .ticker-track i {
    width: 16px;
    height: 3px;
  }

  .hero-products {
    padding-top: 26px;
  }

  .hero-preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-card {
    min-height: 138px;
  }

  .preview-card div {
    inset: auto 15px 13px;
  }

  .preview-card h2 {
    font-size: 18px;
  }

  .hero-tagline {
    display: grid;
    gap: 10px;
    justify-items: start;
    min-height: 126px;
    padding: 24px 0 6px;
  }

  .script-line {
    font-size: 23px;
  }

  .priority-line {
    padding-left: 0;
    border-left: 0;
    font-size: 13px;
  }

  .section {
    padding: 56px 0;
  }

  .about .section-copy {
    padding-top: 0;
  }

  .about-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .about-logo-lockup {
    min-height: 106px;
  }

  .about-logo-lockup img {
    width: 172px;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-portrait,
  .about-portrait img {
    height: 470px;
    min-height: 470px;
  }

  .about-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .about-caption strong {
    font-size: 18px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 31px;
  }

  .service-grid,
  .machinery-stats,
  .machinery-gallery,
  .product-gallery,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    gap: 14px;
  }

  .service-video-trigger {
    min-height: 328px;
  }

  .service-video-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .service-video-title {
    font-size: 17px;
  }

  .machinery-feature {
    min-height: 0;
  }

  .machinery-feature img {
    height: 318px;
    min-height: 318px;
  }

  .machinery-feature div {
    padding: 22px;
  }

  .machinery-feature h3 {
    font-size: 25px;
  }

  .machinery-card,
  .machinery-card img {
    min-height: 0;
    height: 268px;
  }

  .product-card.featured,
  .product-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .product-card img,
  .product-card.featured img,
  .product-card.wide img {
    height: 252px;
  }

  .quote-strip h2 {
    font-size: 28px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 300px;
    height: 300px;
  }

  .footer-logo-frame {
    width: 212px;
    min-height: 76px;
  }

  .footer-logo-frame img {
    width: 178px;
  }

  .image-lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
    padding: 18px 14px 22px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .lightbox-frame img {
    max-height: 70vh;
  }

  .lightbox-frame video {
    max-height: 70vh;
  }

  .lightbox-frame figcaption {
    font-size: 13px;
  }

  .lightbox-nav {
    grid-row: 2;
    width: 100%;
    height: 46px;
    font-size: 34px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
