:root {
  --ink: #071c36;
  --ink-2: #102f57;
  --blue: #075da8;
  --blue-2: #0d7cc7;
  --green: #13a05f;
  --green-2: #8fc63d;
  --teal: #2bb9c7;
  --orange: #f26a22;
  --paper: #f4f8fb;
  --paper-2: #e7edf5;
  --white: #ffffff;
  --muted: #5c6d7f;
  --line: rgba(7, 28, 54, 0.13);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(7, 28, 54, 0.17);
  --hard-shadow: 10px 10px 0 rgba(7, 28, 54, 0.12);
  --radius: 8px;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  font-family: "Chivo", Bahnschrift, "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 28, 54, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 54, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  line-height: 1.55;
}

body::selection {
  color: var(--ink);
  background: rgba(242, 106, 34, 0.32);
}

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

main section[id] {
  scroll-margin-top: 108px;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px max(18px, calc((100vw - 1240px) / 2));
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 251, 0.9)),
    rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(7, 28, 54, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.76) inset;
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 251, 0.94)),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 14px 38px rgba(7, 28, 54, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-header::before {
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.78) 7%, transparent 10%, transparent 12%, rgba(255, 255, 255, 0.78) 16%),
    repeating-linear-gradient(100deg, rgba(43, 185, 199, 0.26) 10%, rgba(13, 124, 199, 0.16) 15%, rgba(143, 198, 61, 0.18) 21%, rgba(242, 106, 34, 0.11) 27%, rgba(43, 185, 199, 0.22) 33%);
  background-size: 300% 100%, 220% 100%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(12px);
  opacity: 0.52;
  -webkit-mask-image: radial-gradient(ellipse at 82% 0%, #000 8%, transparent 72%);
  mask-image: radial-gradient(ellipse at 82% 0%, #000 8%, transparent 72%);
  animation: header-aurora 18s linear infinite;
}

.site-header::after {
  background:
    radial-gradient(circle at 8% 50%, rgba(43, 185, 199, 0.16), transparent 24%),
    radial-gradient(circle at 72% 0%, rgba(19, 160, 95, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(7, 28, 54, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 34px 100%;
  opacity: 0.84;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.88) 48%, transparent 64% 100%);
  -webkit-mask: url("../assets/gesteser-logo-transparent.png") center / contain no-repeat;
  mask: url("../assets/gesteser-logo-transparent.png") center / contain no-repeat;
  transform: translateX(-115%);
  mix-blend-mode: screen;
  animation: logo-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.1) drop-shadow(0 10px 22px rgba(14, 115, 189, 0.18));
}

.brand-logo-wrap-header {
  width: 242px;
}

.brand-logo-wrap-footer {
  width: 340px;
  max-width: min(78vw, 340px);
}

.brand-logo-footer {
  filter: saturate(1.18) brightness(1.08);
  animation: logo-glow 4.6s ease-in-out infinite;
}

.brand-logo-wrap-footer::after {
  display: none;
}

@keyframes logo-glow {
  0%, 100% {
    filter: saturate(1.14) brightness(1.04);
  }

  50% {
    filter: saturate(1.28) brightness(1.16);
  }
}

@keyframes logo-shine {
  0%, 62% {
    transform: translateX(-120%);
  }

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

@keyframes header-aurora {
  from {
    background-position: 50% 50%, 50% 50%;
  }

  to {
    background-position: 350% 50%, 350% 50%;
  }
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #1c3450;
  font-size: 0.88rem;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.site-nav .portal-link {
  isolation: isolate;
  overflow: hidden;
  min-height: 42px;
  gap: 8px;
  padding: 0 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 28, 54, 0.98), rgba(10, 43, 76, 0.98));
  border: 1px solid var(--ink);
  box-shadow:
    0 14px 28px rgba(7, 28, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-nav .portal-link::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(43, 185, 199, 0.74), rgba(19, 160, 95, 0.62), rgba(242, 106, 34, 0.54));
  filter: blur(14px);
  opacity: 0.34;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.site-nav .portal-link::after {
  content: "\2197";
  position: relative;
  inset: auto;
  display: inline-flex;
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  transition: transform 220ms ease, color 220ms ease;
}

.site-nav .portal-link:hover,
.site-nav .portal-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(43, 185, 199, 0.62);
  box-shadow:
    0 18px 34px rgba(7, 28, 54, 0.24),
    0 0 24px rgba(43, 185, 199, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-nav .portal-link:hover::before,
.site-nav .portal-link:focus-visible::before {
  opacity: 0.82;
  transform: translateX(8px) scale(1.05);
}

.site-nav .portal-link:hover::after,
.site-nav .portal-link:focus-visible::after {
  color: #fff;
  transform: translate(3px, -4px);
}

.menu-toggle {
  position: relative;
  z-index: 1;
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 28, 54, 0.22);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.92) 0%, rgba(4, 24, 45, 0.78) 44%, rgba(7, 28, 54, 0.22) 100%),
    linear-gradient(0deg, rgba(19, 160, 95, 0.34) 0%, rgba(19, 160, 95, 0) 40%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px);
  mix-blend-mode: overlay;
  opacity: 0.22;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 42px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 58px;
  align-items: end;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 5.8rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.6rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: rgba(7, 28, 54, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.74rem;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--orange);
  color: #211004;
  box-shadow: 0 16px 36px rgba(242, 106, 34, 0.28);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.section .btn.ghost,
.map-section .btn.ghost,
.form-actions .btn.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-proof {
  padding: 0 0 0 24px;
  border-left: 5px solid var(--green);
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: #101c2d;
  background: var(--green-2);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-proof p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-proof dl {
  display: grid;
  gap: 1px;
  margin: 22px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  padding: 14px;
  background: rgba(7, 28, 54, 0.42);
}

.hero-proof dt {
  color: #fff;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.capability-rail {
  position: relative;
  z-index: 4;
  width: min(1160px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: -34px auto 0;
  padding: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 185, 199, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(7, 28, 54, 0.88), rgba(5, 36, 57, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow:
    0 24px 70px rgba(7, 28, 54, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.capability-rail a,
.capability-rail span {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
  font-weight: 900;
  line-height: 1.18;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 260ms ease,
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.capability-rail a::before,
.capability-rail span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  z-index: 2;
  width: 44px;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--green-2), var(--orange));
  box-shadow:
    0 0 18px rgba(43, 185, 199, 0.58),
    0 0 34px rgba(143, 198, 61, 0.34);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.52);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.capability-rail a::after,
.capability-rail span::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% -44%, rgba(43, 185, 199, 0.34), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(19, 160, 95, 0.12));
  opacity: 0;
  transition: opacity 260ms ease;
}

.capability-rail a:hover,
.capability-rail a:focus-visible,
.capability-rail a:first-child {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.capability-rail a:hover::before,
.capability-rail a:focus-visible::before,
.capability-rail a:first-child::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.capability-rail a:hover::after,
.capability-rail a:focus-visible::after,
.capability-rail a:first-child::after {
  opacity: 1;
}

.capability-rail:hover a:first-child:not(:hover)::before {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.52);
}

.capability-rail:hover a:first-child:not(:hover)::after {
  opacity: 0;
}

.inline-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.inline-detail-link::after {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.inline-detail-link:hover::after,
.inline-detail-link:focus-visible::after {
  transform: translateX(5px);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: end;
}

.section-heading p,
.quote-copy p,
.map-copy p,
.contact-copy p,
.clients-copy p,
.waste-copy p {
  color: var(--muted);
}

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

.identity-grid article,
.service-card,
.recommendation-grid article,
.review-grid article,
.quote-form,
.booking {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.identity-grid article {
  min-height: 260px;
  padding: 26px;
  box-shadow: var(--hard-shadow);
}

.identity-grid span,
.process-list span,
.waste-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-weight: 900;
}

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

.service-card {
  position: relative;
  min-height: 315px;
  padding: 26px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 24px solid rgba(19, 160, 95, 0.12);
  transform: rotate(18deg);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p,
.service-card li,
.identity-grid p,
.recommendation-grid p,
.review-grid p,
.process-list p {
  color: #405369;
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.service-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 0;
}

.service-card-large img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.service-card-large div {
  padding: 28px 28px 28px 4px;
}

.service-card-photo {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 470px;
  padding: 0;
}

.service-card-photo::after {
  right: -86px;
  bottom: -108px;
  width: 220px;
  height: 220px;
  opacity: 0.9;
}

.service-card-photo > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid rgba(18, 45, 72, 0.12);
}

.service-card-photo > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 26px;
}

.service-card-photo span {
  margin-bottom: 14px;
}

.service-card-photo ul {
  margin-top: 16px;
}

.service-card-photo .inline-detail-link {
  margin-top: auto;
  padding-top: 18px;
}

.workshop-section .service-grid {
  gap: clamp(14px, 1.8vw, 24px);
  padding: 12px 0 clamp(56px, 7vw, 92px);
  perspective: 1400px;
  isolation: isolate;
}

.workshop-section .service-card {
  --card-y: 0px;
  --card-x: 0px;
  --card-rotate: -2deg;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 470px;
  padding: 0;
  border: 2px solid rgba(7, 28, 54, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(231, 237, 245, 0.78)),
    rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  box-shadow:
    0 30px 70px rgba(7, 28, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translate3d(var(--card-x), var(--card-y), 0) rotate(var(--card-rotate));
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 520ms ease,
    background-color 520ms ease,
    box-shadow 520ms ease;
}

.workshop-section .service-card-large {
  grid-column: span 1;
  grid-template-columns: 1fr;
  gap: 0;
}

.workshop-section .service-card:nth-child(1),
.workshop-section .service-card:nth-child(4) {
  --card-y: 0px;
  --card-x: 10px;
  z-index: 1;
}

.workshop-section .service-card:nth-child(2),
.workshop-section .service-card:nth-child(5) {
  --card-y: 34px;
  --card-x: -8px;
  --card-rotate: -2.4deg;
  z-index: 2;
}

.workshop-section .service-card:nth-child(3),
.workshop-section .service-card:nth-child(6) {
  --card-y: 68px;
  --card-x: -26px;
  --card-rotate: -2.8deg;
  z-index: 3;
}

.workshop-section .service-card:hover,
.workshop-section .service-card:focus-within {
  border-color: rgba(255, 255, 255, 0.62);
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 44px 88px rgba(7, 28, 54, 0.28),
    0 0 0 1px rgba(43, 185, 199, 0.28),
    0 0 34px rgba(43, 185, 199, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translate3d(var(--card-x), calc(var(--card-y) - 32px), 62px) rotate(-1deg) scale(1.045);
  z-index: 8;
}

.workshop-section .service-card-large img,
.workshop-section .service-card-photo > img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid rgba(18, 45, 72, 0.12);
}

.workshop-section .service-card > img {
  filter: saturate(1.08) contrast(1.02);
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms ease,
    opacity 700ms ease;
}

.workshop-section .service-card:hover > img,
.workshop-section .service-card:focus-within > img {
  filter: saturate(1.16) contrast(1.03);
  transform: scale(1.03);
}

.workshop-section .service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(43, 185, 199, 0.08), transparent 34%),
    linear-gradient(270deg, rgba(244, 248, 251, 0.34), rgba(244, 248, 251, 0) 58%);
  opacity: 0.48;
  transition: opacity 700ms ease;
}

.workshop-section .service-card:hover::before,
.workshop-section .service-card:focus-within::before {
  opacity: 0;
}

.workshop-section .service-card::after {
  right: -8px;
  top: -5%;
  bottom: auto;
  z-index: 1;
  width: 34%;
  height: 110%;
  border: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(19, 160, 95, 0.08), rgba(255, 255, 255, 0.58));
  transform: none;
  opacity: 0.52;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.workshop-section .service-card:hover::after,
.workshop-section .service-card:focus-within::after {
  opacity: 0.14;
  transform: translateX(18px);
}

.workshop-section .service-card > div,
.workshop-section .service-card ul,
.workshop-section .service-card span,
.workshop-section .service-card h3,
.workshop-section .service-card p,
.workshop-section .service-card a {
  position: relative;
  z-index: 3;
}

.workshop-section .service-card > div {
  display: flex;
  flex-direction: column;
  padding: 22px 24px 26px;
}

.workshop-section .service-card span {
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(43, 185, 199, 0.09);
  border: 1px solid rgba(43, 185, 199, 0.2);
  border-radius: 999px;
}

.waste-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(19, 160, 95, 0.18), transparent 36%),
    linear-gradient(90deg, var(--ink) 0%, #0b2c2f 100%);
}

