:root {
  --ink: #101821;
  --muted: #4f5660;
  --paper: #f7f5f1;
  --paper-soft: #fbfaf7;
  --dark: #07151c;
  --dark-2: #0b1d26;
  --dark-3: #102833;
  --line: rgba(9, 22, 30, 0.12);
  --line-light: rgba(255, 255, 255, 0.22);
  --accent: #f5820b;
  --accent-2: #ff9c23;
  --white: #ffffff;
  --container: min(1220px, calc(100vw - 96px));
  --hero-image: url("./assets/site/v2/home/home-hero-main-01.png");
  --hero-blur: 4px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
}

main > section {
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 0;
  padding-bottom: 0;
}

.home-main > section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.home-main > .impact,
.home-main > .process,
.home-main > .expertise,
.home-main > .industries {
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-main > .impact {
  padding-bottom: 24px;
}

.home-main > .process {
  padding-top: 24px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 60px;
  padding: 0 34px;
  overflow: hidden;
  color: var(--white);
  background: #07151c;
}

.home-main + .footer,
.home-main ~ .footer {
  margin-top: 80px;
}

.hero__photo,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__photo {
  inset: -24px;
  background:
    linear-gradient(90deg, rgba(5, 15, 20, 0.62) 0%, rgba(6, 17, 23, 0.38) 34%, rgba(6, 17, 23, 0.16) 68%, rgba(6, 17, 23, 0.2) 100%),
    var(--hero-image) 68% 0% / cover no-repeat;
  filter: blur(var(--hero-blur)) saturate(1.03) contrast(1) brightness(0.94);
  transform: scale(1.015);
  transform-origin: center;
  opacity: 1;
}

.hero__shade {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 159, 55, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(2, 7, 10, 0.12), rgba(2, 7, 10, 0.16) 52%, rgba(2, 7, 10, 0.36));
}

.hero__frame {
  position: relative;
  z-index: 10;
  width: min(100%, 1348px);
  min-height: calc(100vh - 32px);
  margin: 0 auto;
  padding: 22px 72px 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  overflow: visible;
}

.nav {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 98px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
}

.brand__logo {
  width: auto;
  height: 90px;
  display: block;
  object-fit: contain;
}

.brand__logo--light,
.footer__logo {
  width: 90px;
  height: 90px;
}

.brand__micro {
  position: absolute;
  left: 132px;
  top: 50px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 0;
}

.nav__item {
  position: relative;
  padding: 12px 0;
}

.nav__links a,
.nav__link {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.94;
  transition: color 320ms ease, opacity 320ms ease;
}

.nav__item:hover > .nav__link,
.nav__links a:hover {
  color: #fff;
  opacity: 1;
}

.nav__links a.is-active::after,
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 31px;
  height: 4px;
  border-radius: 99px;
  background: var(--accent);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  z-index: 80;
  min-width: 238px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(7, 21, 28, 0.97);
  box-shadow: 0 24px 60px rgba(2, 7, 10, 0.28);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.25;
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.nav__dropdown a:hover {
  background: rgba(245, 130, 11, 0.16);
  color: #fff;
  transform: translateX(3px);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 28px;
  margin-left: auto;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 720ms cubic-bezier(0.22, 1, 0.36, 1), color 720ms cubic-bezier(0.22, 1, 0.36, 1), border-color 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__cta:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 21, 28, 0.38);
  color: #fff;
  box-shadow: 0 18px 40px rgba(3, 9, 12, 0.18);
  backdrop-filter: blur(12px);
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  width: min(700px, 56vw);
  margin-top: 18px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.26);
}

.hero h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--accent);
}

.accent-line {
  width: 40px;
  height: 4px;
  margin: 24px 0 20px;
  border-radius: 999px;
  background: var(--accent);
}

.hero p {
  max-width: 690px;
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero__button,
.hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 720ms cubic-bezier(0.22, 1, 0.36, 1), color 720ms cubic-bezier(0.22, 1, 0.36, 1), border-color 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__button {
  background: var(--accent);
  color: #fff;
}

.hero__button:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-1px);
}

.hero__link {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: #fff;
}

.hero__link:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--fade-up {
  transform: translateY(22px);
}

.reveal--soft-zoom {
  transform: scale(0.985);
}

.reveal--slide-in {
  transform: translateX(-18px);
}

.reveal--slide-right {
  transform: translateX(18px);
}

.reveal--photo-rise {
  transform: translateY(18px) scale(0.985);
}

.reveal--inner.reveal--fade-up {
  transform: translateY(18px);
}

.reveal--inner.reveal--slide-in {
  transform: translateX(-12px);
}

.reveal--inner.reveal--slide-right {
  transform: translateX(12px);
}

.reveal--inner.reveal--photo-rise {
  transform: translateY(14px) scale(0.992);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.process {
  padding: 0;
  overflow: visible;
}

.process.reveal,
.process.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.process__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
  overflow: visible;
}

.process__intro-slot {
  position: relative;
  align-self: stretch;
}

.process__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  padding-top: 8px;
}

.process__intro.is-pinned {
  position: fixed;
  top: var(--process-intro-top, 96px);
  left: var(--process-intro-left, 0px);
  width: var(--process-intro-width, auto);
  z-index: 8;
}

.process__intro.is-at-end {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.process__intro .eyebrow {
  font-size: 17px;
}

.process.section .process__intro h2 {
  font-size: 43px;
}

.process__lead {
  max-width: 430px;
  margin: 18px 0 0;
  color: #3f4851;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
}

.section__head {
  margin-bottom: 26px;
}

.section__head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.eyebrow {
  position: relative;
  margin: 0 0 13px;
  padding-left: 17px;
  color: #171e25;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 3px;
  height: 14px;
  background: var(--accent);
}

.eyebrow--accent {
  color: rgba(255, 194, 132, 0.96);
}

.eyebrow--accent::before {
  background: currentColor;
}

h2,
h3,
p {
  margin-top: 0;
}

.section h2,
.expertise h2,
.contact h2 {
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section h2 {
  font-size: 38px;
}

.section__aside {
  margin: 0 10px 3px 0;
  color: #303841;
  font-size: 17px;
  line-height: 1.34;
  text-align: right;
}

.process__steps {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 6px 0 18px 34px;
}

.process__steps::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(245, 130, 11, 0.5), rgba(16, 24, 33, 0.12));
}

.process-step {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 188px;
  padding: 34px 34px 36px;
  border: 1px solid rgba(16, 24, 33, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.98));
  box-shadow: 0 20px 48px rgba(16, 24, 33, 0.08);
  opacity: 0.6;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(245, 130, 11, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 244, 238, 0.98));
  box-shadow: 0 28px 58px rgba(16, 24, 33, 0.12);
}

.process-step::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 40px;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(245, 130, 11, 0.88);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(247, 245, 241, 0.96);
}

.process-step.is-active::before {
  background: rgba(245, 130, 11, 0.16);
}

.process-step__number {
  position: absolute;
  right: -8px;
  top: -12px;
  z-index: 0;
  color: rgba(245, 130, 11, 0.22);
  font-size: clamp(96px, 10vw, 136px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
  pointer-events: none;
  user-select: none;
}

.process-step__body {
  position: relative;
  z-index: 1;
  max-width: 430px;
  padding-right: 112px;
}

.process-step__body h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.process-step__body p {
  max-width: 420px;
  margin-bottom: 0;
  color: #3f4851;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.impact {
  position: relative;
  padding: 0 34px;
  border-top: 1px solid rgba(16, 24, 33, 0.09);
}

.home-main > .impact {
  border-top: 0;
}

.impact::before,
.impact::after {
  content: none;
}

.impact__copy {
  position: relative;
  z-index: 1;
}

.impact__copy--centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.impact__copy--centered .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}

.impact__copy--centered .eyebrow::before {
  top: 1px;
}

.impact__copy--centered h2 {
  margin-bottom: 14px;
}

.impact__copy p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: #3f4851;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.metric-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 122px;
  padding: 28px 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--dark) 0%, #112530 100%);
  color: #fff;
}

.metric-card--stacked {
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 210px;
  padding: 34px 28px 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  animation: trustCardIn 620ms ease-out forwards;
}

.metric-grid--three .metric-card--stacked:nth-child(1) {
  animation-delay: 90ms;
}

