/* =========================================================
   NEHVONEN PALVELUSIVUT
   Yksi yhteinen CSS palvelusivuille.
   Lataa tämä palvelut/lavettisiirrot.html-tiedostossa:
   <link rel="stylesheet" href="../style.css">
   <link rel="stylesheet" href="../header.css">
   <link rel="stylesheet" href="./palvelut.css">
========================================================= */

.neh-service-page {
  --neh-dark: #071019;
  --neh-dark-2: #0b1520;
  --neh-orange: #f28c00;
  --neh-orange-readable: #9a5600;
  --neh-hero-accent: #79ff0b;
  --neh-green: #146c2e;
  --neh-text: #dce3ea;
  --neh-container: 1320px;
  --neh-page-x: clamp(28px, 6vw, 168px);
  --neh-section-y: clamp(72px, 7vw, 118px);
  --neh-cover-y: clamp(70px, 7vw, 120px);
  --neh-text-panel-max: 560px;
  --neh-service-light: #f5f4f1;
}

.neh-service-page,
.neh-service-page * {
  box-sizing: border-box;
}

.neh-service-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* -------------------------
   Hero
------------------------- */

.neh-service-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 82svh, 760px);
  overflow: hidden;
  background: #071019;
}

.neh-service-hero .neh-cover-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.neh-service-hero .neh-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(5, 10, 18, .97) 0%,
    rgba(5, 10, 18, .90) 34%,
    rgba(5, 10, 18, .54) 62%,
    rgba(5, 10, 18, .18) 100%
  );
}

.neh-service-hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  z-index: 4;
  width: 52%;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(242, 140, 0, 0) 0%,
    rgba(242, 140, 0, .95) 22%,
    rgba(242, 140, 0, .35) 72%,
    rgba(242, 140, 0, 0) 100%
  );
}

.neh-service-hero .neh-cover-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  padding-block: var(--neh-cover-y);
}

.neh-service-hero .neh-hero-content {
  width: min(100%, var(--neh-text-panel-max));
  max-width: var(--neh-text-panel-max);
}

.neh-service-hero .neh-hero-logo {
  margin: 0;
  padding: 0;
}