.waste-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 22px);
  opacity: 0.22;
}

.waste-inner,
.waste-grid {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.waste-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
}

.waste-copy h2 {
  color: #fff;
}

.waste-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.waste-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 185, 199, 0.18), transparent 34%),
    linear-gradient(160deg, #071c36 0%, #092944 64%, #0c3b3d 100%);
  box-shadow: 16px 16px 0 rgba(19, 160, 95, 0.18);
}

.waste-visual > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.fleet-gallery {
  display: grid;
  grid-template-rows: minmax(470px, 1fr) auto auto;
  gap: 14px;
  min-height: 620px;
  padding: 16px;
}

.fleet-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 52%, rgba(255, 255, 255, 0.08) 52% 54%, transparent 54%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  opacity: 0.38;
  pointer-events: none;
}

.fleet-gallery::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: 96px;
  width: 64%;
  height: 22px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue-2));
  transform: rotate(-8deg);
  opacity: 0.84;
  pointer-events: none;
}

.fleet-gallery-head,
.fleet-stage,
.fleet-thumbs,
.fleet-progress {
  position: relative;
  z-index: 1;
}

.fleet-gallery-head {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border-left: 4px solid var(--green);
  background: rgba(7, 28, 54, 0.72);
  backdrop-filter: blur(10px);
}