.metric-grid--three .metric-card--stacked:nth-child(2) {
  animation-delay: 220ms;
}

.metric-grid--three .metric-card--stacked:nth-child(3) {
  animation-delay: 350ms;
}

.metric-card strong {
  color: var(--accent);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.metric-card--stacked strong {
  display: block;
  font-size: 32px;
}

.metric-card--stacked div {
  color: var(--ink);
}

.metric-card--stacked .icon {
  width: 62px;
  height: 62px;
}

.metric-card--stacked .icon img {
  width: 62px;
  height: 62px;
  display: block;
}

.metric-card p {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
}

.metric-card--stacked p {
  margin-top: 10px;
  color: #101821;
  font-size: 14px;
  line-height: 1.55;
}

.metric-card--stacked div {
  max-width: 220px;
}

@keyframes trustCardIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise {
  margin-top: 0;
  background: linear-gradient(110deg, #07151c 0%, #102530 55%, #081720 100%);
  color: #fff;
}

.home-main > .expertise {
  padding-left: 34px;
  padding-right: 34px;
}

.internal-page .expertise--internal {
  margin-top: 36px;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  color: #171e25;
}

.expertise__inner {
  width: var(--container);
  min-height: 330px;
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 30px;
  margin: 0 auto;
  padding: 0;
}

.expertise__inner--stacked {
  grid-template-columns: 1fr;
  gap: 42px;
}

.expertise__title {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.58);
}

.expertise__title--centered {
  max-width: 760px;
  margin: 0 auto;
  padding-right: 0;
  border-right: 0;
  text-align: center;
}

.internal-page .expertise--internal .eyebrow {
  padding-left: 0;
  color: var(--accent);
}

.accent-text {
  color: var(--accent);
}

.internal-page .expertise--internal .eyebrow::before {
  left: 50%;
  top: -20px;
  width: 36px;
  height: 3px;
  transform: translateX(-50%);
}

.expertise__intro-copy {
  max-width: 230px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.expertise__intro-copy--centered {
  max-width: 620px;
  margin: 18px auto 0;
}

.expertise .eyebrow {
  color: #fff;
}

.internal-page .expertise--internal h2 {
  color: #171e25;
}

.internal-page .expertise--internal .expertise__intro-copy {
  color: #505861;
}

.expertise h2 {
  font-size: 38px;
  font-weight: 700;
}

.expertise-grid {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.expertise-grid .expertise-card {
  flex: 0.9;
}

.expertise-grid .expertise-card--featured {
  flex: 1.85;
}

.expertise-grid--sectors .expertise-card {
  flex: 1;
}

.expertise-grid--sectors .expertise-card--featured {
  flex: 1.7;
}

.internal-page .expertise--internal .expertise-grid .expertise-card,
.internal-page .expertise--internal .expertise-grid .expertise-card--featured {
  flex: 1 1 0;
}

.expertise-grid:hover .expertise-card {
  flex: 0.62;
  opacity: 0.72;
}

.expertise-grid:hover .expertise-card:hover {
  flex: 2.65;
  opacity: 1;
}

.internal-page .expertise--internal .expertise-grid:hover .expertise-card {
  flex: 0.84;
  opacity: 0.76;
}

.internal-page .expertise--internal .expertise-grid:hover .expertise-card:hover {
  flex: 1.65;
  opacity: 1;
}

.expertise-card {
  min-width: 0;
  padding-top: 2px;
  text-align: center;
  transition: flex 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1), opacity 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card--link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.expertise-card--featured {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.expertise-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.internal-page .expertise--internal .expertise-card span {
  color: rgba(245, 130, 11, 0.88);
}

.expertise-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(0.88) brightness(0.9);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover img {
  transform: scale(1.018);
  filter: saturate(1) brightness(1);
}

.expertise-card--link:hover h3 {
  color: #fff;
}

.internal-page .expertise--internal .expertise-card--link:hover h3 {
  color: #171e25;
}

.expertise-card--link:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.internal-page .expertise--internal .expertise-card--link:hover p {
  color: #505861;
}

.expertise-card:first-child img {
  object-position: 47% center;
}

.expertise-grid--sectors .expertise-card:nth-child(1) img {
  object-position: 50% center;
}

.expertise-grid--sectors .expertise-card:nth-child(2) img {
  object-position: center center;
}

.expertise-grid--sectors .expertise-card:nth-child(3) img {
  object-position: center center;
}

.expertise-grid--sectors .expertise-card:nth-child(4) img {
  object-position: center center;
}

.expertise-card h3 {
  margin: 0;
  padding: 18px 0 0;
  font-size: 15px;
  line-height: 1.18;
  text-align: center;
}

.internal-page .expertise--internal .expertise-card h3 {
  color: #171e25;
}

.internal-page .expertise--internal .expertise-card:hover h3 {
  color: var(--accent);
}

.expertise-card p {
  min-height: 82px;
  margin: 0;
  padding: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.internal-page .expertise--internal .expertise-card p {
  color: #505861;
}

.internal-page .expertise--internal .expertise-card:hover p {
  color: #38424b;
}

.expertise--sector-closure {
  margin-bottom: 0;
}

.expertise-grid--sector-closure {
  gap: 16px;
}

.expertise-grid--sector-closure .expertise-card {
  flex: 1 1 0;
}

.expertise-grid--sector-closure .expertise-card img {
  height: 270px;
}

.expertise-grid--sector-closure .expertise-card:nth-child(1) img {
  object-position: 52% center;
}

.expertise-grid--sector-closure .expertise-card:nth-child(2) img {
  object-position: 56% center;
}

.expertise-grid--sector-closure .expertise-card:nth-child(3) img {
  object-position: 64% center;
}

.expertise-grid--sector-closure .expertise-card:nth-child(4) img {
  object-position: center center;
}

.expertise-grid--sector-closure .expertise-card p {
  min-height: 72px;
}

.phosphate {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 33, 0.14);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(16, 24, 33, 0.08);
}

.phosphate__media {
  min-height: 390px;
  background: var(--dark);
}

.phosphate__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) brightness(0.82);
}

.phosphate__copy {
  padding: 60px 54px;
}

.phosphate__copy h2,
.quality__head h2 {
  margin: 0;
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.phosphate__copy p {
  margin: 22px 0 0;
  color: #303a43;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.phosphate__copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.phosphate__copy li {
  position: relative;
  padding-left: 22px;
  color: #202a33;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.phosphate__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}

.phosphate__copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 14px;
  border-radius: 9px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 420ms ease, transform 420ms ease;
}

.phosphate__copy a:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.quality {
  margin-top: 0;
  padding: 60px 48px;
  border: 2px solid var(--accent);
  border-radius: 15px;
  background: transparent;
  color: #171e25;
}

.quality__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.quality .eyebrow {
  padding-left: 0;
  color: var(--accent);
}

.quality .eyebrow::before {
  left: 50%;
  top: -20px;
  width: 36px;
  height: 3px;
  transform: translateX(-50%);
}

.quality__head h2 {
  max-width: 660px;
}

.quality__head p:last-child {
  max-width: 760px;
  margin: 0;
  color: #505861;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.quality__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 34px auto 0;
}

.quality__grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  justify-items: center;
  min-height: 232px;
  padding: 24px;
  border: 1px solid rgba(245, 130, 11, 0.2);
  border-radius: 10px;
  background: rgba(245, 130, 11, 0.04);
  text-align: center;
}

.quality__grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.quality__grid h3 {
  min-height: 44px;
  margin: 0 0 10px;
  color: #171e25;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality__grid p {
  max-width: 250px;
  margin: 0;
  color: #505861;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
}

.quality__grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-height: 44px;
  min-width: 188px;
  margin-top: 26px;
  padding: 0 22px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.quality__grid a:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 130, 11, 0.12);
}


.industries {
  display: grid;
  gap: 28px;
  padding: 64px 0 34px;
}

