:root {
  --ink: #102331;
  --navy: #082638;
  --navy-deep: #061b2a;
  --graphite: #101820;
  --teal: #0f7f96;
  --cyan: #35c2df;
  --cyan-soft: #e8f7fb;
  --accent: #35c2df;
  --accent-dark: #0f7f96;
  --paper: #ffffff;
  --mist: #f4f8fa;
  --steel: #5f7180;
  --line: #dbe8ee;
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow: 0 18px 45px rgba(8, 38, 56, 0.16);
  --shadow-soft: 0 10px 25px rgba(8, 38, 56, 0.1);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #f7fafb;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

body.is-leaving {
  cursor: progress;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(53, 194, 223, 0.18), transparent 34%),
    linear-gradient(135deg, #061b2a, #082638 58%, #0f7f96);
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

body.is-loaded .page-transition {
  transform: translateY(-101%);
}

body.is-leaving .page-transition {
  transform: translateY(0);
  transition-duration: 0.24s;
}

.page-transition::before {
  content: "";
  width: min(230px, 58vw);
  height: 88px;
  background: url("assets/brand/logo-white.png") center / contain no-repeat;
  opacity: 0.95;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.32s ease;
}

.page-transition::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 64px);
  width: min(200px, 52vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, #35c2df, transparent);
  transform: translateX(-50%);
}

body.is-loaded .page-transition::before {
  opacity: 0;
  transform: translateY(-10px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background:
    linear-gradient(135deg, rgba(53, 194, 223, 0.12) 0 1px, transparent 1px 54px),
    linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.topbar .wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar-left,
.topbar-right,
.topbar a,
.topbar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-right {
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.topbar-right a,
.topbar-right span {
  white-space: nowrap;
}

.topbar svg,
.footer svg,
.contact-line svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(6, 27, 42, 0.06);
  backdrop-filter: blur(14px);
}

.site-header .wrap {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  min-width: 188px;
}

.brand img {
  width: 184px;
  height: auto;
  margin: auto 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 12px;
  color: #3d4b56;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--navy);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(8, 38, 56, 0.2);
}

.header-cta:hover {
  background: #124963;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.home-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 42, 0.94) 0%, rgba(6, 27, 42, 0.75) 44%, rgba(6, 27, 42, 0.18) 88%),
    linear-gradient(180deg, rgba(6, 27, 42, 0.05), rgba(6, 27, 42, 0.72));
  z-index: 1;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -15vw;
  bottom: -35%;
  width: 60vw;
  height: 82%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-12deg);
  z-index: 2;
}

.home-hero .wrap {
  position: relative;
  z-index: 4;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 58px 0 122px;
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.hero-copy h1,
.page-hero h1 {
  margin: 16px 0 18px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.1;
  font-weight: 700;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.hero-dossier {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 27, 42, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.dossier-label {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-dossier h2 {
  margin: 10px 0 20px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.dossier-list {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
}

.dossier-list div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.dossier-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.dossier-list dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: #1198b5;
  color: #fff;
  box-shadow: 0 12px 24px rgba(17, 152, 181, 0.24);
}

.btn-primary:hover {
  background: #0f7f96;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.gallery-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-button:hover {
  background: var(--cyan);
  color: var(--navy);
}

.gallery-button svg {
  width: 18px;
  height: 18px;
}

.service-rail {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -52px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(6, 27, 42, 0.14);
}

.service-tile {
  min-height: 148px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-right: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
}

.service-tile:last-child {
  border-right: 0;
}

.service-tile .icon-box,
.small-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(53, 194, 223, 0.14);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-tile svg,
.small-icon svg {
  width: 22px;
  height: 22px;
}

.service-tile h3,
.product-card h3,
.industry-card h3,
.process-step h3,
.news-card h3 {
  margin: 0 0 8px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  line-height: 1.25;
}

.service-tile p,
.product-card p,
.industry-card p,
.process-step p,
.news-card p {
  margin: 0;
  color: var(--steel);
  font-size: 15px;
}

.service-tile p {
  color: var(--steel);
}

.section {
  padding: 96px 0;
  background: #fff;
}

.section.tight {
  padding: 70px 0;
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(53, 194, 223, 0.04), transparent 36%),
    var(--mist);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-head.center .eyebrow::before {
  width: 22px;
}

.section-head h2,
.split-copy h2,
.cta-copy h2 {
  margin: 12px 0 14px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.2;
  font-weight: 700;
}

.section-head p,
.split-copy p,
.cta-copy p {
  margin: 0;
  color: var(--steel);
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 28px;
  width: 86%;
  height: 86%;
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  z-index: -1;
}

.identity-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.identity-visual::before {
  z-index: 0;
  border-color: rgba(53, 194, 223, 0.9);
}

.identity-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(6, 27, 42, 0.02), rgba(6, 27, 42, 0.48));
  pointer-events: none;
}

.identity-visual > img {
  box-shadow: none;
  filter: saturate(0.9) contrast(1.04);
}

.identity-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(390px, calc(100% - 48px));
  padding: 20px 22px;
  border: 1px solid rgba(112, 216, 236, 0.28);
  border-radius: var(--radius);
  background: rgba(6, 27, 42, 0.88);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.identity-badge img {
  width: 210px;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}

.identity-badge span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.floating-fact {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(240px, calc(100% - 30px));
  padding: 22px;
  background: #fff;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-fact strong {
  display: block;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
}

.floating-fact span {
  display: block;
  margin-top: 7px;
  color: var(--steel);
  font-weight: 700;
  line-height: 1.35;
}

.check-list,
.spec-list,
.contact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2b3a44;
  font-weight: 600;
}

.check-list svg,
.spec-list svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--teal);
  margin-top: 4px;
}

.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  color: var(--cyan);
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-card,
.industry-card,
.news-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-body,
.industry-card,
.news-card {
  padding: 26px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.product-meta span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 14px;
  background: var(--cyan-soft);
  color: #16657a;
  font-size: 13px;
  font-weight: 700;
}

.industrial-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.industrial-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 42, 0.92), rgba(6, 27, 42, 0.72)),
    var(--band-image);
  background-size: cover;
  background-position: center;
}