.fleet-gallery-head p {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.fleet-gallery-head span {
  flex: 0 0 auto;
  min-width: 78px;
  padding: 8px 10px;
  color: #ccecf4;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.fleet-stage {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background: #061929;
}

.fleet-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 520ms ease, transform 920ms ease;
  pointer-events: none;
}

.fleet-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(4, 18, 31, 0.9), transparent);
}

.fleet-slide figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 440px;
  padding: 14px 16px;
  color: #fff;
  border-left: 4px solid var(--green);
  background: rgba(7, 28, 54, 0.74);
  backdrop-filter: blur(10px);
}

.fleet-slide strong {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.05;
}

.fleet-slide span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.35;
}

.fleet-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(7, 28, 54, 0.72);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.fleet-nav:hover,
.fleet-nav:focus-visible {
  background: var(--blue);
  transform: translateY(-50%) scale(1.06);
}

.fleet-nav span {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.fleet-nav-prev {
  left: 14px;
}

.fleet-nav-prev span {
  transform: rotate(-135deg);
}

.fleet-nav-next {
  right: 14px;
}

.fleet-nav-next span {
  transform: rotate(45deg);
}

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

.fleet-thumbs button {
  position: relative;
  min-width: 0;
  height: 84px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.08);
}

.fleet-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.78);
  transform: scale(1.02);
  transition: filter 180ms ease, transform 180ms ease;
}

.fleet-thumbs span {
  position: absolute;
  inset: auto 5px 5px;
  display: block;
  overflow: hidden;
  padding: 3px 5px;
  color: #fff;
  font-size: clamp(0.62rem, 0.8vw, 0.74rem);
  font-weight: 900;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(7, 28, 54, 0.72);
}

.fleet-thumbs button.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(19, 160, 95, 0.32);
}

.fleet-thumbs button.is-active img,
.fleet-thumbs button:hover img,
.fleet-thumbs button:focus-visible img {
  filter: saturate(1.08) brightness(1);
  transform: scale(1.08);
}

.fleet-progress {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.fleet-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--orange));
  transition: width 360ms ease;
}

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

.waste-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.waste-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 34px 30px 42px;
  overflow: hidden;
  list-style: none;
  background:
    linear-gradient(110deg, rgba(43, 185, 199, 0.14), transparent 28%),
    linear-gradient(140deg, #071c36 0%, #0b2a42 54%, #0b3728 100%);
  border: 1px solid rgba(7, 28, 54, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.process-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 24px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.34;
  pointer-events: none;
}

.process-list li {
  --tilt: -4deg;
  --lift: 0px;
  --card-accent: var(--blue-2);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(7, 28, 54, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  transform: translateY(var(--lift)) rotate(var(--tilt));
  transition: transform 420ms ease, border-color 240ms ease, background 240ms ease, filter 240ms ease;
  backdrop-filter: blur(12px);
}

.process-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 58%);
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.process-list li::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -14px;
  width: 160px;
  height: 122%;
  background: linear-gradient(270deg, rgba(244, 248, 251, 0.2), transparent);
  transform: rotate(8deg);
  pointer-events: none;
}

.process-list li:nth-child(1) {
  --lift: 6px;
  --card-accent: var(--teal);
}

.process-list li:nth-child(2) {
  --tilt: -2deg;
  --lift: 28px;
  --card-accent: var(--green);
}

.process-list li:nth-child(3) {
  --tilt: 2deg;
  --lift: 12px;
  --card-accent: var(--orange);
}

.process-list li:nth-child(4) {
  --tilt: 4deg;
  --lift: 36px;
  --card-accent: var(--blue-2);
}

.process-list li:hover,
.process-list li:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(7, 28, 54, 0.84);
  filter: saturate(1.12);
  transform: translateY(calc(var(--lift) - 18px)) rotate(0deg);
}

.process-list li:hover::before,
.process-list li:focus-within::before {
  opacity: 0.28;
}

.process-list h3,
.process-list p,
.process-list span,
.process-list small,
.process-icon {
  position: relative;
  z-index: 1;
}

.process-list span {
  width: fit-content;
  margin: 0;
  padding: 5px 8px;
  color: #fff;
  line-height: 1;
  background: var(--card-accent);
}

.process-list h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.12;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.process-list small {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.035);
}

.process-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clients-section {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 105px max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 18% 30%, rgba(43, 185, 199, 0.22), transparent 32%),
    linear-gradient(135deg, #06182f 0%, #0b321f 100%);
}

.client-marquee {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 22px;
  opacity: 0.42;
  transform: rotate(-3deg) scale(1.06);
  pointer-events: none;
}

.client-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: client-marquee 72s linear infinite;
}

.client-track.reverse {
  animation-direction: reverse;
  animation-duration: 86s;
  margin-left: -220px;
}

.client-track img {
  width: 180px;
  height: 92px;
  padding: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.client-track img.logo-wide {
  width: 240px;
}

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

.clients-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 34px;
  background: rgba(7, 28, 54, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--green);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.clients-copy h2 {
  color: #fff;
}

.clients-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.client-name-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.client-name-strip span {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--green-2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.value-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  margin-top: 90px;
  padding: 108px max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 107, 31, 0.18), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(148, 213, 42, 0.18), transparent 0 18%, transparent 34%),
    linear-gradient(135deg, #071527 0%, #0b2f3f 48%, #10231b 100%);
}

.value-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.value-marquee {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 22px;
  opacity: 0.38;
  transform: rotate(3deg) scale(1.08);
  pointer-events: none;
}

.value-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: value-marquee 82s linear infinite;
}

.value-track.reverse {
  margin-left: -300px;
  animation-direction: reverse;
  animation-duration: 96s;
}

.value-track img {
  width: 174px;
  height: 94px;
  padding: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.value-track img.value-wide {
  width: 248px;
}

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

.value-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 36px;
  background: rgba(5, 20, 36, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--orange);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.value-copy h2 {
  color: #fff;
}

.value-copy > p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.78);
}

.value-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.value-lane > span:first-child {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-2);
  font-weight: 1000;
}

.value-lane h3 {
  color: #fff;
}

.value-lane p {
  color: rgba(255, 255, 255, 0.75);
}

.value-chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.value-chip-strip span {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--green-2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.recommendation-grid article {
  min-height: 270px;
  padding: 24px;
}

.recommendation-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0 0;
}

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

.review-grid article {
  display: grid;
  align-content: start;
  min-height: 275px;
  padding: 24px;
  box-shadow: var(--hard-shadow);
}

.stars {
  margin-bottom: 28px;
  color: #f6b500;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.review-grid span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 18px;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.review-link:hover {
  transform: translateY(-2px);
  background: var(--ink);
}

.reviews-section .review-grid {
  display: none;
}