.neh-service-hero .neh-hero-logo--desktop {
  display: block;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.neh-service-hero .neh-hero-logo--desktop img {
  width: clamp(360px, 28vw, 560px);
  max-width: 100%;
}

.neh-service-hero .neh-hero-logo--mobile {
  display: none;
}

.neh-service-page .neh-kicker {
  margin: 0 0 14px 0;
  color: var(--neh-orange-readable);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.neh-service-hero .neh-kicker,
.neh-service-section--dark .neh-kicker,
.neh-contact-block .neh-kicker {
  color: var(--neh-orange);
}

.neh-service-hero .neh-hero-title {
  max-width: 100%;
  margin: 0 0 16px 0;
  color: #fff;
  font-size: clamp(34px, 4.1vw, 66px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .42);
}

.neh-service-hero .neh-hero-title strong {
  display: block;
  color: var(--neh-hero-accent);
  font-weight: 900;
  text-shadow: 0 0 28px rgba(121, 255, 11, .22);
}

.neh-service-hero .neh-hero-text {
  max-width: 520px;
  margin: 0 0 28px 0;
  color: #f0f3f6;
  font-size: 16px;
  line-height: 1.58;
}

/* -------------------------
   CTA buttons fallback
------------------------- */

.neh-service-page .neh-cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.neh-service-page .neh-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease;
}

.neh-service-page .neh-cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.neh-service-page .neh-cta-button--call {
  background: var(--neh-orange);
  color: #111111;
}

.neh-service-page .neh-cta-button--wa {
  background: var(--neh-green);
  color: #ffffff;
}

/* -------------------------
   Content sections
------------------------- */

.neh-service-section {
  padding-block: var(--neh-section-y);
  color: #101820;
  background: var(--neh-service-light);
}

.neh-service-section--dark {
  color: #ffffff;
  background: linear-gradient(180deg, #071019 0%, #023169 100%);
}

.neh-service-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.neh-service-section--dark .neh-service-inner {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
}

.neh-service-text {
  max-width: 680px;
}

.neh-service-text h2 {
  margin: 0 0 22px 0;
  color: inherit;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-service-text p:not(.neh-kicker) {
  margin: 0 0 18px 0;
  color: #26323d;
  font-size: 17px;
  line-height: 1.68;
}

.neh-service-section--dark .neh-service-text p:not(.neh-kicker) {
  color: #eef2f5;
}

.neh-service-media {
  margin: 0;
}

.neh-service-placeholder {
  width: 100%;
  min-height: clamp(280px, 34vw, 480px);
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(242, 140, 0, .14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, #0b1520 0%, #023169 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.neh-service-media img {
  width: 100%;
  height: auto;
  min-height: clamp(280px, 34vw, 480px);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.neh-service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 24, 32, .18);
  border-bottom: 1px solid rgba(16, 24, 32, .18);
}

.neh-service-list p {
  margin: 0;
  padding: 22px 0;
  color: #26323d;
  font-size: 17px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(16, 24, 32, .14);
}

.neh-service-list p:last-child {
  border-bottom: 0;
}

.neh-service-list strong {
  color: #101820;
  font-weight: 900;
}

/* Contact ja footer hyödyntää etusivun luokkia, mutta tässä varmistus. */

.neh-service-page .neh-contact-block {
  padding-block: clamp(64px, 6vw, 96px);
}

.neh-hero-logo a,
.neh-footer-logo a {
  display: inline-block;
}

.neh-footer-logo a:focus-visible,
.neh-hero-logo a:focus-visible {
  outline: 3px solid var(--neh-orange);
  outline-offset: 4px;
}

.neh-night-note {
    color: #ffffff;
    background: #071019;
    border-top: 1px solid rgba(242, 140, 0, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .neh-night-note-inner {
    width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
    max-width: var(--neh-container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    padding: clamp(18px, 2.6vw, 30px) 0;
  }

  .neh-night-note-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #101820;
    background: var(--neh-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .neh-night-note p {
    margin: 0;
    max-width: 920px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.5;
    font-weight: 800;
  }

  .neh-night-note strong {
    color: #ffffff;
    font-weight: 900;
  }

  @media (max-width: 759px) {
    
  }

/* -------------------------
   Responsive
------------------------- */

@media (max-width: 919px) {
  .neh-service-inner,
  .neh-service-section--dark .neh-service-inner {
    grid-template-columns: 1fr;
  }

  .neh-service-section--dark .neh-service-media {
    order: 2;
  }

  .neh-service-section--dark .neh-service-text {
    order: 1;
  }
}

@media (max-width: 759px) {

  .neh-service-hero {
    min-height: 100svh;
  }

  .neh-service-hero .neh-cover-bg {
    object-position: 56% center;
  }

  .neh-service-hero .neh-cover-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 10, 18, .18) 0%,
      rgba(5, 10, 18, .34) 36%,
      rgba(5, 10, 18, .88) 100%
    );
  }

  .neh-service-hero .neh-cover-inner {
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 136px 18px 48px 18px;
  }

  .neh-service-hero .neh-hero-logo--desktop {
    display: none;
  }

  .neh-service-hero .neh-hero-logo--mobile {
    position: absolute;
    top: 84px;
    left: 50%;
    z-index: 20;
    display: block;
    width: 300px;
    max-width: 72vw;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .neh-service-hero .neh-hero-logo--mobile img {
    width: 100%;
    margin: 0 auto;
  }

  .neh-service-hero .neh-hero-content {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }

  .neh-service-hero .neh-hero-title {
    max-width: 390px;
    margin-inline: auto;
    font-size: clamp(34px, 11vw, 54px);
    line-height: .96;
  }

  .neh-service-hero .neh-hero-title strong {
    display: block;
  }

  .neh-service-hero .neh-hero-text {
    display: block;
    max-width: 390px;
    margin: 18px auto 24px auto;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .neh-service-page .neh-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .neh-service-page .neh-cta-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .neh-service-section {
    padding-block: 58px;
  }

  .neh-service-text h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .neh-service-text p:not(.neh-kicker),
  .neh-service-list p {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .neh-service-media img,
  .neh-service-placeholder {
    min-height: 240px;
    border-radius: 14px;
  }
}

@media (max-width: 759px) {
  .neh-service-hero .neh-hero-title {
    max-width: 390px;
    margin: 0 auto;
    font-size: clamp(30px, 6vw, 62px);
    line-height: .96;
    text-align: center;
    text-shadow: 0 6px 28px rgba(0, 0, 0, .78);
  }
}

@media (max-width: 759px) {

  .neh-service-hero {
    min-height: 100svh;
  }

  .neh-service-hero .neh-cover-inner {
    min-height: 100svh;
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .neh-service-hero .neh-hero-title {
    max-width: 390px;
    margin: 0 auto;
    font-size: clamp(27px, 6vw, 62px);
    line-height: .96;
    text-align: center;
    text-shadow: 0 6px 28px rgba(0, 0, 0, .78);
  }

  .neh-night-note-inner {
      width: min(calc(100% - 36px), var(--neh-container));
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 20px 0;
    }

    .neh-night-note-label {
      width: fit-content;
    }

    .neh-night-note p {
      font-size: 15.5px;
      line-height: 1.55;
      font-weight: 800;
    }

}



/* =========================================================
   PALVELUSIVUJEN VAIHTELEVAT RAKENTEET
   Näillä saadaan uusista palvelusivuista vähemmän artikkelimaisia.
========================================================= */

.neh-service-quick-cards {
  color: #101820;
  background:
    linear-gradient(180deg, rgba(245, 244, 241, 1) 0%, rgba(255, 255, 255, 1) 100%);
  padding-block: clamp(56px, 6vw, 96px);
}

.neh-service-quick-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.neh-service-quick-card {
  position: relative;
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
}

.neh-service-quick-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(242, 140, 0, .12);
  border-radius: 999px;
  pointer-events: none;
}

.neh-service-quick-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #101820;
  background: var(--neh-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.neh-service-quick-card h2 {
  margin: 0 0 12px 0;
  color: #101820;
  font-size: clamp(28px, 3vw, 46px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-service-quick-card p {
  max-width: 380px;
  margin: 0;
  color: #26323d;
  font-size: 16px;
  line-height: 1.6;
}

.neh-service-process {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 18%, rgba(242, 140, 0, .16), transparent 26%),
    linear-gradient(135deg, #071019 0%, #023169 100%);
  padding-block: clamp(70px, 7vw, 112px);
}

.neh-service-process-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(32px, 5vw, 82px);
}

.neh-service-process-head h2 {
  max-width: 620px;
  margin: 0 0 18px 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-service-process-head p:not(.neh-kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.65;
}

.neh-service-steps {
  display: grid;
  gap: 14px;
}

.neh-service-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-areas:
    "num title"
    "num text";
  column-gap: 18px;
  align-items: start;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}

.neh-service-step span {
  grid-area: num;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #101820;
  background: var(--neh-orange);
  font-size: 18px;
  font-weight: 900;
}

.neh-service-step h3 {
  grid-area: title;
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  font-weight: 900;
}

.neh-service-step p {
  grid-area: text;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.55;
}

.neh-service-wide-image {
  background: #071019;
  padding: 0;
}

.neh-service-wide-image-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  transform: translateY(54px);
}

.neh-service-wide-image img {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .24);
}

.neh-service-section--cards {
  padding-top: calc(var(--neh-section-y) + 54px);
}

.neh-service-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.neh-service-feature-list article {
  min-height: 160px;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 32, .08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.neh-service-feature-list h3 {
  margin: 0 0 10px 0;
  color: #101820;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.neh-service-feature-list p {
  margin: 0;
  color: #26323d;
  font-size: 15.5px;
  line-height: 1.55;
}

/* Murske/hiekka/sepeli-sivulla kuvakorttien ei tarvitse näyttää artikkelikuvilta. */

.neh-service-page--aggregate .neh-service-hero .neh-cover-bg {
  object-position: center center;
}

.neh-service-page--aggregate .neh-service-hero .neh-hero-content {
  max-width: 700px;
}

.neh-service-page--aggregate .neh-service-hero .neh-hero-title {
  max-width: 760px;
}

@media (max-width: 919px) {
  .neh-service-quick-inner,
  .neh-service-process-inner,
  .neh-service-feature-list {
    grid-template-columns: 1fr;
  }

  .neh-service-quick-card {
    min-height: auto;
  }

  .neh-service-wide-image-inner {
    transform: translateY(34px);
  }

  .neh-service-section--cards {
    padding-top: calc(58px + 34px);
  }
}

@media (max-width: 759px) {
  .neh-service-quick-cards,
  .neh-service-process {
    padding-block: 48px;
  }

  .neh-service-quick-inner,
  .neh-service-process-inner,
  .neh-service-wide-image-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-service-step {
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    padding: 18px;
  }

  .neh-service-step span {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .neh-service-wide-image img {
    height: 260px;
    border-radius: 14px;
  }

  .neh-service-feature-list article {
    min-height: auto;
  }
}



/* =========================================================
   SWIPE-KUVAKARUSELLI
   CSS-only, toimii mobiilissa sormella swaippaamalla.
========================================================= */

.neh-service-image-carousel {
  color: #ffffff;
  background: #071019;
  padding-block: clamp(58px, 7vw, 110px);
  overflow: hidden;
}

.neh-service-image-carousel-inner {
  width: min(calc(100% - 36px), 1680px);
  max-width: 1680px;
  margin-inline: auto;
}

.neh-service-image-carousel-head {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.neh-service-image-carousel-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-service-image-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0 0 18px 0;
  scrollbar-width: thin;
}

.neh-service-image-slider::-webkit-scrollbar {
  height: 10px;
}

.neh-service-image-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.neh-service-image-slider::-webkit-scrollbar-thumb {
  background: rgba(242, 140, 0, .85);
  border-radius: 999px;
}

.neh-service-image-slide {
  margin: 0;
  scroll-snap-align: start;
}

.neh-service-image-slide img {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .32);
  background: #0b1520;
}

.neh-service-image-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.neh-service-image-dots button {
  padding: 0;
  border: 0;
  cursor: pointer;
  width: 38px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  transition: background .2s ease, transform .2s ease;
}

.neh-service-image-dots button:hover,
.neh-service-image-dots button:focus-visible {
  background: var(--neh-orange);
  transform: translateY(-2px);
  outline: 0;
}

@media (min-width: 1100px) {
  .neh-service-image-slider {
    grid-auto-columns: 72%;
  }
}

@media (max-width: 759px) {
  .neh-service-image-carousel {
    padding-block: 48px;
  }

  .neh-service-image-carousel-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-service-image-slider {
    grid-auto-columns: 88%;
    gap: 14px;
    padding-bottom: 14px;
  }

  .neh-service-image-slide img {
    height: 260px;
    border-radius: 14px;
  }

  .neh-service-image-dots button {
    width: 30px;
    height: 7px;
  }
}


/* Karuselli: piilota scroll-jana ja tee myös desktopilla raahattavaksi. */

.neh-service-image-slider {
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  user-select: none;
}

.neh-service-image-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.neh-service-image-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.neh-service-image-slide,
.neh-service-image-slide img {
  user-select: none;
  -webkit-user-drag: none;
}

/* Korjaa karusellin kicker-tekstin kontrastin tummalla pohjalla */
.neh-service-image-carousel .neh-kicker {
  color: var(--neh-orange);
}



/* =========================================================
   VAIHTOLAVA-AJOT
   Pieni oma rytmi, mutta sama palvelusivujen perusilme.
========================================================= */

.neh-service-page--skip .neh-service-hero .neh-cover-bg {
  object-position: center center;
}

.neh-service-page--skip .neh-service-hero .neh-hero-content {
  max-width: 640px;
}

.neh-skip-strip {
  color: #101820;
  background: #f5f4f1;
  padding-block: clamp(34px, 4vw, 58px);
}

.neh-skip-strip-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
}

.neh-skip-strip article {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
  border-right: 1px solid rgba(16, 24, 32, .10);
}

.neh-skip-strip article:last-child {
  border-right: 0;
}

.neh-skip-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--neh-orange-readable);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.neh-skip-strip h2 {
  margin: 0 0 10px 0;
  color: #101820;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-skip-strip p {
  margin: 0;
  color: #26323d;
  font-size: 15.5px;
  line-height: 1.55;
}

.neh-service-section--skip-intro {
  padding-top: clamp(48px, 5vw, 82px);
}

.neh-skip-order-card {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 140, 0, .22), transparent 30%),
    linear-gradient(135deg, #071019 0%, #023169 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.neh-skip-order-card .neh-kicker {
  color: var(--neh-orange);
}

.neh-skip-order-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neh-skip-order-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.35;
  font-weight: 900;
}

.neh-skip-order-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--neh-orange);
}

.neh-skip-band {
  color: #ffffff;
  background: #071019;
  border-top: 1px solid rgba(242, 140, 0, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.neh-skip-band-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(180px, .3fr) minmax(300px, .9fr) minmax(260px, .7fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding-block: clamp(26px, 4vw, 46px);
}

.neh-skip-band .neh-kicker {
  margin: 0;
  color: var(--neh-orange);
}

.neh-skip-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-skip-band p:not(.neh-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 919px) {
  .neh-skip-strip-inner {
    grid-template-columns: 1fr;
  }

  .neh-skip-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 24, 32, .10);
  }

  .neh-skip-strip article:last-child {
    border-bottom: 0;
  }

  .neh-skip-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .neh-skip-strip {
    padding-block: 34px;
  }

  .neh-skip-strip-inner,
  .neh-skip-band-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-skip-order-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .neh-skip-order-card li {
    font-size: 17px;
  }
}



/* =========================================================
   VAIHTOLAVA-AJOT / AVARA MALLI
   Vähemmän pikku laatikoita, enemmän etusivun kaltaista väljyyttä.
========================================================= */

.neh-service-page--skip-airy .neh-service-hero .neh-cover-bg {
  object-position: center center;
}

.neh-skip-airy-intro {
  color: #101820;
  background: #f5f4f1;
  padding-block: clamp(76px, 9vw, 150px);
}

.neh-skip-airy-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), 980px);
  margin-inline: auto;
  text-align: center;
}