.industrial-band .wrap {
  position: relative;
  z-index: 2;
}

.industrial-band .section-head p,
.industrial-band .section-head h2 {
  color: #fff;
}

.industrial-band .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 214px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(53, 194, 223, 0.55);
  border-radius: 9px;
  color: var(--cyan);
  font-weight: 700;
}

.process-step h3,
.process-step p {
  color: #fff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.industry-card {
  min-height: 205px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.client-strip {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.client-header h2 {
  margin: 0;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.2;
}

.client-header p {
  margin: 0;
  max-width: 500px;
  color: var(--steel);
}

.logo-track {
  --logo-gap: 24px;
  position: relative;
  display: flex;
  gap: var(--logo-gap);
  overflow: hidden;
  padding: 14px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
}

.logo-row {
  display: flex;
  gap: var(--logo-gap);
  min-width: max-content;
  animation: logoMove 52s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes logoMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--logo-gap) / 2)), 0, 0);
  }
}

.client-logo {
  position: relative;
  flex: 0 0 304px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 36px;
  overflow: hidden;
  border: 1px solid rgba(53, 194, 223, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(10, 46, 66, 0.98), rgba(14, 75, 92, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  color: #fff;
  font-weight: 700;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  box-shadow: 0 18px 38px rgba(6, 27, 42, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.client-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(111, 223, 245, 0.36), transparent 38%),
    linear-gradient(135deg, rgba(17, 152, 181, 0.92), rgba(5, 34, 52, 0.98));
  transition: opacity 0.25s ease;
}

.client-logo img {
  position: relative;
  z-index: 1;
  width: min(232px, 88%);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
  opacity: 0.96;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .client-logo:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 222, 248, 0.72);
    box-shadow: 0 22px 42px rgba(6, 27, 42, 0.2), 0 0 0 1px rgba(53, 194, 223, 0.22) inset;
  }

  .client-logo:hover::before {
    opacity: 1;
  }

  .client-logo:hover img {
    opacity: 1;
    transform: scale(1.035);
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.26));
  }
}

.product-card[id] {
  scroll-margin-top: 120px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 240px 240px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(6, 27, 42, 0.82);
  color: #fff;
  font-weight: 700;
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(8, 38, 56, 0.96), rgba(15, 127, 150, 0.9)),
    url("assets/photos/chemical-plant.jpg") center/cover;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.08fr) minmax(120px, 0.58fr) minmax(170px, 0.74fr) minmax(330px, 1.34fr);
  gap: 34px;
  padding: 70px 0;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 20px;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: 18px;
}

.footer p {
  margin: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--cyan);
  stroke-width: 2.2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 14px;
}

.footer-bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy-deep);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 42, 0.92), rgba(6, 27, 42, 0.55)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb svg {
  width: 15px;
  height: 15px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 4vw, 58px);
}

.page-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.detail-card h3 {
  margin: 0 0 10px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  line-height: 1.25;
}

.detail-card p {
  margin: 0;
  color: var(--steel);
}

.spec-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong,
.spec-row span {
  padding: 15px 18px;
}

.spec-row strong {
  background: var(--mist);
}

.spec-row span {
  color: var(--steel);
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 88px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
}

.timeline-year {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
}

.timeline-content {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
  margin: 0 0 5px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
}