.testimonial-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(280px, 1fr) 52px;
  grid-template-areas:
    "prev stack next"
    ". dots ."
    ". source .";
  align-items: center;
  gap: 18px 12px;
  min-height: 430px;
  margin-top: 26px;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(43, 185, 199, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(231, 237, 245, 0.92));
  border: 1px solid rgba(7, 28, 54, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 54, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 54, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.testimonial-stack {
  position: relative;
  grid-area: stack;
  width: min(430px, 100%);
  height: 325px;
  margin: 0 auto;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 30px 28px;
  color: var(--ink);
  text-align: center;
  background: #fff;
  border: 1px solid rgba(7, 28, 54, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(7, 28, 54, 0.16);
  opacity: 0;
  transform: translateY(22px) scale(0.94) rotate(-4deg);
  pointer-events: none;
  transition: opacity 360ms ease, transform 460ms ease, filter 280ms ease;
}

.testimonial-card.is-active {
  z-index: 3;
  opacity: 1;
  background: #fff;
  transform: translateY(0) scale(1) rotate(0deg);
  pointer-events: auto;
}

.testimonial-card.is-next {
  z-index: 2;
  opacity: 0.26;
  transform: translateX(44px) translateY(18px) scale(0.92) rotate(3deg);
  filter: grayscale(0.25) blur(1px);
}

.testimonial-card.is-prev {
  z-index: 1;
  opacity: 0.18;
  transform: translateX(-44px) translateY(28px) scale(0.88) rotate(-4deg);
  filter: grayscale(0.35) blur(1px);
}

.testimonial-avatar {
  width: 78px;
  height: 78px;
  padding: 3px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(7, 28, 54, 0.14);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(7, 28, 54, 0.18);
}

.testimonial-avatar-letter {
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reviewer-johan {
  background: #4a626e;
}

.reviewer-omar {
  background:
    radial-gradient(circle at 36% 32%, #f7c778 0 9%, transparent 10%),
    radial-gradient(circle at 52% 36%, #101010 0 18%, transparent 19%),
    linear-gradient(135deg, #2f1612, #0a1e2f 54%, #d7852d);
}

.reviewer-merlano {
  background: #6bae38;
}

.reviewer-alvaro {
  background:
    radial-gradient(circle at 42% 28%, #f1d4c6 0 13%, transparent 14%),
    radial-gradient(circle at 58% 72%, rgba(63, 16, 72, 0.9) 0 25%, transparent 26%),
    linear-gradient(135deg, #3b4350, #8b5a98);
}

.reviewer-onecimo {
  background:
    radial-gradient(circle at 45% 34%, #cfd7de 0 18%, transparent 19%),
    linear-gradient(135deg, #86a9b8, #f5a33b 62%, #008f8c);
}

.reviewer-jhon {
  background: #ff6023;
}

.reviewer-laura {
  background:
    radial-gradient(circle at 35% 34%, #d2ad93 0 17%, transparent 18%),
    linear-gradient(135deg, #594438, #c8ad9b 56%, #78959f);
}

.reviewer-luis {
  background:
    radial-gradient(circle at 38% 36%, #d9c5ad 0 16%, transparent 17%),
    linear-gradient(135deg, #d7e8de, #96b9c5 46%, #ee8f37);
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.1;
}

.testimonial-card p {
  max-width: 34ch;
  margin: 0;
  color: #405369;
  font-size: 0.98rem;
}

.testimonial-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 28, 54, 0.12);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 28, 54, 0.1);
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: #fff;
  background: var(--blue);
  transform: translateY(-2px);
}

.testimonial-arrow span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.testimonial-prev {
  grid-area: prev;
}

.testimonial-prev span {
  transform: rotate(-135deg);
}

.testimonial-next {
  grid-area: next;
}

.testimonial-next span {
  transform: rotate(45deg);
}

.testimonial-dots {
  position: relative;
  z-index: 2;
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  background: rgba(7, 28, 54, 0.18);
  border: 0;
  border-radius: 50%;
  transition: transform 160ms ease, background 160ms ease;
}

.testimonial-dots button.is-active {
  background: var(--blue-2);
  transform: scale(1.2);
}

.testimonial-carousel > .review-link {
  position: relative;
  z-index: 2;
  grid-area: source;
  justify-self: center;
  margin-top: 0;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: start;
  width: 100%;
  padding: 94px max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #eaf3ef 0%, #f7fafc 100%);
}

.booking-intro {
  position: sticky;
  top: 100px;
}

.booking {
  padding: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.step {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: #415369;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.step.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.step-panel {
  display: none;
}

.step-panel.is-active {
  display: block;
}

label {
  display: grid;
  gap: 8px;
  color: #26394f;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c9d6e2;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

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

.form-actions {
  margin-top: 22px;
}

.submit-btn {
  display: none;
}

.booking.is-final .submit-btn {
  display: inline-flex;
}

.booking.is-final [data-next] {
  display: none;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(340px, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 90px;
}

.map-copy {
  display: grid;
  align-content: center;
  padding: 34px;
  color: #fff;
  background: var(--ink);
}

.map-copy h2 {
  font-size: 2.6rem;
}

.map-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 6px;
}

.map-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.map-shell {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 36%, rgba(148, 213, 42, 0.24), transparent 0 10%, transparent 22%),
    linear-gradient(115deg, rgba(10, 45, 73, 0.1) 0 28%, transparent 28% 100%),
    linear-gradient(145deg, #eef6f4 0%, #dfe9ee 100%);
}

.map-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 30, 52, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 30, 52, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
}

.map-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.03);
}

.map-fallback {
  position: absolute;
  inset: 24px;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 28px;
  color: #fff;
  text-align: center;
  background: rgba(9, 31, 52, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.map-shell.is-loading .map-fallback,
.map-shell.is-fallback .map-fallback {
  opacity: 1;
}

.map-fallback span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.map-fallback strong {
  font-size: 1.65rem;
  line-height: 1;
}

.map-fallback small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 90px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.social-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.social-grid a:hover,
.social-grid a:focus {
  transform: translateY(-2px);
  background: var(--blue);
}

.social-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 12px 26px rgba(0, 0, 0, 0.22);
}

.social-logo svg {
  width: 22px;
  height: 22px;
}

.social-logo path,
.social-logo rect,
.social-logo circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-logo.whatsapp {
  background: #25d366;
}

.social-logo.whatsapp path:first-child,
.social-logo.facebook path,
.social-logo.maps path {
  fill: currentColor;
  stroke: none;
}

.social-logo.whatsapp path:last-child {
  fill: var(--ink);
  stroke: none;
}

.social-logo.mail {
  background: linear-gradient(135deg, #0c6fbf, #31b7c8);
}

.social-logo.facebook {
  background: #1877f2;
}

.social-logo.instagram {
  background:
    radial-gradient(circle at 30% 110%, #feda75 0 18%, transparent 38%),
    radial-gradient(circle at 12% 88%, #fa7e1e 0 22%, transparent 42%),
    linear-gradient(135deg, #833ab4, #e1306c 55%, #f77737);
}

.social-logo.portal {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.social-logo.maps {
  background: linear-gradient(135deg, #4285f4 0 42%, #34a853 42% 66%, #fbbc05 66% 82%, #ea4335 82% 100%);
}

.social-logo.maps circle {
  fill: var(--ink);
  stroke: none;
}

.contact-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-media img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(46px, 6vw, 72px) 18px clamp(34px, 5vw, 54px);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 185, 199, 0.22), transparent 34%),
    radial-gradient(circle at 18% 70%, rgba(19, 160, 95, 0.16), transparent 30%),
    linear-gradient(135deg, #061728 0%, #071c36 58%, #052a22 100%);
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--teal), var(--green), var(--green-2), var(--orange)) 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.site-footer::before {
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(43, 185, 199, 0.14) 34%, transparent 44%),
    linear-gradient(125deg, transparent 0 58%, rgba(143, 198, 61, 0.13) 60%, transparent 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 38px 38px, 38px 38px;
  opacity: 0.82;
}

.site-footer::after {
  inset: auto 16% -72px;
  height: 150px;
  background:
    radial-gradient(ellipse at center, rgba(43, 185, 199, 0.42), transparent 62%),
    radial-gradient(ellipse at center, rgba(19, 160, 95, 0.24), transparent 72%);
  filter: blur(14px);
  opacity: 0.7;
}

.footer-sparkles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.92;
}

.footer-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 999px;
}

.footer-brand::before {
  content: "";
  position: absolute;
  inset: 6px 0;
  z-index: -1;
  background:
    radial-gradient(circle at 38% 48%, rgba(43, 185, 199, 0.42), transparent 44%),
    radial-gradient(circle at 62% 52%, rgba(143, 198, 61, 0.28), transparent 46%);
  filter: blur(16px);
  opacity: 0.88;
  transform: scaleX(1.08);
}

.footer-brand .brand-logo-footer {
  filter:
    drop-shadow(0 0 12px rgba(43, 185, 199, 0.36))
    drop-shadow(0 0 20px rgba(19, 160, 95, 0.22));
}

.site-footer p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.site-footer div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.site-footer a {
  position: relative;
  color: #fff;
  font-weight: 900;
}

.site-footer div a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-footer div a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green-2), var(--orange));
  box-shadow: 0 0 18px rgba(43, 185, 199, 0.56);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-footer div a:hover,
.site-footer div a:focus-visible {
  color: #fff;
  border-color: rgba(43, 185, 199, 0.44);
  background: rgba(43, 185, 199, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 22px rgba(43, 185, 199, 0.2);
  transform: translateY(-2px);
}

.site-footer div a:hover::after,
.site-footer div a:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 18px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 3rem;
  }

  .capability-rail,
  .waste-grid,
  .recommendation-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 56px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 73px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-grid,
  .identity-grid,
  .section-heading.split,
  .waste-inner,
  .booking-section,
  .quote-section,
  .map-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: 520px;
  }

  .service-card-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-card-large div {
    padding: 0 26px 26px;
  }

  .workshop-section .service-card,
  .workshop-section .service-card:nth-child(2),
  .workshop-section .service-card:nth-child(3),
  .workshop-section .service-card:nth-child(5),
  .workshop-section .service-card:nth-child(6),
  .workshop-section .service-card:hover,
  .workshop-section .service-card:focus-within {
    transform: none;
  }

  .workshop-section .service-card > img,
  .workshop-section .service-card > div {
    transform: none;
  }

  .workshop-section .service-card::before {
    opacity: 0.34;
  }

  .booking-intro {
    position: static;
  }

  .map-section {
    gap: 0;
  }

  .fleet-gallery {
    grid-template-rows: minmax(430px, 1fr) auto auto;
    min-height: 590px;
  }

  .fleet-stage {
    min-height: 430px;
  }

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

  .testimonial-carousel {
    grid-template-columns: 46px minmax(260px, 1fr) 46px;
    padding-inline: 18px;
  }
}

@media (max-width: 640px) {
  .brand-logo-wrap-header {
    width: 196px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-grid {
    width: min(100% - 28px, 1240px);
    padding-top: 126px;
    gap: 28px;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .capability-rail,
  .service-grid,
  .waste-grid,
  .process-list,
  .recommendation-grid,
  .review-grid,
  .steps,
  .field-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .capability-rail,
  .service-tabs {
    border-radius: 22px;
  }

  .capability-rail a,
  .capability-rail span,
  .service-tabs a {
    flex-basis: 196px;
    min-height: 50px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .process-list {
    gap: 12px;
    padding: 14px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 66px 0;
  }

  .service-card,
  .identity-grid article,
  .recommendation-grid article,
  .review-grid article,
  .process-list li,
  .waste-grid article {
    min-height: auto;
  }

  .process-list li {
    transform: none;
  }

  .process-list li:hover,
  .process-list li:focus-within {
    transform: translateY(-4px);
  }

  .waste-section {
    padding-block: 66px;
  }

  .fleet-gallery {
    grid-template-rows: 360px auto auto;
    min-height: 0;
    padding: 12px;
  }

  .fleet-gallery::after {
    right: -24%;
    bottom: 76px;
    width: 92%;
  }

  .fleet-gallery-head {
    top: 22px;
    left: 22px;
    right: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .fleet-gallery-head p {
    font-size: 1.08rem;
  }

  .fleet-gallery-head span {
    min-width: 70px;
    padding: 7px 9px;
  }

  .fleet-stage {
    min-height: 360px;
  }

  .fleet-slide figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 12px;
  }

  .fleet-slide span {
    font-size: 0.84rem;
  }

  .fleet-nav {
    top: 43%;
    width: 38px;
    height: 38px;
  }

  .fleet-thumbs {
    display: flex;
    overflow-x: auto;
    padding: 2px 2px 7px;
    scroll-snap-type: x mandatory;
  }

  .fleet-thumbs button {
    flex: 0 0 112px;
    height: 72px;
    scroll-snap-align: start;
  }

  .testimonial-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    min-height: 430px;
    padding: 18px 10px 22px;
    gap: 14px 5px;
  }

  .testimonial-stack {
    height: 330px;
  }

  .testimonial-card {
    padding: 24px 18px;
  }

  .testimonial-avatar {
    width: 66px;
    height: 66px;
  }

  .testimonial-card p {
    max-width: 28ch;
    font-size: 0.9rem;
  }

  .testimonial-card.is-next {
    transform: translateX(14px) translateY(12px) scale(0.93) rotate(2deg);
  }

  .testimonial-card.is-prev {
    transform: translateX(-14px) translateY(20px) scale(0.9) rotate(-3deg);
  }

  .testimonial-arrow {
    width: 36px;
    height: 36px;
  }

  .waste-inner,
  .waste-grid,
  .clients-section,
  .reviews-section,
  .quote-section,
  .map-section,
  .contact-section {
    width: min(100% - 28px, 1180px);
  }

  .clients-section {
    min-height: 610px;
    padding: 66px 0;
  }

  .client-marquee {
    align-content: start;
    gap: 14px;
    padding-top: 18px;
    opacity: 0.58;
    transform: rotate(-5deg) scale(1.12);
  }

  .client-track {
    gap: 14px;
  }

  .client-track.reverse {
    margin-left: -120px;
  }

  .clients-copy {
    padding: 24px;
    margin-top: 92px;
    background: rgba(7, 28, 54, 0.76);
  }

  .client-track img {
    width: 142px;
    height: 78px;
  }

  .client-track img.logo-wide {
    width: 188px;
  }

  .value-section {
    min-height: 880px;
    margin-top: 66px;
    padding: 72px 14px;
  }

  .value-marquee {
    align-content: start;
    gap: 14px;
    padding-top: 22px;
    opacity: 0.5;
    transform: rotate(4deg) scale(1.12);
  }

  .value-track {
    gap: 14px;
  }

  .value-track.reverse {
    margin-left: -160px;
  }

  .value-track img {
    width: 134px;
    height: 78px;
    padding: 10px;
  }

  .value-track img.value-wide {
    width: 180px;
  }

  .value-copy {
    padding: 24px;
    margin-top: 104px;
    background: rgba(5, 20, 36, 0.78);
  }

  .waste-visual img,
  .contact-media img {
    height: auto;
  }

  .booking-section {
    padding-block: 66px;
  }

  .map-copy {
    padding: 24px;
  }

  .map-shell {
    min-height: 360px;
  }
}

/* Service detail pages */
.service-detail-page {
  background:
    linear-gradient(90deg, rgba(7, 28, 54, 0.038) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 54, 0.03) 1px, transparent 1px),
    #f3f7fb;
  background-size: 34px 34px;
}

.service-tabs {
  position: relative;
  z-index: 10;
  width: min(1160px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 88px auto 0;
  padding: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 185, 199, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(7, 28, 54, 0.91), rgba(5, 36, 57, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow:
    0 24px 70px rgba(7, 28, 54, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.service-tabs a {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
  font-weight: 900;
  line-height: 1.18;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 260ms ease,
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.service-tabs a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  z-index: 2;
  width: 44px;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--green-2), var(--orange));
  box-shadow:
    0 0 18px rgba(43, 185, 199, 0.58),
    0 0 34px rgba(143, 198, 61, 0.34);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.52);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.service-tabs a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% -44%, rgba(43, 185, 199, 0.34), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(19, 160, 95, 0.12));
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-tabs a:hover,
.service-tabs a:focus-visible,
.service-tabs a.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.service-tabs a:hover::before,
.service-tabs a:focus-visible::before,
.service-tabs a.is-active::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.service-tabs a:hover::after,
.service-tabs a:focus-visible::after,
.service-tabs a.is-active::after {
  opacity: 1;
}

.service-tabs:hover a.is-active:not(:hover)::before {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.52);
}

.service-tabs:hover a.is-active:not(:hover)::after {
  opacity: 0;
}

.service-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  padding: 64px max(18px, calc((100vw - 1240px) / 2)) 56px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(43, 185, 199, 0.28), transparent 34%),
    linear-gradient(135deg, #061728 0%, #08284b 54%, #053b2c 100%);
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.7;
}

.service-hero > * {
  position: relative;
  z-index: 1;
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 670px;
}

.service-hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-hero-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.22);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 28, 54, 0.3), transparent 48%),
    linear-gradient(0deg, rgba(7, 28, 54, 0.72), transparent 44%);
}

.outline-word {
  position: absolute;
  left: 28px;
  bottom: 20px;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.78);
  font-family: var(--display);
  font-size: clamp(3.8rem, 9vw, 8.8rem);
  line-height: 0.78;
  text-transform: uppercase;
  opacity: 0.86;
}

.service-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.service-proof-strip div {
  min-height: 132px;
  padding: 24px;
  background: #fff;
}

.service-proof-strip strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  color: var(--blue);
}

.service-proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.workshop-spline-section {
  padding-top: 46px;
  padding-bottom: 42px;
}

.workshop-spline-card {
  --spotlight-x: 72%;
  --spotlight-y: 18%;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
  background:
    radial-gradient(520px circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.16), transparent 62%),
    radial-gradient(circle at 14% 24%, rgba(43, 185, 199, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(2, 10, 18, 0.98), rgba(7, 28, 54, 0.98) 48%, rgba(3, 43, 32, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow:
    0 34px 90px rgba(7, 28, 54, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.workshop-spline-card::before {
  content: "";
  position: absolute;
  inset: -32%;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(43, 185, 199, 0.18) 26%, transparent 34%),
    linear-gradient(126deg, transparent 0 60%, rgba(143, 198, 61, 0.2) 62%, transparent 70%),
    radial-gradient(circle at 78% 18%, rgba(242, 106, 34, 0.16), transparent 22%);
  opacity: 0.78;
}

.workshop-spline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
  opacity: 0.64;
}

.workshop-spline-copy,
.workshop-spline-scene {
  position: relative;
  z-index: 1;
}

.workshop-spline-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workshop-spline-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.workshop-spline-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.74);
}

.workshop-spline-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.workshop-spline-points span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding-left: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.workshop-spline-points span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(43, 185, 199, 0.62);
  background:
    linear-gradient(135deg, rgba(43, 185, 199, 0.18), rgba(19, 160, 95, 0.18));
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(43, 185, 199, 0.16);
}

.workshop-spline-scene {
  min-height: 430px;
  perspective: 1200px;
}

.workshop-scene-core {
  position: absolute;
  inset: 12% 4% 8% 8%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow:
    20px 24px 0 rgba(19, 160, 95, 0.18),
    0 36px 80px rgba(0, 0, 0, 0.32);
  transform: rotateY(-13deg) rotateX(4deg) rotateZ(-2deg);
  transform-style: preserve-3d;
}

.workshop-scene-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.workshop-scene-core::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 54, 0.16), transparent 44%),
    linear-gradient(0deg, rgba(7, 28, 54, 0.76), transparent 52%);
}