.neh-skip-airy-inner h2 {
  max-width: 900px;
  margin: 0 auto 22px auto;
  color: #101820;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

.neh-skip-airy-inner p:not(.neh-kicker) {
  max-width: 720px;
  margin: 0 auto;
  color: #26323d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}

.neh-skip-airy-flow {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 140, 0, .14), transparent 26%),
    linear-gradient(180deg, #071019 0%, #023169 100%);
  padding-block: clamp(76px, 8vw, 132px);
}

.neh-skip-airy-flow-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
}

.neh-skip-airy-flow-head {
  max-width: 780px;
  margin-bottom: clamp(36px, 5vw, 76px);
}

.neh-skip-airy-flow-head .neh-kicker {
  color: var(--neh-orange);
}

.neh-skip-airy-flow-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: -.055em;
}

.neh-skip-airy-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 70px);
}

.neh-skip-airy-flow-steps article {
  position: relative;
  padding-top: 28px;
  border-top: 3px solid rgba(242, 140, 0, .88);
}

.neh-skip-airy-flow-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--neh-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.neh-skip-airy-flow-steps h3 {
  margin: 0 0 14px 0;
  color: #ffffff;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-skip-airy-flow-steps p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.62;
}

.neh-skip-airy-note {
  color: #101820;
  background: #f5f4f1;
  padding-block: clamp(72px, 8vw, 132px);
}

.neh-skip-airy-note-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(32px, 6vw, 110px);
}

.neh-skip-airy-note h2 {
  max-width: 780px;
  margin: 0;
  color: #101820;
  font-size: clamp(40px, 5.4vw, 86px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.055em;
}

.neh-skip-airy-note p:not(.neh-kicker) {
  max-width: 520px;
  margin: 0;
  color: #26323d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.neh-skip-airy-details {
  color: #101820;
  background: #ffffff;
  padding-block: clamp(76px, 8vw, 132px);
}

.neh-skip-airy-details-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 98px);
}

.neh-skip-airy-copy h2 {
  max-width: 680px;
  margin: 0 0 22px 0;
  color: #101820;
  font-size: clamp(36px, 4.6vw, 51px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.052em;
}

.neh-skip-airy-copy p:not(.neh-kicker) {
  max-width: 640px;
  margin: 0 0 18px 0;
  color: #26323d;
  font-size: 17px;
  line-height: 1.68;
}

.neh-skip-airy-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 24, 32, .16);
}

.neh-skip-airy-list p {
  margin: 0;
  padding: 26px 0;
  color: #26323d;
  font-size: 16.5px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(16, 24, 32, .14);
}

.neh-skip-airy-list strong {
  color: #101820;
  font-weight: 900;
}

@media (max-width: 919px) {
  .neh-skip-airy-flow-steps,
  .neh-skip-airy-note-inner,
  .neh-skip-airy-details-inner {
    grid-template-columns: 1fr;
  }

  .neh-skip-airy-flow-steps {
    gap: 32px;
  }

  .neh-skip-airy-flow-steps p {
    max-width: 640px;
  }
}

@media (max-width: 759px) {
  .neh-skip-airy-intro,
  .neh-skip-airy-flow,
  .neh-skip-airy-note,
  .neh-skip-airy-details {
    padding-block: 54px;
  }

  .neh-skip-airy-inner,
  .neh-skip-airy-flow-inner,
  .neh-skip-airy-note-inner,
  .neh-skip-airy-details-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-skip-airy-inner {
    text-align: left;
  }

  .neh-skip-airy-inner h2,
  .neh-skip-airy-inner p:not(.neh-kicker) {
    margin-inline: 0;
  }

  .neh-skip-airy-flow-head {
    margin-bottom: 34px;
  }

  .neh-skip-airy-flow-steps article {
    padding-top: 20px;
  }

  .neh-skip-airy-list p {
    padding: 22px 0;
    font-size: 15.5px;
  }
}



/* =========================================================
   VAIHTOLAVA: HOX-OSIO TAUSTAKUVALLA
   "Tuodaan, jätetään, haetaan" jätetään rauhaan.
========================================================= */

.neh-skip-airy-note--bg {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 16, 25, .94) 0%, rgba(7, 16, 25, .84) 48%, rgba(7, 16, 25, .72) 100%),
    url("../kuvat/vaihtolava.webp") center center / cover no-repeat;
}

.neh-skip-airy-note--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 140, 0, .20), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .22) 100%);
}

.neh-skip-airy-note--bg .neh-skip-airy-note-inner {
  position: relative;
  z-index: 1;
}

.neh-skip-airy-note--bg .neh-kicker {
  color: var(--neh-orange);
}

.neh-skip-airy-note--bg h2 {
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .42);
}

.neh-skip-airy-note--bg p:not(.neh-kicker) {
  color: rgba(255, 255, 255, .86);
}

@media (max-width: 759px) {
  .neh-skip-airy-note--bg {
    background:
      linear-gradient(180deg, rgba(7, 16, 25, .92) 0%, rgba(2, 49, 105, .94) 100%),
      url("../kuvat/vaihtolava.webp") center center / cover no-repeat;
  }
}



/* =========================================================
   MOBIILISSA KAPEA PALVELUOSIO
   Lisää osioon luokka .neh-service-mobile-narrow.
   Käyttö esim:
   <section class="neh-skip-airy-flow neh-service-mobile-narrow">
========================================================= */