.industries__head {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.industries .eyebrow {
  padding-left: 0;
}

.industries .eyebrow::before {
  left: 50%;
  top: -20px;
  width: 36px;
  height: 3px;
  transform: translateX(-50%);
}

.industries__head h2 {
  max-width: 640px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
}

.industries__head p:last-child {
  max-width: 720px;
  margin: 0;
  color: #505861;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.industries__carousel {
  display: block;
}

.industries__viewport {
  overflow: hidden;
}

.industry-row {
  display: flex;
  gap: 18px;
  align-items: stretch;
  min-height: 520px;
}

.industry-card {
  position: relative;
  isolation: isolate;
  flex: 1 1 0;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
  display: block;
  text-decoration: none;
  color: #fff;
  background: #0b1720;
  transform: translateY(0) scale(0.985);
  transition: flex-grow 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease, opacity 420ms ease;
}

.industry-card.is-active {
  flex-grow: 2.2;
  transform: translateY(-6px) scale(1);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.56);
  transition: transform 420ms ease, filter 420ms ease;
}

.industry-card:nth-child(1) img {
  object-position: 48% center;
}

.industry-card:nth-child(2) img {
  object-position: 54% center;
}

.industry-card:nth-child(3) img {
  object-position: 40% center;
}

.industry-card:nth-child(4) img {
  object-position: 66% center;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 14, 20, 0.084), rgba(4, 14, 20, 0.322) 48%, rgba(4, 14, 20, 0.658));
}

.industry-card:hover img,
.industry-card.is-active img {
  transform: scale(1.05);
  filter: saturate(1.04) brightness(0.96);
}

.industry-card:not(.is-active) img {
  filter: saturate(0.62) brightness(0.5);
}

.industry-card__tag,
.industry-card__ring,
.industry-card__content {
  z-index: 2;
}

.industry-card__tag {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ff6a00;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.industry-card__ring {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 320ms ease, transform 320ms ease;
}

.industry-card.is-active .industry-card__ring,
.industry-card:hover .industry-card__ring,
.industry-card.is-active .industry-card__tag,
.industry-card:hover .industry-card__tag {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.industry-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  align-content: end;
  gap: 12px;
  width: min(320px, calc(100% - 56px));
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.industry-card.is-active::before,
.industry-card:hover::before {
  background: linear-gradient(180deg, rgba(4, 14, 20, 0.056), rgba(4, 14, 20, 0.21) 42%, rgba(4, 14, 20, 0.63));
}

.industry-card__kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.industry-card.is-active .industry-card__kicker,
.industry-card:hover .industry-card__kicker {
  color: rgba(255, 255, 255, 0.92);
}

.industry-card h3 {
  max-width: 300px;
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.industry-card__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.industry-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
}

.industry-card strong span {
  position: static;
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
}

.industry-card.is-active .industry-card__content,
.industry-card:hover .industry-card__content {
  opacity: 1;
  transform: translateY(0);
}


.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  width: 100vw;
  min-height: min(84vh, 700px);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  background: #0a151c;
  box-shadow: none;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 18%, rgba(245, 130, 11, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(7, 21, 28, 0.82) 0%, rgba(7, 21, 28, 0.4) 38%, rgba(7, 21, 28, 0.2) 68%, rgba(7, 21, 28, 0.32) 100%);
}

.contact__visual,
.contact__panel {
  position: relative;
  z-index: 2;
}

.contact__visual {
  min-height: min(84vh, 700px);
  overflow: visible;
  color: #fff;
  position: static;
}

.contact__visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(4px) saturate(1) brightness(0.76);
  transform: scale(1.04);
}

.contact__visual::before {
  content: none;
}

.contact__visual-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(84vh, 700px);
  padding: 38px clamp(96px, 9vw, 156px) 40px clamp(84px, 8vw, 136px);
}

.contact__visual-copy .eyebrow {
  margin: 20px 0 10px;
  color: rgba(245, 130, 11, 0.96);
}

.contact__visual-copy .eyebrow::before {
  background: rgba(245, 130, 11, 0.96);
}

.contact__visual-copy h2 {
  max-width: 420px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.contact__accent {
  color: rgba(245, 130, 11, 0.98);
}

.contact__intro {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.contact__points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact__points li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.contact__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(245, 130, 11, 0.92);
  border-radius: 50%;
  background: rgba(245, 130, 11, 0.18);
}

.contact__meta {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  font-style: normal;
}

.contact__meta a,
.contact__meta span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.contact__meta a:first-child {
  color: rgba(245, 130, 11, 0.98);
}

.contact__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px clamp(56px, 5.5vw, 96px) 34px clamp(42px, 4.4vw, 78px);
  background: transparent;
}

.contact__stack {
  display: grid;
  gap: 14px;
  width: min(100%, 390px);
}

.contact__form-card {
  width: 100%;
  max-width: 390px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 25, 33, 0.06);
  box-shadow: 0 22px 56px rgba(5, 12, 17, 0.18);
}

.contact__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 8px;
}

.contact__form-grid label {
  display: grid;
  gap: 8px;
}

.contact__form-grid label span {
  color: #111921;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.contact__form-grid label span em {
  color: #8d949b;
  font-style: normal;
  font-weight: 500;
}

.contact__field--full {
  grid-column: 1 / -1;
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 18px;
  outline: 0;
  background: #eef1f5;
  padding: 0 18px;
  color: #18222a;
  font-size: 14px;
  font-weight: 500;
}

.contact select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #7d858c 50%), linear-gradient(135deg, #7d858c 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.contact textarea {
  min-height: 96px;
  padding: 8px 12px;
  resize: vertical;
}

.contact input::placeholder,
.contact textarea::placeholder,
.contact select {
  color: #7f8790;
}

.contact__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2px;
}

.contact button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(245, 130, 11, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 320ms ease, transform 320ms ease, box-shadow 320ms ease;
}

.contact button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.contact button:hover {
  background: #d96f00;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(245, 130, 11, 0.28);
}

.map-card {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(17, 25, 33, 0.08);
  border-radius: 22px;
  background: #dbe2e8;
  box-shadow: 0 22px 56px rgba(5, 12, 17, 0.16);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: saturate(0.86) contrast(0.94);
}

.map-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-card__overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 3px;
  width: max-content;
  max-width: calc(100% - 28px);
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(7, 21, 28, 0.88);
  box-shadow: 0 14px 32px rgba(5, 12, 17, 0.22);
  color: #fff;
  pointer-events: none;
}

.map-card__overlay strong {
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.map-card__overlay small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.25;
}

.contact__map-card {
  min-height: 156px;
}

.contact-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.41fr) minmax(0, 0.59fr);
  gap: 20px;
  align-items: stretch;
  padding: 22px;
  overflow: hidden;
  border-radius: 20px;
  background: #07151c;
  box-shadow: 0 24px 70px rgba(5, 12, 17, 0.14);
}

.contact-map--internal {
  width: var(--container);
  margin: 64px auto;
}

.contact-map__copy {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background: #07151c;
}

.contact-map__copy::before,
.contact-map__copy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-map__copy::before {
  background:
    linear-gradient(90deg, rgba(7, 21, 28, 0.96) 0%, rgba(7, 21, 28, 0.88) 54%, rgba(7, 21, 28, 0.64) 100%),
    radial-gradient(circle at 80% 16%, rgba(245, 130, 11, 0.14), transparent 28%);
}

.contact-map__copy::after {
  background: linear-gradient(180deg, rgba(7, 21, 28, 0.1), rgba(7, 21, 28, 0.84));
}

.contact-map__copy > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.62);
  transform: scale(1.04);
}

.contact-map__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(22px, 2.2vw, 28px);
}

.contact-map .eyebrow {
  color: rgba(245, 130, 11, 0.96);
}

.contact-map .eyebrow::before {
  background: currentColor;
}

.contact-map h2 {
  max-width: 300px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 780;
  line-height: 0.98;
}

.contact-map h2 span {
  color: var(--accent);
}

.contact-map__rule {
  width: 74px;
  height: 2px;
  margin: 16px 0 10px;
  background: var(--accent);
  border-radius: 999px;
}

.contact-map__details {
  display: grid;
  gap: 0;
  margin: 0;
  font-style: normal;
}

.contact-map__detail {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.contact-map__icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(245, 130, 11, 0.9);
  border-radius: 50%;
}

.contact-map__icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--accent);
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
  mask: var(--contact-icon) center / contain no-repeat;
}