.scene-service-tag {
  position: absolute;
  z-index: 2;
  min-width: 138px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(6, 24, 43, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transform: translateZ(80px) rotate(-2deg);
  animation: scene-float 5.6s ease-in-out infinite;
}

.scene-service-tag strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
}

.scene-service-tag span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  font-size: 0.82rem;
}

.tag-preventivo {
  left: 0;
  top: 10%;
}

.tag-motor {
  right: 2%;
  top: 4%;
  border-left-color: var(--green-2);
  animation-delay: -1.1s;
}

.tag-metal {
  left: 8%;
  bottom: 9%;
  border-left-color: var(--orange);
  animation-delay: -2.2s;
}

.tag-postventa {
  right: 0;
  bottom: 20%;
  animation-delay: -3.2s;
}

.tag-repuestos {
  right: 22%;
  bottom: 2%;
  border-left-color: var(--green);
  animation-delay: -4.1s;
}

@keyframes scene-float {
  0%, 100% {
    transform: translate3d(0, 0, 80px) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -12px, 92px) rotate(1deg);
  }
}

.waste-scroll-section {
  --waste-rotate: 18deg;
  --waste-scale: 1.05;
  --waste-lift: 0px;
  --waste-title-y: 0px;
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 90px;
  perspective: 1100px;
}