@media (max-width: 759px) {
  .neh-service-mobile-narrow .neh-skip-airy-flow-inner,
  .neh-service-mobile-narrow .neh-skip-airy-note-inner,
  .neh-service-mobile-narrow .neh-skip-airy-details-inner,
  .neh-service-mobile-narrow .neh-service-inner,
  .neh-service-mobile-narrow .neh-service-process-inner,
  .neh-service-mobile-narrow .neh-service-quick-inner {
    width: min(calc(100% - 72px), 430px);
    max-width: 430px;
    margin-inline: auto;
    min-width: 0;
  }

  .neh-service-mobile-narrow .neh-skip-airy-copy,
  .neh-service-mobile-narrow .neh-skip-airy-list,
  .neh-service-mobile-narrow .neh-service-text {
    min-width: 0;
    max-width: 100%;
  }

  .neh-service-mobile-narrow h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .neh-service-mobile-narrow .neh-skip-airy-copy h2 {
    font-size: clamp(28px, 8vw, 46px);
  }
}



/* =========================================================
   TRAKTORI-, PYÖRÄKUORMAAJA- JA KAIVINKONETYÖT
   Kuvapainotteisempi palvelusivu.
========================================================= */

.neh-service-page--earth .neh-service-hero .neh-cover-bg {
  object-position: center center;
}

.neh-service-page--earth .neh-service-hero .neh-hero-content {
  max-width: 820px;
}

.neh-service-page--earth .neh-service-hero .neh-hero-title {
  max-width: 860px;
}

.neh-earth-intro {
  color: #101820;
  background: #f5f4f1;
  padding-block: clamp(72px, 8vw, 128px);
}

.neh-earth-intro-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
}

.neh-earth-intro-copy h2 {
  max-width: 620px;
  margin: 0 0 24px 0;
  color: #101820;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

.neh-earth-intro-copy p:not(.neh-kicker) {
  max-width: 610px;
  margin: 0;
  color: #26323d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}

.neh-earth-intro-image {
  margin: 0;
}

.neh-earth-intro-image img {
  width: 100%;
  height: clamp(320px, 36vw, 540px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .16);
}

.neh-earth-gallery {
  color: #ffffff;
  background: linear-gradient(180deg, #071019 0%, #023169 100%);
  padding-block: clamp(64px, 7vw, 108px);
}

.neh-earth-gallery-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.neh-earth-gallery article {
  min-width: 0;
}

.neh-earth-gallery img {
  width: 100%;
  height: clamp(220px, 22vw, 340px);
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.neh-earth-gallery h2 {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-earth-gallery p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15.5px;
  line-height: 1.58;
}

.neh-earth-bg-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 16, 25, .94) 0%, rgba(7, 16, 25, .74) 45%, rgba(7, 16, 25, .40) 100%),
    url("../kuvat/maa-lumi4.webp") center center / cover no-repeat;
  padding-block: clamp(92px, 10vw, 170px);
}

.neh-earth-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 18%, rgba(242, 140, 0, .20), transparent 30%);
}

.neh-earth-bg-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
}

.neh-earth-bg-inner .neh-kicker {
  color: var(--neh-orange);
}

.neh-earth-bg-inner h2 {
  max-width: 760px;
  margin: 0 0 24px 0;
  color: #ffffff;
  font-size: clamp(42px, 5.6vw, 92px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: -.055em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .42);
}

.neh-earth-bg-inner p:not(.neh-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.neh-earth-dig {
  color: #101820;
  background: #ffffff;
  padding-block: clamp(76px, 8vw, 132px);
}

.neh-earth-dig-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 98px);
}

.neh-earth-dig-copy h2 {
  max-width: 620px;
  margin: 0 0 22px 0;
  color: #101820;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.052em;
}

.neh-earth-dig-copy p:not(.neh-kicker) {
  max-width: 620px;
  margin: 0 0 18px 0;
  color: #26323d;
  font-size: 17px;
  line-height: 1.68;
}

.neh-earth-dig-images {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 16px;
}

.neh-earth-dig-images figure {
  margin: 0;
  min-width: 0;
}

.neh-earth-dig-main {
  grid-row: span 2;
}

.neh-earth-dig-images img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
}

@media (max-width: 919px) {
  .neh-earth-intro-inner,
  .neh-earth-gallery-inner,
  .neh-earth-dig-inner {
    grid-template-columns: 1fr;
  }

  .neh-earth-gallery p {
    max-width: 640px;
  }
}

@media (max-width: 759px) {
  .neh-earth-intro,
  .neh-earth-gallery,
  .neh-earth-bg-section,
  .neh-earth-dig {
    padding-block: 54px;
  }

  .neh-earth-intro-inner,
  .neh-earth-gallery-inner,
  .neh-earth-bg-inner,
  .neh-earth-dig-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-earth-intro-image img,
  .neh-earth-gallery img {
    height: 240px;
    border-radius: 14px;
  }

  .neh-earth-dig-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .neh-earth-dig-main {
    grid-row: auto;
  }

  .neh-earth-dig-images img {
    height: 230px;
    border-radius: 14px;
  }

  .neh-earth-bg-section {
    background:
      linear-gradient(180deg, rgba(7, 16, 25, .90) 0%, rgba(2, 49, 105, .90) 100%),
      url("../kuvat/maa-lumi4.webp") center center / cover no-repeat;
  }
}

/* =========================================================
   LEVEÄMPI PALVELUSIVUPOHJA
   Lisää main-elementtiin:
   class="neh-service-page neh-service-page--wide"
========================================================= */

.neh-service-page--wide {
  --neh-container: 1560px;
  --neh-page-x: clamp(24px, 5vw, 120px);
  --neh-text-panel-max: 720px;
}

.neh-service-page--wide .neh-service-hero .neh-hero-content {
  max-width: 760px;
}

.neh-service-page--wide .neh-service-hero .neh-hero-title {
  max-width: 860px;
}

.neh-service-page--wide .neh-service-inner,
.neh-service-page--wide .neh-earth-intro-inner,
.neh-service-page--wide .neh-earth-gallery-inner,
.neh-service-page--wide .neh-earth-bg-inner,
.neh-service-page--wide .neh-earth-dig-inner,
.neh-service-page--wide .neh-skip-airy-flow-inner,
.neh-service-page--wide .neh-skip-airy-note-inner,
.neh-service-page--wide .neh-skip-airy-details-inner,
.neh-service-page--wide .neh-service-process-inner,
.neh-service-page--wide .neh-service-quick-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
}

@media (max-width: 759px) {
  .neh-service-page--wide {
    --neh-container: 1320px;
    --neh-page-x: 18px;
    --neh-text-panel-max: 430px;
  }
}



/* =========================================================
   LAVETTISIIRROT / LEVEÄ KUVAPAINOTTEINEN POHJA
   OAK-linja: ei "tilaa meiltä" -kieltä, vaan kysy lisätietoja.
========================================================= */

.neh-service-page--flatbed {
  --neh-container: 1560px;
  --neh-page-x: clamp(24px, 5vw, 120px);
  --neh-text-panel-max: 720px;
  --neh-flatbed-blue: #023169;
  --neh-flatbed-ink: #101820;
  --neh-flatbed-muted: #26323d;
}

.neh-flatbed-hero {
  position: relative;
  min-height: clamp(650px, 84svh, 860px);
  overflow: hidden;
  color: #ffffff;
  background: #071019;
}

.neh-flatbed-hero .neh-cover-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.neh-flatbed-hero .neh-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, .96) 0%, rgba(5, 10, 18, .80) 38%, rgba(5, 10, 18, .35) 72%, rgba(5, 10, 18, .08) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, .10) 0%, rgba(5, 10, 18, .30) 100%);
}

.neh-flatbed-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(242, 140, 0, .95) 24%, rgba(242, 140, 0, .35) 72%, transparent 100%);
}

.neh-flatbed-hero-inner {
  position: relative;
  z-index: 4;
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  min-height: clamp(650px, 84svh, 860px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding-block: clamp(90px, 8vw, 140px);
}

.neh-flatbed-hero-content {
  width: min(100%, 760px);
}

.neh-flatbed-hero h1 {
  max-width: 760px;
  margin: 0 0 20px 0;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 104px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .52);
}