.contact-map__detail--phone { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 2.8 10 6.2 8.1 9c1.2 2.4 3.1 4.3 5.5 5.5l2.8-1.9 3.4 3.4c.5.5.5 1.3 0 1.8l-1.5 1.5c-.8.8-2 .9-3 .5C9.7 18 6 14.3 4.2 8.7c-.3-1-.1-2.2.6-3l1.8-1.8c.4-.5 1.2-.5 1.7-.1Z'/%3E%3C/svg%3E"); }
.contact-map__detail--mail { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18v14H3V5Zm2 2v.7l7 4.4 7-4.4V7H5Zm14 10V10l-7 4.4L5 10v7h14Z'/%3E%3C/svg%3E"); }
.contact-map__detail--hours { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 11.1 3.4 2-.9 1.5-4.3-2.6V6.5H13v6.6Z'/%3E%3C/svg%3E"); }
.contact-map__detail--address { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.8a2.8 2.8 0 1 1 0-5.6 2.8 2.8 0 0 1 0 5.6Z'/%3E%3C/svg%3E"); }

.contact-map__detail small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-map__detail strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 620;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-map__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
}

.contact-map__actions .button-orange,
.contact-map__outline {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
}

.contact-map__outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  transition: border-color 260ms ease, background-color 260ms ease, transform 260ms ease;
}

.contact-map__outline:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.contact-map__map {
  min-height: 420px;
  border-radius: 16px;
  box-shadow: none;
}

.contact-map--form {
  grid-template-columns: minmax(360px, 0.43fr) minmax(0, 0.57fr);
}

.form-panel--home-contact {
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.form-panel--home-contact form {
  width: 100%;
  gap: 16px;
}

.home-location {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.home-location__head {
  align-self: center;
}

.home-location__head h2 {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 760;
  line-height: 0.98;
}

.home-location__head p:last-child {
  max-width: 430px;
  margin: 18px 0 0;
  color: #4e5963;
  font-size: 15px;
  line-height: 1.65;
}

.map-card--home-location {
  min-height: 380px;
  border-radius: 18px;
}

.footer {
  margin-top: 80px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(160deg, #07151c 0%, #102630 52%, #0a1b24 100%);
  color: #fff;
}

.footer__main,
.footer__legal,
.footer__subsidy {
  width: var(--container);
  margin: 0 auto;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(160px, 0.72fr));
  gap: 38px;
  padding: 60px 0 42px;
}

.footer__brand-block {
  display: grid;
  gap: 18px;
}

.footer__logo {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.footer__claim {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.footer__contact {
  display: grid;
  gap: 8px;
}

.footer__contact p,
.footer__contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer__social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer__eyebrow {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 220ms ease, opacity 220ms ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__feature-link span {
  color: var(--accent);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__legal-copy,
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.footer__legal-links span:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.footer__subsidy {
  display: grid;
  gap: 18px;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__subsidy-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.footer__subsidy-logos img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 10px;
}

.footer__subsidy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

/* Internal page system */
.internal-page {
  background: var(--paper);
}

.internal-page .hero {
  min-height: 420px;
}

.internal-page .hero--compact {
  padding: 18px 34px;
}

.internal-page .hero__frame {
  min-height: 382px;
}

.internal-page .hero__frame::before,
.internal-page .hero__frame::after {
  display: none;
}

.internal-page .hero__content {
  width: min(620px, 64vw);
  margin-top: 66px;
}

.internal-page .hero h1 {
  font-size: 44px;
  max-width: 820px;
}

.internal-page .hero p {
  max-width: 520px;
  font-size: 15px;
}

.hero--service { --hero-image: url("./assets/site/v2/home/home-hero-alt-01.png"); }
.hero--service-detail { --hero-image: url("./assets/site/v2/home/home-industrial-process-support-01.png"); }
.hero--sector { --hero-image: url("./assets/site/v2/reserva/industrial-process-generic-support-01.png"); }
.hero--quality { --hero-image: url("./assets/site/v2/home/home-calidad-certificaciones-01.png"); }
.hero--company { --hero-image: url("./assets/site/v2/home/home-empresa-historia-01.png"); }
.hero--blog { --hero-image: url("./assets/site/v2/home/home-industrial-process-support-01.png"); }
.hero--contact { --hero-image: url("./assets/site/v2/home/home-hero-alt-01.png"); }

.company-page .hero {
  min-height: min(72vh, 620px);
}

.company-page .hero--compact {
  padding: 10px 34px 12px;
}

.company-page .hero__photo {
  background:
    linear-gradient(90deg, rgba(4, 10, 14, 0.82) 0%, rgba(4, 10, 14, 0.6) 30%, rgba(4, 10, 14, 0.18) 62%, rgba(4, 10, 14, 0.3) 100%),
    var(--hero-image) 68% 26% / cover no-repeat;
}

.company-page .hero__shade {
  background:
    linear-gradient(180deg, rgba(2, 7, 10, 0.18), rgba(2, 7, 10, 0.1) 42%, rgba(2, 7, 10, 0.52));
}

.company-page .hero__frame {
  min-height: calc(min(72vh, 620px) - 22px);
  padding-top: 14px;
  padding-bottom: 18px;
}

.company-page .nav {
  min-height: 80px;
}

.company-page .brand__logo,
.company-page .brand__logo--light {
  width: 74px;
  height: 74px;
}

.company-page .hero__content {
  width: min(390px, 36vw);
  margin-top: 8px;
}

.company-hero__kicker {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.company-page .hero h1 {
  max-width: 390px;
  font-size: clamp(38px, 4.25vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.company-page .hero p:not(.company-hero__kicker) {
  max-width: 390px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.86);
}

.company-page .hero__actions {
  margin-top: 20px;
  gap: 12px;
}

.company-page .hero__button,
.company-page .hero__link {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.company-page .hero__button span {
  margin-left: 8px;
}

.company-page .hero__link {
  background: rgba(2, 7, 10, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.company-hero__proof {
  position: absolute;
  right: 72px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(125px, 0.8fr) minmax(145px, 1fr) minmax(150px, 1fr) minmax(180px, 1.15fr);
  width: min(860px, calc(100% - 620px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(4, 9, 12, 0.8);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.company-hero__proof article {
  min-height: 74px;
  padding: 14px 20px 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.company-hero__proof article:first-child {
  border-left: 0;
}

.company-page .company-hero__proof h2 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.company-page .company-hero__proof article:first-child h2 {
  color: var(--accent);
}

.company-page .company-hero__proof h2 span {
  color: #fff;
  font-size: 11px;
}

.company-page .company-hero__proof p {
  max-width: 150px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.28;
}

.service-page--fosfatado .hero--service-detail { --hero-image: url("./assets/site/real/fosfatado/fosfatado-piezas-negras-01.webp"); }
.service-page--cementacion .hero--service-detail { --hero-image: url("./assets/site/real/cementacion-carbonitruracion/cementacion-operario-horno-01.webp"); }
.service-page--temple-vacio .hero--service-detail { --hero-image: url("./assets/site/real/temple-vacio/temple-vacio-operario-horno-01.webp"); }
.service-page--nitruracion .hero--service-detail { --hero-image: url("./assets/site/real/nitruracion/nitruracion-operario-equipo-01.webp"); }
.service-page--induccion-enderezado .hero--service-detail { --hero-image: url("./assets/site/real/induccion-enderezado/enderezado-operario-maquina-01.webp"); }

.subnav {
  width: var(--container);
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subnav a {
  position: relative;
  padding: 10px 13px;
  border: 1px solid rgba(245, 130, 11, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #18222b;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.subnav a:hover {
  border-color: var(--accent);
  background: rgba(245, 130, 11, 0.12);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 130, 11, 0.16);
}

.subnav a.is-active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.subnav a.is-active:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.content-section {
  width: var(--container);
  margin: 0 auto;
  padding: 60px 0;
}

.content-section + .content-section {
  border-top: 1px solid rgba(16, 24, 33, 0.1);
}

.section-split {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 70px;
  align-items: start;
}

.section-split h2,
.page-title {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-copy {
  max-width: 620px;
  color: #34404a;
  font-size: 15px;
  line-height: 1.72;
}

.section-copy p {
  margin-bottom: 18px;
}

.contact-location {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 42px;
  align-items: stretch;
}

.contact-location__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-location__copy .button-orange {
  margin-top: auto;
}

.map-card--contact {
  min-height: 360px;
  border-radius: 18px;
}

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

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-card,
.info-card,
.link-card,
.article-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.hub-card {
  min-height: 268px;
  display: flex;
  flex-direction: column;
}

.hub-card--featured {
  border-color: rgba(245, 130, 11, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 244, 230, 0.82));
  box-shadow: 0 16px 44px rgba(245, 130, 11, 0.12);
}

.hub-card img,
.article-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.9);
}

.hub-card__body,
.article-card__body,
.info-card,
.link-card {
  padding: 20px;
}

.hub-card h3,
.info-card h3,
.link-card h3,
.article-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hub-card p,
.info-card p,
.link-card p,
.article-card p {
  margin: 0 0 17px;
  color: #48525d;
  font-size: 13px;
  line-height: 1.58;
}

.text-link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  transition: color 420ms ease;
}

.text-link:hover {
  color: var(--dark);
}

.dark-band {
  background: linear-gradient(110deg, #07151c 0%, #102530 100%);
  color: #fff;
}

.dark-band .content-section {
  border: 0;
  padding: 60px 0;
}

.dark-band .eyebrow,
.dark-band h2 {
  color: #fff;
}

.dark-band .section-copy,
.dark-band .section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.company-installations .card-grid,
.company-client-fit .card-grid {
  margin-top: 28px;
}

.process-strip,
.proof-strip,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-tile,
.proof-tile {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.process-tile span,
.proof-tile span,
.spec-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.process-tile h3,
.proof-tile h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.process-tile p,
.proof-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.spec-list {
  display: grid;
  gap: 10px;
}

.spec-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #303b45;
  font-size: 14px;
  list-style: none;
}

.spec-list strong {
  color: var(--ink);
}

.cta-panel {
  width: var(--container);
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 60px 34px;
  border-radius: 14px;
  background: linear-gradient(110deg, #07151c, #102630);
  color: #fff;
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.button-orange {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background-color 720ms cubic-bezier(0.22, 1, 0.36, 1), color 720ms cubic-bezier(0.22, 1, 0.36, 1), border-color 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-orange:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

.dark-band .button-orange:hover,
.cta-panel .button-orange:hover {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

.form-panel {
  padding: 26px;
}

.form-panel form {
  display: grid;
  gap: 15px;
}

.form-panel .button-orange {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-panel label span {
  display: block;
  margin-bottom: 7px;
  color: #59636d;
  font-size: 12px;
  font-weight: 700;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 24, 33, 0.2);
  background: transparent;
  outline: 0;
  padding: 7px 0;
}

.form-panel.form-panel--home-contact {
  padding: clamp(24px, 3vw, 40px);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.contact-map__detail--mail strong {
  font-size: clamp(12px, 0.86vw, 14px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
}

.article-body {
  color: #27323c;
  font-size: 16px;
  line-height: 1.78;
}

.article-body h2 {
  margin: 36px 0 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.article-sidebar .link-card {
  background: rgba(255, 255, 255, 0.68);
}

.breadcrumb {
  margin-bottom: 20px;
  color: #6c747c;
  font-size: 12px;
  font-weight: 700;
}

/* Empresa mockup */
.mig-company-mockup {
  background: #f5f2ec;
}

.mig-company-mockup > section {
  margin-top: 0;
  margin-bottom: 0;
}

.mig-company-mockup > section.reveal {
  opacity: 1;
  transform: none;
}

.mig-company-section {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 60px 0;
}

.mig-company-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mig-company-section h2 {
  margin: 0;
  color: #14202a;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.mig-company-section h3 {
  margin: 0 0 8px;
  color: #14202a;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.mig-company-section p {
  margin: 0;
  color: #54606a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.62;
}

.mig-company-two-col {
  display: grid;
  gap: 24px;
  align-items: start;
}

.mig-company-two-col--top {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.05fr) minmax(260px, 0.72fr);
  align-items: center;
}

.mig-company-two-col--timeline {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.15fr) minmax(220px, 0.48fr);
}

.mig-company-two-col--image-right,
.mig-company-two-col--process {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
  align-items: center;
}

.mig-company-intro__copy {
  display: grid;
  gap: 12px;
}

.mig-company-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0d1921;
}

.mig-company-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98) brightness(0.92);
}

.mig-company-photo--small { height: 210px; }
.mig-company-photo--wide { height: 255px; }
.mig-company-photo--dark { height: 300px; }
.mig-company-photo--process { height: 235px; }

.mig-company-principles,
.mig-company-feature-grid,
.mig-company-treatment-list,
.mig-company-process-line,
.mig-company-sector-grid,
.mig-company-proof-grid {
  display: grid;
  gap: 14px;
}

.mig-company-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.mig-company-principles article {
  display: grid;
  align-content: center;
  text-align: center;
}

.mig-company-years {
  display: grid;
  gap: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(245, 130, 11, 0.36);
}

.mig-company-years article {
  position: relative;
}

.mig-company-years article::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 3px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #f5f2ec;
}

.mig-company-years span,
.mig-company-process-line span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.mig-company-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.mig-company-dark {
  width: 100%;
  background: #07141c;
  color: #fff;
}

.mig-company-dark .mig-company-section {
  padding: 64px 0;
}

.mig-company-dark h2,
.mig-company-dark h3 {
  color: #fff;
}

.mig-company-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.mig-company-treatment-band h2 {
  max-width: 520px;
  margin-bottom: 28px;
}

.mig-company-treatment-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mig-company-treatment-list article {
  min-height: 132px;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.mig-company-treatment-list article:first-child {
  border-left: 0;
  padding-left: 0;
}

.mig-company-process-line {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}

.mig-company-process-line article {
  position: relative;
  padding-right: 14px;
}

.mig-company-process-line article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 38px;
  height: 1px;
  background: rgba(245, 130, 11, 0.52);
  transform: translateX(50%);
}

.mig-company-control {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(20, 32, 42, 0.1);
  border-bottom: 1px solid rgba(20, 32, 42, 0.1);
}

.mig-company-control__checks {
  display: grid;
  gap: 7px;
}

.mig-company-control__checks p {
  position: relative;
  padding-left: 14px;
}

.mig-company-control__checks p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.mig-company-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(20, 32, 42, 0.18);
  border-radius: 4px;
  color: #14202a;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.mig-company-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.mig-company-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: end;
  margin-bottom: 18px;
}

.mig-company-section-head .mig-company-kicker,
.mig-company-section-head h2 {
  grid-column: 1;
}

.mig-company-section-head .mig-company-outline {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.mig-company-sector-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mig-company-sector-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 32, 42, 0.06);
}

.mig-company-sector-grid img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.93);
}

.mig-company-sector-grid h3,
.mig-company-sector-grid p {
  padding-left: 14px;
  padding-right: 14px;
}

.mig-company-sector-grid h3 {
  padding-top: 14px;
}

.mig-company-sector-grid p {
  padding-bottom: 18px;
}

.mig-company-proof .mig-company-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: center;
}

.mig-company-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mig-company-proof-grid article {
  min-height: 118px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.mig-company-proof-grid h3 {
  color: var(--accent);
}

.mig-company-final-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 80px;
}

.mig-company-final-cta .mig-company-photo {
  height: 190px;
}

.mig-company-final-cta__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 44px, 980px);
  }

  .hero__frame {
    padding-inline: 32px;
  }

  .brand {
    min-width: auto;
  }

  .brand__logo {
    height: 62px;
  }

  .nav__links {
    gap: 18px;
  }

  .process__layout {
    grid-template-columns: minmax(240px, 0.84fr) minmax(0, 1.16fr);
    gap: 36px;
  }

  .process__intro .eyebrow {
    font-size: 17px;
  }

  .process.section .process__intro h2 {
    font-size: 35px;
  }

  .process__lead {
    font-size: 20px;
  }

  .expertise__inner,
  .industries,
  .contact,
  .phosphate,
  .quality__head {
    grid-template-columns: 1fr;
  }

  .internal-page .expertise--internal {
    margin-top: 30px;
    border-radius: 0;
  }

  .expertise__title {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 0 24px;
  }

  .industry-row,
  .expertise-grid,
  .quality__grid,
  .card-grid,
  .card-grid--four,
  .mini-grid,
  .process-strip,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phosphate__media {
    min-height: 310px;
  }

  .contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact__visual,
  .contact__visual-copy {
    min-height: 500px;
  }

  .contact__visual {
    position: static;
  }

  .contact__panel {
    padding: 0 28px 28px;
  }

  .contact__stack {
    width: min(100%, 520px);
  }

  .contact-map {
    grid-template-columns: 1fr;
  }

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

  .contact-map__copy,
  .contact-map__content {
    min-height: auto;
  }

  .contact-map__map {
    min-height: 390px;
  }

  .form-panel--home-contact {
    min-height: auto;
  }

  .home-location {
    grid-template-columns: 1fr;
  }

  .section-split,
  .contact-location,
  .article-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .internal-page .hero__content {
    width: min(720px, 88vw);
  }

  .industries__viewport {
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .industries__viewport::-webkit-scrollbar {
    display: none;
  }

  .industry-row {
    min-height: 460px;
  }

  .industry-card {
    flex: 0 0 min(72vw, 420px);
    min-height: 460px;
    scroll-snap-align: center;
  }

  .industry-card.is-active {
    flex-grow: 0;
    flex-basis: min(78vw, 480px);
  }

  .mig-company-two-col--top,
  .mig-company-two-col--timeline,
  .mig-company-two-col--image-right,
  .mig-company-two-col--process,
  .mig-company-control,
  .mig-company-proof .mig-company-section,
  .mig-company-final-cta {
    grid-template-columns: 1fr;
  }

  .mig-company-feature-grid,
  .mig-company-treatment-list,
  .mig-company-process-line,
  .mig-company-sector-grid,
  .mig-company-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mig-company-process-line article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .process__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industries {
    gap: 22px;
    padding: 40px 0 14px;
  }

  .industries__head h2 {
    font-size: 34px;
  }

  .industries__head p:last-child {
    font-size: 14px;
  }

  .industries__viewport {
    overflow-x: auto;
    margin-right: calc(50% - 50vw);
    padding-right: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .industries__viewport::-webkit-scrollbar {
    display: none;
  }

  .industry-row {
    gap: 14px;
    min-height: 400px;
    padding-right: 18px;
  }

  .industry-card,
  .industry-card.is-active {
    flex-basis: 82vw;
    min-height: 400px;
    padding: 22px;
  }

  .industry-card__tag {
    top: 22px;
    left: 22px;
  }

  .industry-card__ring {
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
  }

  .industry-card h3 {
    font-size: 34px;
  }

  .industry-card__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
    width: min(280px, calc(100% - 44px));
  }

  .industry-card__description {
    font-size: 13px;
  }

  .process__intro-slot {
    align-self: start;
    min-height: auto !important;
  }

  .process__intro,
  .process__intro.is-pinned,
  .process__intro.is-at-end {
    position: static;
    width: auto;
    left: auto;
    bottom: auto;
  }

  .process__intro .eyebrow {
    font-size: 17px;
  }

  .process.section .process__intro h2 {
    font-size: 35px;
  }

  .process__lead {
    font-size: 20px;
  }

  :root {
    --container: calc(100vw - 28px);
    --hero-blur: 4px;
  }

  .hero {
    padding: 14px;
  }

  .hero__frame {
    min-height: calc(100vh - 28px);
    padding: 24px;
    overflow: visible;
  }

  .nav {
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav.is-open {
    padding: 0 0 18px;
  }

  .nav.is-open .nav__links {
    position: static;
    left: auto;
    transform: none;
    display: flex;
    order: 3;
    width: 100%;
    margin-top: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(7, 21, 28, 0.92);
    box-shadow: 0 24px 50px rgba(4, 10, 14, 0.24);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav.is-open .nav__links a,
  .nav.is-open .nav__link {
    display: block;
    width: 100%;
    padding: 10px 0 14px;
    font-size: 14px;
  }

  .nav.is-open .nav__links a.is-active::after,
  .nav.is-open .nav__link.is-active::after {
    bottom: 2px;
    width: 36px;
  }

  .nav.is-open .nav__item {
    width: 100%;
    padding: 0;
  }

  .nav.is-open .nav__item > .nav__link {
    display: block;
  }

  .nav.is-open .nav__dropdown {
    display: none;
  }

  .nav.is-open .nav__cta {
    display: inline-flex;
    order: 4;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    padding: 0 14px;
    min-height: 46px;
    font-size: 12px;
  }

  .hero__content {
    width: auto;
    margin-top: 80px;
  }

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

  .section__head--split,
  .metric-grid,
  .industry-row,
  .expertise-grid,
  .quality__grid,
  .card-grid,
  .card-grid--four,
  .mini-grid,
  .process-strip,
  .proof-strip,
  .section-split,
  .article-layout,
  .cta-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .process__steps {
    padding-left: 26px;
  }

  .process__steps::before {
    left: 7px;
  }

  .process-step {
    min-height: 152px;
    padding: 26px 20px 26px 22px;
  }

  .process-step::before {
    left: -25px;
    top: 34px;
  }

  .process-step__number {
    right: -4px;
    top: -8px;
    font-size: 78px;
  }

  .process-step__body {
    max-width: none;
    padding-right: 70px;
  }

  .process-step__body h3 {
    font-size: 20px;
  }

  .impact {
    padding: 42px 18px 34px;
  }

  .impact::before {
    inset: 0 6px;
  }

  .metric-grid--three {
    grid-template-columns: 1fr;
  }

  .phosphate,
  .quality,
  .contact {
    margin-top: 24px;
  }

  .phosphate__copy,
  .quality {
    padding: 28px 24px;
  }

  .phosphate__copy h2,
  .quality__head h2 {
    font-size: 30px;
  }

  .phosphate__media {
    min-height: 245px;
  }

  .quality__grid article {
    min-height: auto;
  }

  .section__aside {
    text-align: left;
  }

  .process__steps {
    padding-left: 22px;
  }

  .process__steps::before {
    left: 6px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 22px 26px 24px;
    opacity: 1;
    transform: none;
  }

  .process-step::before {
    left: -22px;
    top: 32px;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 4px rgba(247, 245, 241, 0.96);
  }

  .process-step__number {
    right: 10px;
    top: 10px;
    font-size: 62px;
  }

  .process-step__body h3 {
    font-size: 22px;
  }

  .expertise__title--centered,
  .expertise__intro-copy--centered {
    max-width: none;
  }

  .expertise__inner--stacked {
    gap: 28px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
    padding: 42px 0 28px;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__subsidy-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer__logo {
    width: 108px;
    height: 108px;
  }

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

  .footer__legal-copy,
  .footer__legal-links,
  .footer__links a,
  .footer__contact p,
  .footer__contact a,
  .footer__subsidy p {
    font-size: 12px;
  }

  .contact,
  .contact__visual,
  .contact__visual-copy {
    min-height: auto;
  }

  .contact {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    border-radius: 24px;
  }

  .contact__visual-copy,
  .contact__panel {
    padding: 24px 20px;
  }

  .contact__visual-copy h2 {
    font-size: 36px;
  }

  .contact__intro {
    font-size: 16px;
  }

  .contact__points li,
  .contact__meta a,
  .contact__meta span {
    font-size: 14px;
  }

  .contact__form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact__form-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    width: min(100% - 28px, 520px);
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .contact-map--internal {
    margin: 44px auto;
  }

  .contact-map__copy {
    border-radius: 16px;
  }

  .contact-map__content {
    padding: 28px 22px;
  }

  .contact-map h2 {
    max-width: 300px;
    font-size: 38px;
  }

  .contact-map__rule {
    margin: 20px 0 14px;
  }

  .contact-map__detail {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    min-height: 64px;
    padding: 12px 0;
  }

  .contact-map__icon {
    width: 30px;
    height: 30px;
  }

  .contact-map__detail strong {
    font-size: 14px;
  }

  .contact-map__actions,
  .contact-map__actions .button-orange,
  .contact-map__outline {
    width: 100%;
  }

  .contact-map__actions {
    gap: 10px;
    padding-top: 22px;
  }

  .contact-map__actions .button-orange,
  .contact-map__outline {
    justify-content: center;
  }

  .form-panel.form-panel--home-contact {
    padding: 22px;
    border-radius: 16px;
  }

  .contact-map__detail--mail strong {
    font-size: 12px;
  }

  .contact__map-card,
  .map-card--contact {
    min-height: 240px;
  }

  .contact-map__map,
  .map-card--home-location {
    min-height: 300px;
  }

  .home-location__head h2 {
    font-size: 34px;
  }

  .map-card__overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .contact-location {
    gap: 22px;
  }

  .contact-location__copy .button-orange {
    margin-top: 8px;
  }

  .internal-page .hero__content {
    width: auto;
    margin-top: 78px;
  }

  .internal-page .hero h1 {
    font-size: 36px;
  }

  .content-section {
    padding: 36px 0;
  }

  .spec-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-panel {
    padding: 24px;
  }

  .mig-company-section {
    width: min(100% - 28px, 520px);
    padding: 42px 0;
  }

  .mig-company-dark .mig-company-section {
    padding: 48px 0;
  }

  .mig-company-section h2 {
    font-size: 25px;
  }

  .mig-company-principles,
  .mig-company-feature-grid,
  .mig-company-treatment-list,
  .mig-company-process-line,
  .mig-company-sector-grid,
  .mig-company-proof-grid {
    grid-template-columns: 1fr;
  }

  .mig-company-photo--small,
  .mig-company-photo--wide,
  .mig-company-photo--dark,
  .mig-company-photo--process {
    height: 220px;
  }

  .mig-company-treatment-list article,
  .mig-company-treatment-list article:first-child,
  .mig-company-proof-grid article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 16px;
  }

  .mig-company-section-head,
  .mig-company-section-head .mig-company-kicker,
  .mig-company-section-head h2,
  .mig-company-section-head .mig-company-outline {
    display: grid;
    grid-column: auto;
    grid-row: auto;
  }

  .mig-company-final-cta__actions,
  .mig-company-final-cta .button-orange,
  .mig-company-final-cta .mig-company-outline,
  .mig-company-control .mig-company-outline {
    width: 100%;
  }
}

.service-showcase,
.service-detail-grid,
.service-related-block {
  width: var(--container);
  margin: 0 auto;
  padding: 60px 0;
}

.service-showcase__heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-showcase__heading .eyebrow {
  padding-left: 0;
  justify-content: center;
}

.service-showcase__heading .eyebrow::before {
  display: none;
}

.service-showcase__heading-line {
  display: block;
  width: 112px;
  height: 2px;
  margin: 12px auto 16px;
  background: var(--accent);
  border-radius: 999px;
}

.service-showcase__heading h2 {
  margin: 0;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.service-showcase__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.service-showcase__intro {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.service-parts-card h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.service-showcase__copy {
  max-width: 470px;
  margin: 0;
  color: #31404b;
  font-size: 15px;
  line-height: 1.78;
  text-align: left;
}

.service-showcase__copy strong {
  color: var(--ink);
  font-weight: 800;
}

.service-showcase__copy p {
  margin: 0 0 16px;
}


.service-showcase__mini-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.service-showcase__applications {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-height: 100%;
  max-width: 250px;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.service-showcase__applications .service-showcase__mini-title {
  width: 100%;
  text-align: center;
}

.service-showcase__chips {
  justify-content: center;
}

.service-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
}

.service-showcase__chips article {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #36424c;
  font-size: 12px;
  font-weight: 700;
}

.service-showcase__chips span,
.service-benefits__grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245, 130, 11, 0.3);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.service-showcase__lead-media,
.service-process-band__media {
  margin: 0;
}

.service-showcase__lead-media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(7, 21, 28, 0.2);
}

.service-showcase__lead-media img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(0.82) brightness(0.88);
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-showcase__lead-media:hover img {
  transform: scale(1.08);
  filter: saturate(0.9) brightness(0.92);
}

.service-benefits {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 24, 33, 0.09);
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(16, 24, 33, 0.09);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.service-benefits__grid article {
  min-height: 170px;
  padding: 22px 18px 20px;
  border-right: 1px solid rgba(16, 24, 33, 0.08);
}

.service-benefits__grid article:last-child {
  border-right: 0;
}

.service-benefits__grid h3 {
  margin: 14px 0 10px;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-benefits__grid p {
  margin: 0;
  color: #4e5963;
  font-size: 12px;
  line-height: 1.55;
}

.service-process-band {
  background: linear-gradient(110deg, #07151c 0%, #102530 100%);
}

.service-process-band__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  gap: 30px;
  align-items: stretch;
  padding-left: max(24px, calc((100vw - 1220px) / 2));
}

.service-process-band__content {
  padding: 60px 0;
}

.service-process-band .eyebrow {
  color: #fff;
}

.service-process-band__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  color: #fff;
}

.service-process-band__steps article {
  position: relative;
  padding-right: 12px;
}

.service-process-band__steps article::after {
  content: '→';
  position: absolute;
  top: 0;
  right: -7px;
  color: rgba(255,255,255,0.26);
  font-size: 16px;
}

.service-process-band__steps article:last-child::after {
  display: none;
}

.service-process-band__steps span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.service-process-band__steps h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.service-process-band__steps p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.55;
}

.service-process-band__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.72);
}

.service-detail-grid {
  padding: 60px 0;
}

.service-detail-grid__columns {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 28px;
  align-items: start;
}

.service-tech-card,
.service-parts-card {
  padding: 0;
}

.service-tech-table {
  display: grid;
  border: 1px solid rgba(16, 24, 33, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.64);
}

.service-tech-table div {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(16,24,33,0.08);
  font-size: 13px;
}

.service-tech-table div:last-child {
  border-bottom: 0;
}

.service-tech-table strong {
  color: var(--ink);
}

.service-tech-table span {
  color: #43505b;
}

.service-tech-card__note {
  margin: 12px 2px 0;
  color: #6c7781;
  font-size: 11px;
  line-height: 1.5;
}

.service-parts-card > p + h2 {
  margin-top: -6px;
}

.service-parts-card > .service-showcase__mini-title {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-parts-card > p:last-of-type {
  margin: 14px 0 18px;
  max-width: 720px;
  color: #3f4b55;
  font-size: 14px;
  line-height: 1.68;
}

.service-parts-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-parts-gallery figure {
  margin: 0;
}

.service-parts-gallery img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(0.86) brightness(0.86);
}

.service-parts-gallery figcaption {
  margin-top: 8px;
  color: #1b252e;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.service-related-block {
  padding: 60px 0;
}

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

.service-related-grid a {
  position: relative;
  min-height: 112px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  background: #0b1720;
}

.service-related-grid a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,21,28,0.1), rgba(7,21,28,0.78));
}

.service-related-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.54);
}

.service-related-grid span {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.sector-challenges {
  padding: 54px 0 56px;
}

.sector-challenges__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.sector-challenges__intro,
.sector-challenges__item {
  min-height: 246px;
}

.sector-challenges__intro {
  padding: 10px 34px 12px 0;
}

.sector-challenges__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-challenges__intro h2 {
  margin: 16px 0 22px;
  color: #0f1820;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.sector-challenges__accent {
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: rgba(245,130,11,0.7);
}

.sector-challenges__item {
  padding: 8px 26px 0 30px;
  border-left: 1px solid rgba(16,24,33,0.08);
}

.sector-challenges__media {
  display: block;
  width: 100%;
  height: 92px;
  margin-bottom: 20px;
  border-radius: 13px;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.82);
  box-shadow: 0 16px 34px rgba(7, 21, 28, 0.12);
}

.sector-challenges__item h3 {
  margin: 0 0 16px;
  color: #141d24;
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.sector-challenges__item p {
  margin: 0;
  color: #3c454d;
  font-size: 14px;
  line-height: 1.65;
}

.sector-components {
  padding: 10px 0 56px;
}

.sector-components__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(136px, 146px));
  justify-content: center;
  gap: 14px;
  align-items: start;
}

.sector-components__intro {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto 18px;
  padding: 0;
  text-align: center;
}

.sector-components__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sector-components__intro h2 {
  margin: 14px 0 18px;
  color: #101921;
  font-size: clamp(31px, 2.9vw, 45px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.sector-components__accent {
  display: block;
  width: 40px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(245,130,11,0.72);
}

.sector-components__card {
  position: relative;
  min-height: 249px;
  overflow: hidden;
  border-radius: 14px;
  background: #13202a;
}

.sector-components__card img,
.sector-components__shade {
  position: absolute;
  inset: 0;
}

.sector-components__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
}

.sector-components__shade {
  background: linear-gradient(180deg, rgba(7,16,22,0.08) 0%, rgba(7,16,22,0.42) 52%, rgba(7,16,22,0.88) 100%);
}

.sector-components__content {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 12px;
  bottom: 14px;
}

.sector-components__tag {
  margin: 0 0 8px;
  color: #f0a14b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-components__content h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.value-treatments {
  padding: 12px 0 64px;
}

.value-treatments__layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 0;
  border: 1px solid rgba(16, 24, 33, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(7, 21, 28, 0.08);
}

.value-treatments__feature {
  position: relative;
  min-height: 448px;
  color: #fff;
  isolation: isolate;
}

.value-treatments__media,
.value-treatments__overlay {
  position: absolute;
  inset: 0;
}

.value-treatments__media {
  background:
    linear-gradient(90deg, rgba(5, 14, 20, 0.9) 0%, rgba(5, 14, 20, 0.78) 36%, rgba(5, 14, 20, 0.34) 72%, rgba(5, 14, 20, 0.18) 100%),
    var(--value-treatments-image) center center / cover no-repeat;
  transform: scale(1.02);
}

.value-treatments__overlay {
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 133, 10, 0.23), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.value-treatments__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 448px;
  padding: 32px 30px 30px;
}

.value-treatments__content h2 {
  max-width: 320px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(35px, 3.8vw, 43px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.value-treatments__content p:last-of-type {
  max-width: 294px;
  margin: 0 0 20px;
  color: rgba(247, 245, 241, 0.84);
  font-size: 14px;
  line-height: 1.6;
}

.value-treatments__button {
  justify-self: start;
}

.value-treatments__button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

.value-treatments__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.96);
}

.value-treatment-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  min-height: 149px;
  padding: 24px 22px 22px;
  border-right: 1px solid rgba(16, 24, 33, 0.08);
  border-bottom: 1px solid rgba(16, 24, 33, 0.08);
  transition: background-color 260ms ease, transform 260ms ease;
}

.value-treatment-card:nth-child(2n) {
  border-right: 0;
}

.value-treatment-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.value-treatment-card:hover {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.98));
  transform: translateX(3px);
}