.waste-scroll-section::before {
  content: "";
  position: absolute;
  inset: 28px -28px 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(43, 185, 199, 0.18), transparent 30%),
    radial-gradient(circle at 86% 62%, rgba(143, 198, 61, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 28, 54, 0.04), rgba(19, 160, 95, 0.06));
  border-radius: var(--radius);
}

.waste-scroll-intro {
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: center;
  transform: translateY(var(--waste-title-y));
  transition: transform 120ms linear;
}

.waste-scroll-intro h2 {
  max-width: 12ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2.9rem, 7vw, 6.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.waste-scroll-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-weight: 800;
}

.waste-scroll-card {
  transform: translateY(var(--waste-lift)) rotateX(var(--waste-rotate)) scale(var(--waste-scale));
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: transform 120ms linear;
}

.waste-device-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 1060px);
  min-height: 560px;
  margin: 0 auto;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 18, 32, 0.98), rgba(7, 28, 54, 0.96)),
    #071c36;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  box-shadow:
    0 0 rgba(0, 0, 0, 0.3),
    0 9px 20px rgba(0, 0, 0, 0.29),
    0 37px 37px rgba(0, 0, 0, 0.26),
    0 84px 50px rgba(0, 0, 0, 0.15),
    0 149px 60px rgba(0, 0, 0, 0.05);
}