.neh-flatbed-hero p:not(.neh-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .90);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.62;
}

.neh-flatbed-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  margin-top: clamp(44px, 5vw, 72px);
}

.neh-flatbed-hero-points article {
  min-width: 0;
}

.neh-flatbed-hero-points span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 2px solid var(--neh-orange);
  border-radius: 999px;
  color: var(--neh-orange);
  font-size: 24px;
  font-weight: 900;
}

.neh-flatbed-hero-points h2 {
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.neh-flatbed-hero-points p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14.5px;
  line-height: 1.55;
}

.neh-flatbed-intro {
  color: var(--neh-flatbed-ink);
  background: #f5f4f1;
  padding-block: clamp(72px, 8vw, 128px);
}

.neh-flatbed-intro-inner,
.neh-flatbed-cards-inner,
.neh-flatbed-safety-inner,
.neh-flatbed-details-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
}

.neh-flatbed-intro-inner {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(38px, 6vw, 104px);
}

.neh-flatbed-copy h2 {
  max-width: 720px;
  margin: 0 0 24px 0;
  color: var(--neh-flatbed-ink);
  font-size: clamp(38px, 4.8vw, 78px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.052em;
}

.neh-flatbed-copy p:not(.neh-kicker) {
  max-width: 640px;
  margin: 0 0 18px 0;
  color: var(--neh-flatbed-muted);
  font-size: 17px;
  line-height: 1.68;
}

.neh-flatbed-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 14px 24px;
  border-radius: 8px;
  color: #101820;
  background: var(--neh-orange);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.neh-flatbed-button::after {
  content: "›";
  margin-left: 12px;
  font-size: 22px;
  line-height: 1;
}

.neh-flatbed-main-image {
  margin: 0;
}

.neh-flatbed-main-image img {
  width: 100%;
  height: clamp(360px, 38vw, 620px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
}

.neh-flatbed-cards {
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 140, 0, .12), transparent 28%),
    linear-gradient(180deg, #071019 0%, #023169 100%);
  padding-block: clamp(70px, 7vw, 118px);
}

.neh-flatbed-cards-head {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 64px) auto;
  text-align: center;
}

.neh-flatbed-cards-head .neh-kicker {
  color: var(--neh-orange);
}

.neh-flatbed-cards-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 3.6vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-flatbed-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.neh-flatbed-card-grid article {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
}

.neh-flatbed-card-grid img {
  width: 100%;
  height: clamp(230px, 21vw, 360px);
  object-fit: cover;
}

.neh-flatbed-card-grid span {
  display: inline-flex;
  margin: 24px 26px 10px 26px;
  color: var(--neh-orange);
  font-size: 32px;
  line-height: 1;
}

.neh-flatbed-card-grid h3 {
  margin: 0 26px 10px 26px;
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-flatbed-card-grid p {
  margin: 0;
  padding: 0 26px 28px 26px;
  color: rgba(255, 255, 255, .82);
  font-size: 15.5px;
  line-height: 1.58;
}

.neh-flatbed-safety {
  position: relative;
  min-height: clamp(390px, 40vw, 620px);
  overflow: hidden;
  color: #ffffff;
  background: #071019;
}

.neh-flatbed-safety > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neh-flatbed-safety-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 16, 25, .22) 0%, rgba(7, 16, 25, .50) 48%, rgba(2, 49, 105, .92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .30) 100%);
}

.neh-flatbed-safety-inner {
  position: relative;
  z-index: 3;
  min-height: clamp(390px, 40vw, 620px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-block: clamp(72px, 8vw, 120px);
}

.neh-flatbed-safety-copy {
  max-width: 620px;
}

.neh-flatbed-safety-copy .neh-kicker {
  color: var(--neh-orange);
}

.neh-flatbed-safety-copy h2 {
  margin: 0 0 22px 0;
  color: #ffffff;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.052em;
}

.neh-flatbed-safety-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.neh-flatbed-details {
  color: var(--neh-flatbed-ink);
  background: #ffffff;
  padding-block: clamp(76px, 8vw, 132px);
}

.neh-flatbed-details-inner {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, .72fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
}

.neh-flatbed-facts {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 3.4vw, 46px);
  border-radius: 18px;
  background: #f5f4f1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
}

.neh-flatbed-facts article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.neh-flatbed-facts span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--neh-orange-readable);
  border: 2px solid var(--neh-orange);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 900;
}

.neh-flatbed-facts h3 {
  margin: 0 0 8px 0;
  color: var(--neh-flatbed-ink);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
}

.neh-flatbed-facts p {
  margin: 0;
  color: var(--neh-flatbed-muted);
  font-size: 15.5px;
  line-height: 1.56;
}

@media (max-width: 919px) {
  .neh-flatbed-hero-points,
  .neh-flatbed-intro-inner,
  .neh-flatbed-card-grid,
  .neh-flatbed-details-inner {
    grid-template-columns: 1fr;
  }

  .neh-flatbed-safety-inner {
    justify-content: flex-start;
  }
}

@media (max-width: 759px) {
  .neh-service-page--flatbed {
    --neh-container: 1320px;
    --neh-page-x: 18px;
    --neh-text-panel-max: 430px;
  }

  .neh-flatbed-hero,
  .neh-flatbed-hero-inner {
    min-height: 100svh;
  }

  .neh-flatbed-hero .neh-cover-bg {
    object-position: 56% center;
  }

  .neh-flatbed-hero .neh-cover-overlay {
    background: linear-gradient(180deg, rgba(5, 10, 18, .20) 0%, rgba(5, 10, 18, .46) 34%, rgba(5, 10, 18, .92) 100%);
  }

  .neh-flatbed-hero-inner {
    align-items: flex-end;
    padding: 132px 18px 48px 18px;
    width: 100%;
  }

  .neh-flatbed-hero-content {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
    text-align: center;
  }

  .neh-flatbed-hero h1 {
    max-width: 390px;
    margin-inline: auto;
    font-size: clamp(34px, 10vw, 56px);
    line-height: .95;
  }

  .neh-flatbed-hero p:not(.neh-kicker) {
    max-width: 390px;
    margin-inline: auto;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .neh-flatbed-hero-points {
    display: none;
  }

  .neh-flatbed-intro,
  .neh-flatbed-cards,
  .neh-flatbed-details {
    padding-block: 54px;
  }

  .neh-flatbed-intro-inner,
  .neh-flatbed-cards-inner,
  .neh-flatbed-safety-inner,
  .neh-flatbed-details-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-flatbed-copy h2,
  .neh-flatbed-safety-copy h2 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .neh-flatbed-main-image img,
  .neh-flatbed-card-grid img {
    height: 250px;
    border-radius: 14px;
  }

  .neh-flatbed-card-grid article,
  .neh-flatbed-facts {
    border-radius: 14px;
  }

  .neh-flatbed-safety,
  .neh-flatbed-safety-inner {
    min-height: 520px;
  }

  .neh-flatbed-safety-overlay {
    background: linear-gradient(180deg, rgba(7, 16, 25, .34) 0%, rgba(7, 16, 25, .92) 100%);
  }

  .neh-flatbed-safety-inner {
    align-items: flex-end;
    padding-block: 54px;
  }

  .neh-flatbed-facts {
    padding: 24px 18px;
  }

  .neh-flatbed-facts article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .neh-flatbed-facts span {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}



/* =========================================================
   MAA-LUMI: TAUSTAKUVAOSION PARALLAX
   Koskee osiota .neh-earth-bg-section.
   Mobiilissa poistetaan fixed-tausta, koska se bugittaa helposti iOS/Android-selaimissa.
========================================================= */

@media (min-width: 760px) {
  .neh-earth-bg-section {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 759px), (prefers-reduced-motion: reduce) {
  .neh-earth-bg-section {
    background-attachment: scroll;
  }
}



/* =========================================================
   LAVETTISIIRROT: SAFETY-OSION PARALLAX
   Koskee osiota .neh-flatbed-safety.
   Kuvan pitää olla taustana, jotta background-attachment toimii.
   Mobiilissa fixed pois, koska se bugittaa usein iOS/Android-selaimissa.
========================================================= */

.neh-flatbed-safety {
  background:
    url("../kuvat/lavetti-wide-safety.webp") center center / cover no-repeat;
}

.neh-flatbed-safety > img {
  display: none;
}

@media (min-width: 760px) {
  .neh-flatbed-safety {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 759px), (prefers-reduced-motion: reduce) {
  .neh-flatbed-safety {
    background-attachment: scroll;
  }
}

/* =========================================================
   MURSKE, HIEKKA JA SEPELI
   Kuvapainotteisempi, leveämpi palvelusivu.
========================================================= */

.neh-service-page--aggregate .neh-service-hero .neh-cover-bg {
  object-position: center center;
}

.neh-service-page--aggregate .neh-service-hero .neh-hero-content {
  max-width: 760px;
}

.neh-service-page--aggregate .neh-service-hero .neh-hero-title {
  max-width: 820px;
}

.neh-aggregate-intro {
  color: #101820;
  background: #f5f4f1;
  padding-block: clamp(72px, 8vw, 128px);
}

.neh-aggregate-intro-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, .84fr) minmax(420px, 1.16fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
}

.neh-aggregate-copy h2,
.neh-aggregate-materials-head h2,
.neh-aggregate-split-panel h2,
.neh-aggregate-trust-head h2,
.neh-aggregate-process-main h2,
.neh-aggregate-gallery-head h2 {
  margin: 0;
  color: inherit;
  font-weight: 900;
  letter-spacing: -.052em;
}

.neh-aggregate-copy h2 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #101820;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .98;
}

.neh-aggregate-copy p:not(.neh-kicker) {
  max-width: 680px;
  margin: 0 0 18px 0;
  color: #26323d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}

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

.neh-aggregate-intro-image,
.neh-aggregate-split-image,
.neh-aggregate-gallery-grid figure {
  margin: 0;
}

.neh-aggregate-intro-image img {
  width: 100%;
  height: clamp(320px, 36vw, 540px);
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .16);
}

.neh-aggregate-materials {
  color: #101820;
  background: #ffffff;
  padding-block: clamp(64px, 7vw, 108px);
}

.neh-aggregate-materials-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, .56fr) minmax(0, 1.44fr);
  align-items: start;
  gap: clamp(34px, 6vw, 88px);
}