.timeline-content p {
  margin: 0;
  color: var(--steel);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.contact-panel,
.form-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.contact-panel h2,
.form-panel h2 {
  margin: 12px 0 18px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.2;
}

.contact-line {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line .small-icon {
  margin: 0;
}

.contact-line strong {
  display: block;
  color: var(--navy);
}

.contact-line span,
.contact-line a {
  color: var(--steel);
  overflow-wrap: anywhere;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow-wrap: anywhere;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-alert {
  margin: 0 0 18px;
  border: 1px solid rgba(17, 152, 181, 0.22);
  border-left: 4px solid var(--cyan);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(53, 194, 223, 0.08);
  font-size: 14px;
  line-height: 1.55;
}

.form-alert.is-error {
  border-color: rgba(186, 53, 53, 0.22);
  border-left-color: #ba3535;
  background: rgba(186, 53, 53, 0.07);
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.trap-field {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.field label {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 194, 223, 0.14);
}

.location-directory {
  background:
    linear-gradient(180deg, #f3f9fb 0%, #ffffff 100%);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.office-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.office-card .small-icon {
  margin: 0;
}

.office-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 800;
}

.office-card address {
  margin: 0;
  color: var(--steel);
  font-style: normal;
  line-height: 1.7;
}

.unit-directory {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 27, 42, 0.98), rgba(12, 73, 93, 0.94)),
    var(--navy-deep);
  box-shadow: 0 18px 44px rgba(6, 27, 42, 0.18);
}

.unit-directory-head {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.unit-directory-head h3 {
  margin: 8px 0 0;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
}

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

.unit-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  min-height: 136px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.unit-row:nth-child(2n) {
  border-right: 0;
}

.unit-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.unit-logo {
  width: 160px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.unit-logo img {
  width: 154px;
  height: 68px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
}

.unit-row h4 {
  margin: 0 0 8px;
  font-family: "Roboto", "Inter", Arial, sans-serif;
  font-size: 18px;
}

.unit-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 360px;
  background: var(--mist);
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.map-link {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  padding: 11px 14px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(2, 30, 45, 0.2);
}

.map-link svg {
  width: 16px;
  height: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card img {
  width: calc(100% + 52px);
  max-width: none;
  height: 185px;
  margin: -26px -26px 22px;
  object-fit: cover;
}

.reveal-ready {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reveal-ready.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .topbar .contact-email {
    display: none;
  }
}

@media (max-width: 1040px) {
  .home-hero .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-dossier {
    max-width: 520px;
  }

  .header-cta {
    display: none;
  }

  .service-rail,
  .process-grid,
  .industry-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .detail-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .topbar .contact-place {
    display: none;
  }
}

@media (max-width: 860px) {
  .topbar .wrap {
    min-height: 36px;
    justify-content: center;
  }

  .topbar-left,
  .topbar .contact-email,
  .topbar .contact-place {
    display: none;
  }

  .site-header .wrap {
    height: 76px;
  }

  .brand img {
    width: 142px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
  }

  .menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    justify-content: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .home-hero,
  .home-hero .wrap {
    min-height: 660px;
  }

  .home-hero .wrap {
    padding: 62px 0 130px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .service-rail {
    margin-top: 0;
    width: 100%;
  }

  .service-tile {
    min-height: 0;
  }

  .section {
    padding: 72px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.large {
    height: 260px;
    grid-row: auto;
  }

  .cta-inner,
  .footer-bottom .wrap,
  .client-header {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-dossier {
    display: none;
  }

  .hero-actions,
  .button-row,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .logo-track {
    --logo-gap: 14px;
    margin-inline: -14px;
    padding: 4px 0;
  }

  .logo-row {
    animation-duration: 46s;
  }

  .client-logo {
    flex-basis: 220px;
    height: 96px;
    padding: 18px 22px;
    border-radius: var(--radius);
  }

  .client-logo img {
    width: min(174px, 88%);
    max-height: 58px;
  }

  .service-rail,
  .product-grid,
  .process-grid,
  .industry-grid,
  .detail-grid,
  .stats-grid,
  .news-grid,
  .footer-main,
  .office-grid,
  .unit-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .unit-row,
  .unit-row:nth-child(2n),
  .unit-row:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .unit-row:last-child {
    border-bottom: 0;
  }

  .unit-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .unit-logo,
  .unit-logo img {
    width: 150px;
    max-height: 64px;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 20px 0 0;
  }

  .stat:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .image-stack img {
    min-height: 330px;
  }

  .identity-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 16px;
  }

  .identity-badge img {
    width: 180px;
    height: auto;
    min-height: 0;
  }

  .identity-badge span {
    font-size: 13px;
  }

  .floating-fact {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -54px 14px 0 auto;
  }

  .spec-row,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline::before {
    left: 42px;
  }

  .timeline-content {
    margin-left: 0;
  }

  .contact-panel,
  .form-panel,
  .detail-card,
  .product-body,
  .industry-card,
  .news-card {
    padding: 24px;
  }
}

@media (hover: none) {
  .client-logo:hover {
    transform: none;
    border-color: rgba(53, 194, 223, 0.16);
    box-shadow: 0 18px 38px rgba(6, 27, 42, 0.12);
  }

  .client-logo:hover::before {
    opacity: 0;
  }

  .client-logo:hover img {
    opacity: 0.96;
    transform: none;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
  }
}

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

  .logo-row,
  .hero-slide,
  .gallery-item img,
  .page-transition,
  .btn,
  .industry-card,
  .client-logo {
    animation: none;
    transition: none;
  }

  .page-transition {
    display: none;
  }
}