.waste-device-frame::before {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(43, 185, 199, 0.18) 24%, transparent 34%),
    linear-gradient(125deg, transparent 0 58%, rgba(143, 198, 61, 0.18) 60%, transparent 70%),
    radial-gradient(circle at 82% 10%, rgba(242, 106, 34, 0.18), transparent 24%);
  opacity: 0.78;
}

.waste-device-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.52;
}

.waste-device-topbar,
.waste-ops-dashboard {
  position: relative;
  z-index: 1;
}

.waste-device-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.055);
}

.waste-device-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(43, 185, 199, 0.56);
}

.waste-device-topbar span:nth-child(2) {
  background: var(--green-2);
}

.waste-device-topbar span:nth-child(3) {
  background: var(--orange);
}

.waste-device-topbar strong {
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waste-ops-dashboard {
  min-height: 486px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 20px 20px;
  background:
    radial-gradient(circle at 14% 18%, rgba(19, 160, 95, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(12px);
}

.waste-ops-hero {
  position: relative;
  overflow: hidden;
  grid-column: span 8;
  grid-row: span 2;
  min-height: 340px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
}

.waste-ops-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.waste-ops-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 39, 0.42), transparent 54%),
    linear-gradient(0deg, rgba(5, 22, 39, 0.86), transparent 55%);
}

.waste-ops-hero > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  max-width: 600px;
}