.neh-aggregate-materials-head h2 {
  max-width: 520px;
  color: #101820;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: .98;
}

.neh-aggregate-materials-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}

.neh-aggregate-materials-list article {
  min-width: 0;
  padding-top: 24px;
  border-top: 3px solid rgba(242, 140, 0, .9);
}

.neh-aggregate-materials-list span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--neh-orange-readable);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.neh-aggregate-materials-list h3 {
  margin: 0 0 12px 0;
  color: #101820;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-aggregate-materials-list p {
  margin: 0;
  color: #26323d;
  font-size: 16px;
  line-height: 1.62;
}

.neh-aggregate-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  color: #ffffff;
  background: #071019;
}

.neh-aggregate-split-image img {
  width: 100%;
  height: 100%;
  min-height: clamp(380px, 42vw, 620px);
  object-fit: cover;
  object-position: center center;
}

.neh-aggregate-split-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 112px) max(var(--neh-page-x), 34px) clamp(58px, 7vw, 112px) clamp(34px, 6vw, 86px);
  background:
    radial-gradient(circle at 86% 18%, rgba(242, 140, 0, .18), transparent 28%),
    linear-gradient(135deg, #071019 0%, #023169 100%);
}

.neh-aggregate-split-panel .neh-kicker {
  color: var(--neh-orange);
}

.neh-aggregate-split-panel h2 {
  max-width: 640px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: .96;
}

.neh-aggregate-split-panel p:not(.neh-kicker) {
  max-width: 620px;
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.neh-aggregate-split-panel p:last-child {
  margin-bottom: 0;
}

.neh-aggregate-trust {
  color: #101820;
  background: #f5f4f1;
  padding-block: clamp(72px, 8vw, 126px);
}

.neh-aggregate-trust-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
}

.neh-aggregate-trust-head {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.neh-aggregate-trust-head h2 {
  color: #101820;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .98;
}

.neh-aggregate-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
}

.neh-aggregate-trust-list article {
  min-width: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(16, 24, 32, .18);
}

.neh-aggregate-trust-list h3 {
  margin: 0 0 12px 0;
  color: #101820;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-aggregate-trust-list p {
  margin: 0;
  color: #26323d;
  font-size: 16px;
  line-height: 1.62;
}

.neh-aggregate-process {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 18%, rgba(242, 140, 0, .16), transparent 26%),
    linear-gradient(135deg, #071019 0%, #023169 100%);
  padding-block: clamp(70px, 7vw, 112px);
}

.neh-aggregate-process-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr);
  align-items: start;
  gap: clamp(34px, 6vw, 92px);
}

.neh-aggregate-process-main .neh-kicker {
  color: var(--neh-orange);
}

.neh-aggregate-process-main h2 {
  max-width: 850px;
  margin-bottom: clamp(30px, 4vw, 56px);
  color: #ffffff;
  font-size: clamp(38px, 5vw, 78px);
  line-height: .96;
}

.neh-aggregate-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
}

.neh-aggregate-steps article {
  min-width: 0;
  padding-top: 24px;
  border-top: 3px solid rgba(242, 140, 0, .88);
}

.neh-aggregate-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #101820;
  background: var(--neh-orange);
  font-size: 18px;
  font-weight: 900;
}

.neh-aggregate-steps h3 {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-aggregate-steps p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15.5px;
  line-height: 1.58;
}

.neh-aggregate-checklist {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  color: #101820;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.neh-aggregate-checklist h3 {
  margin: 0 0 12px 0;
  color: #101820;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-aggregate-checklist p {
  margin: 0 0 20px 0;
  color: #26323d;
  font-size: 15.5px;
  line-height: 1.55;
}

.neh-aggregate-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neh-aggregate-checklist li {
  position: relative;
  padding-left: 28px;
  color: #26323d;
  font-size: 15.5px;
  line-height: 1.4;
  font-weight: 800;
}

.neh-aggregate-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .46em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--neh-orange);
}

.neh-aggregate-gallery {
  color: #101820;
  background: #ffffff;
  padding-block: clamp(64px, 7vw, 110px);
  overflow: hidden;
}

.neh-aggregate-gallery-inner {
  width: min(calc(100% - 36px), 1680px);
  max-width: 1680px;
  margin-inline: auto;
}

.neh-aggregate-gallery-head {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin: 0 auto clamp(28px, 4vw, 52px) auto;
}

.neh-aggregate-gallery-head h2 {
  max-width: 820px;
  color: #101820;
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: .96;
}

.neh-aggregate-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .85fr;
  grid-auto-rows: clamp(220px, 24vw, 390px);
  gap: clamp(12px, 1.4vw, 22px);
}

.neh-aggregate-gallery-grid figure:first-child {
  grid-row: span 2;
}

.neh-aggregate-gallery-grid figure:nth-child(4) {
  grid-column: span 2;
}

.neh-aggregate-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

@media (max-width: 1100px) {
  .neh-aggregate-materials-inner,
  .neh-aggregate-process-inner {
    grid-template-columns: 1fr;
  }

  .neh-aggregate-materials-head h2,
  .neh-aggregate-process-main h2 {
    max-width: 900px;
  }
}