.value-treatment-card__body {
  display: grid;
  gap: 10px;
}

.value-treatment-card__body strong {
  color: #101821;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.value-treatment-card__body span {
  color: #49525c;
  font-size: 13px;
  line-height: 1.52;
}

.process-flow {
  padding: 6px 0 72px;
}

.process-flow__layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(272px, 0.94fr) minmax(0, 2.36fr);
  gap: 26px;
  align-items: start;
}

.process-flow__intro {
  max-width: 322px;
  padding-top: 18px;
}

.process-flow__eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-flow__intro h2 {
  margin: 0;
  color: #101921;
  font-size: clamp(32px, 3.15vw, 46px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.process-flow__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.process-flow__step {
  position: relative;
  min-height: 286px;
  padding: 2px 10px 0 0;
}

.process-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 82px;
  right: 18px;
  height: 2px;
  background: var(--accent);
}

.process-flow__step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.process-flow__number {
  margin: 0 0 8px;
  color: #101820;
  font-size: 33px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.process-flow__step h3 {
  margin: 0 0 10px;
  color: #121b23;
  font-size: 17px;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.process-flow__step p:last-child {
  margin: 0;
  color: #4b545d;
  font-size: 14px;
  line-height: 1.65;
}


@media (max-width: 1180px) {
  .sector-challenges__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .sector-challenges__intro {
    grid-column: 1 / -1;
    padding-right: 0;
    min-height: 0;
  }

  .sector-challenges__item {
    min-height: 0;
    padding-top: 0;
  }

  .sector-components__grid {
    grid-template-columns: repeat(3, minmax(136px, 1fr));
    justify-content: center;
    gap: 14px;
  }

  .value-treatments__layout {
    grid-template-columns: 1fr;
  }

  .value-treatments__feature,
  .value-treatments__content {
    min-height: 410px;
  }

  .process-flow__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-flow__intro {
    max-width: 540px;
    padding-top: 0;
  }

  .process-flow__step {
    min-height: 0;
    padding-right: 18px;
  }

  .process-flow__step::after,
  .process-flow__step::before {
    display: none;
  }

  .sector-components__intro {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .service-showcase__top,
  .service-detail-grid__columns,
  .service-process-band__inner {
    grid-template-columns: 1fr;
  }

  .service-showcase__intro {
    display: block;
  }

  .service-process-band__steps,
  .service-benefits__grid,
  .service-parts-gallery,
  .service-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process-band__inner {
    padding: 0 24px;
  }

  .service-process-band__media {
    max-height: 320px;
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .sector-challenges {
    padding: 36px 0 24px;
  }

  .sector-challenges__grid {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sector-challenges__intro {
    margin-bottom: 12px;
  }

  .sector-challenges__intro h2 {
    margin: 12px 0 18px;
    font-size: 42px;
  }

  .sector-challenges__item {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid rgba(16,24,33,0.08);
  }

  .sector-challenges__media {
    height: 150px;
    margin-bottom: 18px;
  }

  .sector-components {
    padding: 8px 0 34px;
  }

  .sector-components__grid {
    width: var(--container);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .value-treatments {
    padding: 8px 0 34px;
  }

  .value-treatments__layout,
  .value-treatments__list {
    grid-template-columns: 1fr;
  }

  .value-treatments__feature,
  .value-treatments__content {
    min-height: 390px;
  }

  .value-treatments__content {
    padding: 28px 24px 26px;
  }

  .value-treatments__content h2 {
    max-width: 280px;
    font-size: 36px;
  }

  .value-treatment-card {
    min-height: auto;
    padding: 22px 18px;
    border-right: 0;
  }

  .value-treatment-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 24, 33, 0.08);
  }

  .value-treatment-card:last-child {
    border-bottom: 0;
  }

  .value-treatment-card__body strong {
    font-size: 18px;
  }

  .process-flow {
    padding: 8px 0 38px;
  }

  .process-flow__layout,
  .process-flow__steps {
    grid-template-columns: 1fr;
  }

  .process-flow__intro {
    max-width: none;
  }

  .process-flow__intro h2 {
    max-width: 320px;
    font-size: 36px;
  }

  .process-flow__step {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(16, 24, 33, 0.08);
  }

  .process-flow__step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .process-flow__number {
    font-size: 28px;
  }

  .process-flow__step h3 {
    font-size: 18px;
  }

  .sector-components__intro {
    grid-column: 1 / -1;
    padding: 6px 0 10px;
    margin-bottom: 8px;
  }

  .sector-components__intro h2 {
    margin: 12px 0 18px;
    font-size: 42px;
  }

  .service-benefits__grid,
  .service-process-band__steps,
  .service-parts-gallery,
  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase__heading {
    margin-bottom: 26px;
  }

  .service-showcase__heading-line {
    margin: 10px auto 14px;
  }

  .service-showcase__copy {
    max-width: none;
  }

  .service-showcase,
  .service-detail-grid,
  .service-related-block {
    width: var(--container);
  }

  .service-showcase__mini-title {
    font-size: 22px;
  }

  .service-benefits__grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16,24,33,0.08);
  }

  .service-benefits__grid article:last-child {
    border-bottom: 0;
  }

  .service-process-band__steps article {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .service-process-band__steps article::after {
    display: none;
  }

  .service-tech-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 1120px) {
  .company-page .hero {
    min-height: 644px;
  }

  .company-page .hero__frame {
    min-height: 620px;
  }

  .company-page .hero__content {
    width: min(620px, 78vw);
  }

  .company-hero__proof {
    right: 42px;
    left: 42px;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-hero__proof article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .company-hero__proof article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 760px) {
  .company-page .hero {
    min-height: 860px;
    padding: 14px;
  }

  .company-page .hero__frame {
    min-height: 832px;
    padding: 18px 18px 22px;
  }

  .company-page .hero__content {
    width: 100%;
    margin-top: 30px;
  }

  .company-page .hero h1 {
    max-width: 340px;
    font-size: 39px;
  }

  .company-page .hero p:not(.company-hero__kicker) {
    max-width: 330px;
    font-size: 14px;
  }

  .company-page .hero__actions {
    align-items: stretch;
  }

  .company-page .hero__button,
  .company-page .hero__link {
    justify-content: center;
  }

  .company-hero__proof {
    right: 18px;
    left: 18px;
    bottom: 22px;
    grid-template-columns: 1fr;
  }

  .company-hero__proof article,
  .company-hero__proof article:nth-child(3),
  .company-hero__proof article:nth-child(4) {
    min-height: 0;
    padding: 13px 16px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .company-hero__proof article:first-child {
    border-top: 0;
  }
}