.waste-ops-hero span,
.waste-ops-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  color: #061728;
  background: linear-gradient(135deg, var(--teal), var(--green-2));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.waste-ops-hero h3 {
  max-width: 11ch;
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.waste-ops-hero p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.waste-ops-panel,
.waste-ops-metrics {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(43, 185, 199, 0.2), transparent 42%),
    rgba(5, 22, 39, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.waste-ops-panel {
  grid-column: span 4;
  min-height: 156px;
  padding: 20px;
}

.waste-ops-panel h4 {
  margin: 14px 0 6px;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.waste-ops-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.waste-ops-panel.pickup span {
  background: linear-gradient(135deg, var(--green-2), #d7f06a);
}

.waste-ops-panel.closure span {
  background: linear-gradient(135deg, var(--orange), #ffd27a);
}

.waste-ops-metrics {
  grid-column: span 4;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.waste-ops-metrics div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.waste-ops-metrics strong {
  color: var(--green-2);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1;
}

.waste-ops-metrics span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.detail-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.detail-section.compact {
  padding-top: 34px;
}

.detail-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.detail-heading h2 {
  max-width: 13ch;
}

.detail-heading p {
  color: var(--muted);
}

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

.service-matrix article,
.process-card,
.feature-panel,
.route-card,
.service-cta,
.comparison-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-matrix article {
  min-height: 300px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.service-matrix article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
}

.service-matrix span,
.process-card span,
.route-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.service-matrix h3,
.process-card h3,
.route-card h3,
.comparison-card h3 {
  margin: 0 0 10px;
}

.service-matrix p,
.process-card p,
.route-card p,
.comparison-card p {
  color: var(--muted);
}

.service-matrix ul,
.feature-panel ul,
.comparison-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.feature-panel {
  padding: 30px;
}

.feature-panel.dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(43, 185, 199, 0.28), transparent 34%),
    linear-gradient(135deg, var(--ink), #082c4f);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-panel.dark p,
.feature-panel.dark li {
  color: rgba(255, 255, 255, 0.72);
}

.feature-image {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--hard-shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.process-card {
  min-height: 230px;
  padding: 24px;
}

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

.route-card {
  padding: 28px;
  border-color: rgba(19, 160, 95, 0.28);
}

.route-card.orange {
  border-color: rgba(242, 106, 34, 0.36);
}

.route-card span {
  background: var(--green);
}

.route-card.orange span {
  background: var(--orange);
}

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

.comparison-card {
  padding: 28px;
}

.comparison-card h3 {
  display: inline-flex;
  padding: 8px 12px;
  color: #fff;
  background: var(--ink);
}

.service-cta {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  margin-top: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 28%, rgba(242, 106, 34, 0.28), transparent 28%),
    linear-gradient(135deg, #071c36, #063b2c);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-cta p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.74);
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.mini-gallery img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-gallery img:first-child {
  grid-row: span 2;
}

.waste-detail .service-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(143, 198, 61, 0.3), transparent 34%),
    linear-gradient(135deg, #062617 0%, #073d2c 46%, #08284b 100%);
}

.waste-detail .service-matrix article::before {
  background: linear-gradient(90deg, var(--green), var(--green-2), var(--orange));
}

.workshop-detail .service-hero {
  grid-template-columns: minmax(260px, 0.62fr) minmax(780px, 1.38fr);
  gap: clamp(18px, 2.2vw, 30px);
  padding-inline: max(18px, calc((100vw - 1420px) / 2));
  background:
    radial-gradient(circle at 76% 24%, rgba(43, 185, 199, 0.28), transparent 31%),
    radial-gradient(circle at 18% 80%, rgba(242, 106, 34, 0.18), transparent 26%),
    linear-gradient(135deg, #04111f 0%, #071c36 46%, #08284b 100%);
}

.workshop-detail .service-hero-copy {
  max-width: 560px;
}

.workshop-detail .service-hero-copy h1 {
  font-size: clamp(3rem, 5.7vw, 6.1rem);
}

.workshop-detail .workshop-team-showcase {
  align-self: center;
  justify-self: stretch;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #061728;
  border: 1px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.22);
}

.workshop-detail .workshop-team-showcase img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.workshop-detail .workshop-team-showcase::after {
  z-index: 2;
  background:
    linear-gradient(120deg, rgba(7, 28, 54, 0.18), transparent 46%),
    linear-gradient(0deg, rgba(7, 28, 54, 0.44), transparent 48%);
  pointer-events: none;
}

.workshop-detail .workshop-team-showcase .outline-word {
  left: 28px;
  bottom: 20px;
  opacity: 0.7;
}

.hydraulic-detail .service-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(13, 124, 199, 0.32), transparent 34%),
    linear-gradient(135deg, #071c36 0%, #062844 48%, #0b3b58 100%);
}

.hydraulic-detail .service-hero-media img {
  object-position: center;
  filter: saturate(1.06) contrast(1.05);
}

.compact-detail .service-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 106, 34, 0.22), transparent 34%),
    linear-gradient(135deg, #071c36 0%, #102f57 48%, #053b2c 100%);
}

.mobile-workshop-detail .service-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(43, 185, 199, 0.28), transparent 34%),
    linear-gradient(135deg, #061728 0%, #102f57 52%, #4a2f05 100%);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .workshop-detail .service-hero {
    grid-template-columns: minmax(260px, 0.72fr) minmax(620px, 1.28fr);
    padding-inline: 18px;
  }

  .workshop-detail .service-hero-copy h1 {
    font-size: clamp(3rem, 5.2vw, 5.4rem);
  }

  .workshop-spline-card {
    grid-template-columns: minmax(300px, 0.82fr) minmax(430px, 1.18fr);
    padding: clamp(30px, 3vw, 42px);
  }

  .workshop-spline-copy h2 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
  }

  .waste-scroll-section {
    min-height: 720px;
  }

  .waste-device-frame {
    min-height: 540px;
  }

  .waste-ops-hero h3 {
    font-size: clamp(2rem, 3.8vw, 3.6rem);
  }
}

@media (max-width: 980px) {
  .capability-rail {
    width: min(100% - 28px, 1160px);
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    margin-top: -26px;
    border-radius: 26px;
  }

  .service-tabs {
    width: min(100% - 28px, 1160px);
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    margin-top: 82px;
    border-radius: 26px;
  }

  .capability-rail a,
  .capability-rail span,
  .service-tabs a {
    flex: 0 0 220px;
    scroll-snap-align: center;
  }

  .service-tabs a {
    min-height: 54px;
  }

  .service-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
  }

  .service-hero-media {
    min-height: 360px;
    clip-path: none;
  }

  .workshop-detail .service-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 34px;
  }

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

  .workshop-detail .service-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .workshop-detail .workshop-team-showcase {
    justify-self: center;
    width: min(100%, 860px);
    min-height: 0;
    aspect-ratio: 16 / 9;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    box-shadow:
      14px 14px 0 rgba(0, 0, 0, 0.2),
      0 18px 54px rgba(0, 0, 0, 0.32),
      0 0 28px rgba(43, 185, 199, 0.16);
  }

  .workshop-spline-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .workshop-spline-copy {
    max-width: 760px;
  }

  .workshop-spline-copy h2 {
    max-width: 13ch;
  }

  .workshop-spline-scene {
    min-height: 430px;
  }

  .waste-scroll-section {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .waste-scroll-card {
    transform: translateY(var(--waste-lift)) rotateX(calc(var(--waste-rotate) * 0.45)) scale(var(--waste-scale));
  }

  .waste-device-frame {
    min-height: auto;
  }

  .waste-ops-dashboard {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: auto;
  }

  .waste-ops-hero {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .waste-ops-panel,
  .waste-ops-metrics {
    grid-column: span 3;
  }

  .waste-ops-metrics {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .waste-ops-metrics div {
    grid-template-columns: 1fr;
  }

  .service-proof-strip,
  .service-matrix,
  .process-grid,
  .route-grid,
  .comparison-grid,
  .feature-band,
  .mini-gallery,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .mini-gallery img:first-child {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .service-hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .workshop-detail .service-hero-copy h1 {
    font-size: clamp(2.35rem, 12.5vw, 4rem);
  }

  .workshop-detail .workshop-team-showcase {
    width: 100%;
    padding: 0;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  }

  .workshop-spline-section {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .workshop-spline-card {
    gap: 22px;
    padding: 22px;
  }

  .workshop-spline-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .workshop-spline-points {
    grid-template-columns: 1fr;
  }

  .workshop-spline-scene {
    display: grid;
    min-height: auto;
    gap: 10px;
  }

  .workshop-scene-core {
    position: relative;
    inset: auto;
    min-height: 260px;
    aspect-ratio: 16 / 10;
    transform: none;
    box-shadow: 10px 12px 0 rgba(19, 160, 95, 0.18);
  }

  .scene-service-tag {
    position: relative;
    inset: auto;
    min-width: 0;
    width: 100%;
    animation: none;
    transform: none;
  }

  .waste-scroll-section {
    --waste-rotate: 0deg;
    --waste-scale: 1;
    --waste-lift: 0px;
    padding-top: 42px;
    padding-bottom: 48px;
    perspective: none;
  }

  .waste-scroll-section::before {
    inset: 16px -10px 0;
  }

  .waste-scroll-intro {
    transform: none;
    text-align: left;
  }

  .waste-scroll-intro h2 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .waste-scroll-card {
    transform: none;
  }

  .waste-device-frame {
    padding: 10px;
    border-width: 2px;
    border-radius: 22px;
  }

  .waste-device-topbar {
    min-height: 40px;
    padding: 0 10px;
  }

  .waste-device-topbar strong {
    max-width: 190px;
    font-size: 0.68rem;
    text-align: right;
  }

  .waste-ops-dashboard {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .waste-ops-hero,
  .waste-ops-panel,
  .waste-ops-metrics {
    grid-column: 1 / -1;
  }

  .waste-ops-hero {
    min-height: 380px;
  }

  .waste-ops-hero > div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .waste-ops-hero h3 {
    max-width: none;
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .waste-ops-panel {
    min-height: auto;
    padding: 18px;
  }

  .waste-ops-metrics {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .outline-word {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .detail-section {
    padding: 62px 0;
  }

  .service-proof-strip div,
  .service-matrix article,
  .feature-panel,
  .process-card,
  .route-card,
  .comparison-card,
  .service-cta {
    padding: 22px;
  }
}