@media (max-width: 919px) {
  .neh-aggregate-intro-inner,
  .neh-aggregate-split,
  .neh-aggregate-trust-list,
  .neh-aggregate-steps {
    grid-template-columns: 1fr;
  }

  .neh-aggregate-split-panel {
    padding-inline: max(var(--neh-page-x), 28px);
  }

  .neh-aggregate-split-image img {
    min-height: 320px;
  }

  .neh-aggregate-materials-list {
    grid-template-columns: 1fr;
  }

  .neh-aggregate-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
  }

  .neh-aggregate-gallery-grid figure:first-child,
  .neh-aggregate-gallery-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 759px) {
  .neh-aggregate-intro,
  .neh-aggregate-materials,
  .neh-aggregate-trust,
  .neh-aggregate-process,
  .neh-aggregate-gallery {
    padding-block: 54px;
  }

  .neh-aggregate-intro-inner,
  .neh-aggregate-materials-inner,
  .neh-aggregate-trust-inner,
  .neh-aggregate-process-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-aggregate-copy h2,
  .neh-aggregate-materials-head h2,
  .neh-aggregate-split-panel h2,
  .neh-aggregate-trust-head h2,
  .neh-aggregate-process-main h2,
  .neh-aggregate-gallery-head h2 {
    font-size: clamp(31px, 9vw, 48px);
    line-height: 1;
  }

  .neh-aggregate-copy p:not(.neh-kicker),
  .neh-aggregate-split-panel p:not(.neh-kicker) {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .neh-aggregate-intro-image img,
  .neh-aggregate-split-image img {
    height: 260px;
    min-height: 260px;
  }

  .neh-aggregate-split-panel {
    padding: 54px 18px;
  }

  .neh-aggregate-materials-list,
  .neh-aggregate-trust-list,
  .neh-aggregate-steps {
    gap: 28px;
  }

  .neh-aggregate-checklist {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .neh-aggregate-gallery-inner,
  .neh-aggregate-gallery-head {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-aggregate-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 14px;
  }

  .neh-aggregate-gallery-grid img {
    border-radius: 14px;
  }
}

/* =========================================================
   MAANRAKENNUSAJOT / OTSIKKOKORJAUS
   Pienemmät otsikot ja varmistus ettei mobiilissa tule sivuttaisylivuotoa.
========================================================= */

.neh-service-page--aggregate {
  overflow-x: clip;
}

.neh-service-page--aggregate .neh-hero-content,
.neh-service-page--aggregate .neh-aggregate-copy,
.neh-service-page--aggregate .neh-aggregate-materials-head,
.neh-service-page--aggregate .neh-aggregate-split-panel,
.neh-service-page--aggregate .neh-aggregate-trust-head,
.neh-service-page--aggregate .neh-aggregate-gallery-head,
.neh-service-page--aggregate .neh-contact-simple {
  min-width: 0;
  max-width: 100%;
}

.neh-service-page--aggregate .neh-service-hero .neh-hero-title {
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
  overflow-wrap: normal;
  word-break: normal;
}

.neh-service-page--aggregate .neh-aggregate-copy h2,
.neh-service-page--aggregate .neh-aggregate-materials-head h2,
.neh-service-page--aggregate .neh-aggregate-split-panel h2,
.neh-service-page--aggregate .neh-aggregate-trust-head h2,
.neh-service-page--aggregate .neh-aggregate-gallery-head h2,
.neh-service-page--aggregate .neh-contact-simple h2 {
  font-size: clamp(30px, 3.7vw, 34px);
  line-height: 1.05;
  letter-spacing: -.035em;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.neh-service-page--aggregate .neh-aggregate-materials-list h3,
.neh-service-page--aggregate .neh-aggregate-trust-list h3 {
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

@media (max-width: 759px) {
  .neh-service-page--aggregate {
    --neh-page-x: 18px;
  }

  .neh-service-page--aggregate .neh-service-hero .neh-hero-title {
    font-size: clamp(27px, 7vw, 46px);
    line-height: 1.02;
    letter-spacing: -.03em;
  }

  .neh-service-page--aggregate .neh-aggregate-copy h2,
  .neh-service-page--aggregate .neh-aggregate-materials-head h2,
  .neh-service-page--aggregate .neh-aggregate-split-panel h2,
  .neh-service-page--aggregate .neh-aggregate-trust-head h2,
  .neh-service-page--aggregate .neh-aggregate-gallery-head h2,
  .neh-service-page--aggregate .neh-contact-simple h2 {
    font-size: clamp(28px, 7.2vw, 34px);
    line-height: 1.08;
    letter-spacing: -.025em;
  }

  .neh-service-page--aggregate .neh-aggregate-materials-list h3,
  .neh-service-page--aggregate .neh-aggregate-trust-list h3 {
    font-size: clamp(21px, 5.6vw, 26px);
    line-height: 1.14;
  }

  .neh-service-page--aggregate .neh-aggregate-intro-inner,
  .neh-service-page--aggregate .neh-aggregate-materials-inner,
  .neh-service-page--aggregate .neh-aggregate-trust-inner,
  .neh-service-page--aggregate .neh-aggregate-gallery-head,
  .neh-service-page--aggregate .neh-contact-inner,
  .neh-service-page--aggregate .neh-footer-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-service-page--aggregate .neh-aggregate-split-panel {
    padding-inline: 18px;
  }
}


/* =========================================================
   MAANRAKENNUSAJOT / MOBIILI-HERO
   Mobiilissa käytetään erillistä pystympää cover-kuvaa.
   Tiedosto: /kuvat/murske-net.webp
========================================================= */

@media (max-width: 759px) {
  .neh-service-page--aggregate .neh-service-hero {
    min-height: 100svh;
    align-items: stretch;
    overflow: hidden;
    background: #071019;
  }

  .neh-service-page--aggregate .neh-service-hero .neh-cover-bg {
    content: url("../kuvat/murske-net.webp");
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    animation: none !important;
  }

  .neh-service-page--aggregate .neh-service-hero .neh-cover-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 10, 18, .18) 0%,
      rgba(5, 10, 18, .34) 36%,
      rgba(5, 10, 18, .90) 100%
    );
  }

  .neh-service-page--aggregate .neh-service-hero .neh-cover-inner {
    width: 100% !important;
    max-width: none !important;
    min-height: 100svh;
    margin: 0 !important;
    padding: 120px 18px 58px 18px !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .neh-service-page--aggregate .neh-service-hero .neh-hero-content {
    width: min(100%, 430px);
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }

  .neh-service-page--aggregate .neh-service-hero .neh-hero-title {
    max-width: 390px;
    margin: 0 auto 14px auto;
    font-size: clamp(27px, 7vw, 48px);
    line-height: .94;
    text-align: center;
  }

  .neh-service-page--aggregate .neh-service-hero .neh-hero-text {
    max-width: 390px;
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 1.55;
    text-align: center;
  }
}


/* =========================================================
   BULKKI- JA KUIVA-AINEKULJETUKSET + HAKE- JA TURVEKULJETUKSET
   Uudet palvelusivut samaan visuaaliseen linjaan.
========================================================= */

.neh-service-page--bulk,
.neh-service-page--energy {
  --neh-container: 1560px;
  --neh-page-x: clamp(24px, 5vw, 120px);
  --neh-text-panel-max: 760px;
}

.neh-service-page--bulk .neh-service-hero .neh-hero-content,
.neh-service-page--energy .neh-service-hero .neh-hero-content {
  max-width: 760px;
}

.neh-service-page--bulk .neh-service-hero .neh-hero-title,
.neh-service-page--energy .neh-service-hero .neh-hero-title {
  max-width: 860px;
}

.neh-service-page--bulk .neh-service-hero .neh-cover-bg {
  object-position: center center;
}

.neh-service-page--energy .neh-service-hero .neh-cover-bg {
  object-position: center 58%;
}

.neh-bulk-intro,
.neh-energy-intro {
  color: #101820;
  background: #f5f4f1;
  padding-block: clamp(74px, 8vw, 132px);
}

.neh-bulk-intro-inner,
.neh-energy-intro-inner,
.neh-bulk-strip-inner,
.neh-energy-gallery-inner,
.neh-bulk-details-inner,
.neh-energy-details-inner,
.neh-bulk-plain-inner,
.neh-energy-plain-inner {
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  margin-inline: auto;
}

.neh-bulk-intro-inner,
.neh-energy-intro-inner {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 6vw, 104px);
}

.neh-bulk-copy h2,
.neh-energy-copy h2,
.neh-bulk-plain-copy h2,
.neh-energy-plain-copy h2 {
  max-width: 760px;
  margin: 0 0 24px 0;
  color: #101820;
  font-size: clamp(38px, 4.8vw, 78px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.052em;
}

.neh-bulk-copy p:not(.neh-kicker),
.neh-energy-copy p:not(.neh-kicker),
.neh-bulk-plain-copy p:not(.neh-kicker),
.neh-energy-plain-copy p:not(.neh-kicker) {
  max-width: 660px;
  margin: 0 0 18px 0;
  color: #26323d;
  font-size: 17px;
  line-height: 1.68;
}

.neh-bulk-intro-image,
.neh-energy-intro-image {
  margin: 0;
}

.neh-bulk-intro-image img,
.neh-energy-intro-image img {
  width: 100%;
  height: clamp(360px, 38vw, 620px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
}

.neh-bulk-strip,
.neh-energy-gallery {
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 140, 0, .12), transparent 28%),
    linear-gradient(180deg, #071019 0%, #023169 100%);
  padding-block: clamp(70px, 7vw, 118px);
}

.neh-bulk-strip-head,
.neh-energy-gallery-head {
  max-width: 820px;
  margin: 0 0 clamp(34px, 5vw, 64px) 0;
}

.neh-bulk-strip-head .neh-kicker,
.neh-energy-gallery-head .neh-kicker,
.neh-bulk-bg .neh-kicker,
.neh-energy-bg .neh-kicker {
  color: var(--neh-orange);
}

.neh-bulk-strip-head h2,
.neh-energy-gallery-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 4.4vw, 72px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

.neh-bulk-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 46px);
}

.neh-bulk-row article {
  padding-top: 26px;
  border-top: 3px solid rgba(242, 140, 0, .88);
}

.neh-bulk-row span,
.neh-energy-facts span {
  display: block;
  margin-bottom: 18px;
  color: var(--neh-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.neh-bulk-row h3,
.neh-energy-facts h3 {
  margin: 0 0 12px 0;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.neh-bulk-row p,
.neh-energy-facts p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15.5px;
  line-height: 1.6;
}

.neh-bulk-bg,
.neh-energy-bg {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #071019;
  min-height: clamp(460px, 45vw, 720px);
}

.neh-bulk-bg::before,
.neh-energy-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 25, .94) 0%, rgba(7, 16, 25, .70) 45%, rgba(7, 16, 25, .22) 100%),
    radial-gradient(circle at 75% 18%, rgba(242, 140, 0, .22), transparent 30%);
  pointer-events: none;
}

.neh-bulk-bg img,
.neh-energy-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.neh-bulk-bg-inner,
.neh-energy-bg-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--neh-page-x) * 2)), var(--neh-container));
  max-width: var(--neh-container);
  min-height: clamp(460px, 45vw, 720px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding-block: clamp(80px, 8vw, 130px);
}

.neh-bulk-bg-copy,
.neh-energy-bg-copy {
  max-width: 700px;
}

.neh-bulk-bg-copy h2,
.neh-energy-bg-copy h2 {
  margin: 0 0 22px 0;
  color: #ffffff;
  font-size: clamp(42px, 5.3vw, 88px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.055em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .42);
}

.neh-bulk-bg-copy p:not(.neh-kicker),
.neh-energy-bg-copy p:not(.neh-kicker) {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.neh-bulk-details,
.neh-energy-details,
.neh-bulk-plain,
.neh-energy-plain {
  color: #101820;
  background: #ffffff;
  padding-block: clamp(76px, 8vw, 132px);
}

.neh-bulk-details-inner,
.neh-energy-details-inner,
.neh-bulk-plain-inner,
.neh-energy-plain-inner {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(360px, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
}

.neh-bulk-facts,
.neh-energy-facts-light {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 24, 32, .16);
}

.neh-bulk-facts p,
.neh-energy-facts-light p {
  margin: 0;
  padding: 26px 0;
  color: #26323d;
  font-size: 16.5px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(16, 24, 32, .14);
}

.neh-bulk-facts strong,
.neh-energy-facts-light strong {
  color: #101820;
  font-weight: 900;
}

.neh-energy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.neh-energy-gallery-grid article {
  min-width: 0;
}

.neh-energy-gallery-grid img {
  width: 100%;
  height: clamp(220px, 20vw, 340px);
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.neh-energy-gallery-grid h3 {
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.035em;
}

.neh-energy-gallery-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.55;
}

.neh-energy-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 70px);
}

.neh-energy-facts article {
  padding-top: 26px;
  border-top: 3px solid rgba(242, 140, 0, .88);
}

.neh-service-page--energy .neh-contact-block,
.neh-service-page--bulk .neh-contact-block {
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 140, 0, .10) 0%, rgba(242, 140, 0, 0) 34%),
    linear-gradient(180deg, #023169 0%, #071019 100%);
}

@media (max-width: 1020px) {
  .neh-bulk-row,
  .neh-energy-gallery-grid,
  .neh-energy-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 919px) {
  .neh-bulk-intro-inner,
  .neh-energy-intro-inner,
  .neh-bulk-details-inner,
  .neh-energy-details-inner,
  .neh-bulk-plain-inner,
  .neh-energy-plain-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .neh-service-page--bulk,
  .neh-service-page--energy {
    --neh-container: 1320px;
    --neh-page-x: 18px;
    --neh-text-panel-max: 430px;
  }

  .neh-bulk-intro,
  .neh-energy-intro,
  .neh-bulk-strip,
  .neh-energy-gallery,
  .neh-bulk-details,
  .neh-energy-details,
  .neh-bulk-plain,
  .neh-energy-plain {
    padding-block: 54px;
  }

  .neh-bulk-intro-inner,
  .neh-energy-intro-inner,
  .neh-bulk-strip-inner,
  .neh-energy-gallery-inner,
  .neh-bulk-details-inner,
  .neh-energy-details-inner,
  .neh-bulk-plain-inner,
  .neh-energy-plain-inner,
  .neh-bulk-bg-inner,
  .neh-energy-bg-inner {
    width: min(calc(100% - 36px), var(--neh-container));
  }

  .neh-bulk-intro-image img,
  .neh-energy-intro-image img,
  .neh-energy-gallery-grid img {
    height: 240px;
    border-radius: 14px;
  }

  .neh-bulk-row,
  .neh-energy-gallery-grid,
  .neh-energy-facts {
    grid-template-columns: 1fr;
  }

  .neh-bulk-row article,
  .neh-energy-facts article {
    padding-top: 20px;
  }

  .neh-bulk-bg,
  .neh-energy-bg,
  .neh-bulk-bg-inner,
  .neh-energy-bg-inner {
    min-height: auto;
  }

  .neh-bulk-bg-inner,
  .neh-energy-bg-inner {
    padding-block: 86px;
  }

  .neh-bulk-bg::before,
  .neh-energy-bg::before {
    background:
      linear-gradient(180deg, rgba(7, 16, 25, .92) 0%, rgba(2, 49, 105, .94) 100%),
      radial-gradient(circle at 75% 18%, rgba(242, 140, 0, .18), transparent 30%);
  }

  .neh-bulk-bg-copy h2,
  .neh-energy-bg-copy h2,
  .neh-bulk-copy h2,
  .neh-energy-copy h2,
  .neh-bulk-plain-copy h2,
  .neh-energy-plain-copy h2 {
    font-size: clamp(32px, 10vw, 52px);
  }

  .neh-bulk-facts p,
  .neh-energy-facts-light p {
    padding: 22px 0;
    font-size: 15.5px;
  }

  .neh-service-page--energy .neh-service-hero .neh-cover-bg {
    object-position: center center;
  }
}
