.service-page {
  color: var(--ink);
  background: #f5f2e8;
}

.service-main {
  --service-transition-size: clamp(72px, 8vw, 128px);
  overflow: clip;
}

.service-main > section + section {
  margin-top: -1px;
}

.service-hero::after,
.service-visual::before,
.service-visual::after {
  position: absolute;
  right: 0;
  left: 0;
  height: var(--service-transition-size);
  content: "";
  pointer-events: none;
}

.service-hero::after {
  z-index: 0;
  bottom: 0;
  height: clamp(110px, 12vw, 180px);
  background: linear-gradient(0deg, rgba(5, 11, 10, 0.38) 0%, rgba(5, 11, 10, 0.1) 48%, rgba(5, 11, 10, 0) 100%);
}

.service-visual::before {
  z-index: 2;
  top: 0;
  background: linear-gradient(180deg, #f5f2e8 0%, rgba(245, 242, 232, 0.62) 34%, rgba(245, 242, 232, 0) 100%);
}

.service-visual::after {
  z-index: 2;
  bottom: 0;
  background: linear-gradient(0deg, var(--paper) 0%, rgba(245, 246, 241, 0.62) 34%, rgba(245, 246, 241, 0) 100%);
}

.service-hero {
  position: relative;
  display: grid;
  min-height: clamp(650px, 88svh, 900px);
  padding: calc(var(--header-height) + 58px) clamp(20px, 5vw, 76px) 72px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.service-hero__media,
.service-hero__media img,
.service-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero__media {
  z-index: -2;
}

.service-hero__media img {
  object-fit: cover;
  object-position: var(--hero-position, center);
}

.service-hero__shade {
  z-index: -1;
  background: rgba(4, 12, 9, 0.28);
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1450px, 100%);
  color: var(--white);
  text-align: center;
}

.service-page .section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--accent-bright);
}

.service-page .section-kicker::after {
  width: 52px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.service-hero__inner .section-kicker,
.service-contact__inner .section-kicker {
  justify-content: center;
}

.service-hero__inner .section-kicker,
.service-hero h1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.service-hero__inner .section-kicker::before,
.service-contact__inner .section-kicker::before,
.service-visual__caption .section-kicker::before {
  width: 52px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.service-hero h1 {
  max-width: 1380px;
  margin: 0 auto;
  font-size: clamp(3.25rem, 6.4vw, 6.8rem);
  font-weight: 250;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-wrap: balance;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(36px, 5vw, 58px);
}

@media (min-width: 921px) {
  .service-hero__inner {
    padding-bottom: clamp(72px, 6vw, 96px);
  }
}

.service-action {
  display: inline-flex;
  min-width: 220px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  color: var(--white);
  background: rgba(10, 17, 16, 0.48);
  border: 1px solid var(--accent);
  font-weight: 650;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-action--primary {
  color: var(--white);
  background: rgba(10, 17, 16, 0.48);
  border-color: var(--accent);
}

.service-action:hover,
.service-action:focus-visible {
  color: #0d1a13;
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-3px);
}

.qualification-strip {
  position: relative;
  z-index: 1;
  padding: clamp(118px, 8vw, 144px) 0 clamp(48px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 30%, rgba(113, 166, 83, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(6, 16, 13, 0.5) 0%, rgba(6, 16, 13, 0.66) 100%),
    var(--qualification-image) var(--qualification-position, center) / cover no-repeat;
  overflow: visible;
  isolation: isolate;
}

.service-proof {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1.18fr minmax(0, 1fr);
  width: 100%;
  min-height: clamp(150px, 12vw, 184px);
  padding-inline: clamp(42px, 6vw, 110px);
  color: #102219;
  background: linear-gradient(90deg, rgba(232, 235, 228, 0) 0%, rgba(232, 235, 228, 0.68) 8%, rgba(232, 235, 228, 0.86) 18%, rgba(232, 235, 228, 0.86) 82%, rgba(232, 235, 228, 0.68) 92%, rgba(232, 235, 228, 0) 100%);
  transform: translate(-50%, -50%);
}

.service-proof__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: clamp(24px, 2.8vw, 42px);
}

.service-proof__item + .service-proof__item {
  border-left: 1px solid rgba(21, 59, 43, 0.3);
}

.service-proof__item strong {
  color: #173f2e;
  font-size: clamp(1.12rem, 1.5vw, 1.5rem);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.service-proof__item--featured strong {
  color: #719d13;
}

.service-proof__number {
  display: inline-block;
  min-width: 1.2ch;
  margin-right: 0.18em;
  color: #719d13;
  font-size: 1.55em;
  font-variant-numeric: tabular-nums;
  font-weight: 350;
  line-height: 0.8;
  vertical-align: -0.08em;
}

.service-proof__item p {
  max-width: 34ch;
  margin: 0;
  color: rgba(16, 34, 25, 0.72);
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  line-height: 1.45;
}

@keyframes service-proof-item-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qualification-strip--abbattimento {
  --qualification-image: url("../assets/qualification-abbattimento.jpg");
  --qualification-position: center 58%;
}

.qualification-strip--potatura {
  --qualification-image: url("../assets/photo-potatura-qualifiche-upscaled.jpg");
  --qualification-position: center 50%;
}

.qualification-strip--tree-climbing {
  --qualification-image: url("../assets/photo-tree-climbing-qualifiche-upscaled.jpg");
  --qualification-position: center 45%;
}

.qualification-strip--fitosanitario {
  --qualification-image: url("../assets/reviews-logs.jpg");
  --qualification-position: center;
}

.qualification-strip--giardini {
  --qualification-image: url("../assets/qualification-giardini.jpg");
  --qualification-position: center 55%;
}

.qualification-strip--irrigazione {
  --qualification-image: url("../assets/qualification-irrigazione.jpg");
  --qualification-position: center 62%;
}

.qualification-strip__heading {
  padding: 0;
}

.qualification-strip__heading h2 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  font-weight: 270;
  letter-spacing: -0.048em;
  line-height: 0.98;
  text-wrap: nowrap;
  white-space: nowrap;
}

.qualification-strip__line,
.service-heading-line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: clamp(26px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.24);
}

.qualification-strip__line {
  margin-top: clamp(20px, 2vw, 28px);
}

.qualification-strip__line::after,
.service-heading-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(92px, 10vw, 150px);
  height: 3px;
  background: var(--accent-bright);
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(165, 203, 40, 0.3);
  content: "";
  transform: translate(-50%, -50%);
}

.service-method__intro .service-heading-line {
  background: rgba(21, 59, 43, 0.24);
}

.qualification-strip__scroller {
  width: 100%;
  margin-top: clamp(24px, 2.5vw, 36px);
  padding: 4px 0 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}

.qualification-strip__scroller::-webkit-scrollbar {
  display: none;
}

.qualification-strip__scroller:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: -2px;
}

.qualification-strip__scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.qualification-strip__track,
.qualification-strip__group {
  display: flex;
  align-items: stretch;
}

.qualification-strip__track {
  width: max-content;
  padding-left: clamp(20px, 5vw, 76px);
}

.qualification-strip__group {
  flex: 0 0 auto;
  gap: clamp(16px, 1.5vw, 24px);
  padding-right: clamp(16px, 1.5vw, 24px);
}

.qualification-badge {
  display: grid;
  width: clamp(280px, 22vw, 350px);
  min-height: 126px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 18px;
  color: #132119;
  background: linear-gradient(145deg, #faf8f0 0%, #eef1e4 100%);
  border: 1px solid rgba(157, 187, 74, 0.42);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.19);
}

.qualification-badge__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #45620f;
  background: rgba(164, 198, 73, 0.18);
  border: 1px solid rgba(111, 145, 34, 0.26);
  border-radius: 15px;
}

.qualification-badge__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qualification-badge__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.qualification-badge__copy h3 {
  margin: 0;
  color: #142119;
  font-size: 0.96rem;
  font-weight: 690;
  line-height: 1.26;
}

.qualification-badge__copy p {
  margin: 4px 0 3px;
  color: #58645b;
  font-size: 0.78rem;
  line-height: 1.42;
}

.qualification-badge__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #946b12;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.qualification-badge__status svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(148, 107, 18, 0.58);
  border-radius: 50%;
}

.service-section {
  position: relative;
  padding: clamp(88px, 9vw, 148px) clamp(20px, 5vw, 76px);
}

.service-inner {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.service-section h2,
.service-contact h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  font-weight: 230;
  letter-spacing: -0.042em;
  line-height: 1.02;
  text-wrap: balance;
}

.service-section h3 {
  margin: 0;
  font-weight: 520;
}

.service-section p {
  line-height: 1.76;
}

.service-section--intro {
  padding-bottom: clamp(40px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, #06100d 0%, #0a1b15 42%, #153b2b 100%);
  isolation: isolate;
}

.service-section--intro::before {
  position: absolute;
  top: 7%;
  left: 18%;
  width: min(620px, 55vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(105, 157, 87, 0.09);
  filter: blur(100px);
  content: "";
  pointer-events: none;
}

.service-section--intro h2 {
  color: var(--white);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 124px);
}

.service-intro__copy {
  grid-column: 2;
  grid-row: 1;
}

.service-intro__copy p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.service-intro__copy p + p {
  margin-top: 17px;
}

.service-copy-link {
  color: var(--accent-bright);
  font-weight: 700;
  text-decoration-color: rgba(165, 203, 40, 0.58);
  text-underline-offset: 0.2em;
}

.service-copy-link:hover,
.service-copy-link:focus-visible {
  color: var(--white);
}

.service-intro__media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-height: clamp(440px, 50vw, 690px);
  margin: 0;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 0 100%, 0 8%);
}

.service-intro__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 48%, rgba(8, 27, 18, 0.24));
  content: "";
  pointer-events: none;
}

.service-intro__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-intro__media:hover img {
  transform: scale(1.035);
}

.service-rank3 {
  padding-top: clamp(40px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, #153b2b 0%, #244935 10%, #496d59 22%, #6f8579 34%, #8da095 46%, #b6c2b9 62%, #e7e7df 80%, #f5f2e8 100%);
  isolation: isolate;
}

.service-rank3::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: clamp(560px, 47vw, 820px);
  background: url("../assets/forest-transition.png") center bottom / cover no-repeat;
  content: "";
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.92) 28%, rgba(0, 0, 0, 0.48) 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.92) 28%, rgba(0, 0, 0, 0.48) 62%, transparent 100%);
  pointer-events: none;
}

.service-rank3__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: end;
  column-gap: clamp(30px, 7vw, 108px);
  row-gap: 0;
  margin-bottom: clamp(50px, 7vw, 92px);
}

.service-rank3__heading .section-kicker {
  grid-column: 1 / -1;
}

.service-rank3__heading h2 {
  grid-column: 1;
  grid-row: 2;
}

.service-rank3__heading > p:not(.section-kicker) {
  position: relative;
  grid-column: 2;
  grid-row: 2 / span 2;
  margin: 0;
  padding-left: clamp(24px, 2.4vw, 36px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.service-rank3__heading > p:not(.section-kicker)::before,
.service-rank3__heading > p:not(.section-kicker)::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  content: "";
  transform: translateY(-50%);
}

.service-rank3__heading > p:not(.section-kicker)::before {
  height: 100%;
  background: rgba(255, 255, 255, 0.24);
}

.service-rank3__heading > p:not(.section-kicker)::after {
  width: 3px;
  height: clamp(52px, 5vw, 76px);
  background: var(--accent-bright);
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(165, 203, 40, 0.3);
}

.service-rank3__heading .service-heading-line {
  grid-column: 1;
  grid-row: 3;
}

@media (min-width: 921px) {
  .service-rank3__heading .section-kicker {
    display: none;
  }

  .service-rank3__heading > p:not(.section-kicker) {
    padding: clamp(18px, 1.8vw, 26px) clamp(32px, 3.2vw, 50px) clamp(18px, 1.8vw, 26px) clamp(28px, 2.4vw, 36px);
    color: #173f2e;
    background: linear-gradient(90deg, rgba(250, 251, 247, 0.82) 0%, rgba(250, 251, 247, 0.72) 68%, rgba(250, 251, 247, 0.56) 100%);
    border-radius: 0 10px 10px 0;
  }
}

.service-rank3__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  gap: clamp(44px, 7vw, 108px);
}

.service-rank3__list {
  align-self: start;
  border-bottom: 1px solid rgba(21, 59, 43, 0.24);
}

.service-rank3__item {
  width: 100%;
  padding: clamp(24px, 3vw, 36px) 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  text-align: left;
}

.service-rank3__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.service-rank3__item h3 {
  color: inherit;
  font-size: clamp(1.4rem, 2.25vw, 2.2rem);
  text-shadow: 0 2px 14px rgba(6, 16, 13, 0.38);
  transition: color 240ms ease, transform 300ms ease;
}

.service-rank3__arrow {
  flex: 0 0 auto;
  color: var(--accent-bright);
  font-size: 1.45rem;
  transition: transform 260ms ease;
}

.service-rank3__item p {
  max-width: 630px;
  margin: 13px 44px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  text-shadow: 0 2px 12px rgba(6, 16, 13, 0.42);
}

.service-rank3__item:not(:first-child) {
  color: rgba(21, 59, 43, 0.92);
  border-top-color: rgba(21, 59, 43, 0.24);
}

.service-rank3__item:not(:first-child) h3,
.service-rank3__item:not(:first-child) p {
  text-shadow: none;
}

.service-rank3__item:not(:first-child) p {
  color: rgba(21, 59, 43, 0.8);
}

.service-rank3__item:hover h3,
.service-rank3__item:focus-visible h3,
.service-rank3__item.is-active h3 {
  color: var(--accent-bright);
  transform: translateX(7px);
}

.service-rank3__item:not(:first-child):hover h3,
.service-rank3__item:not(:first-child):focus-visible h3,
.service-rank3__item:not(:first-child).is-active h3 {
  color: #648315;
}

.service-rank3__item:hover .service-rank3__arrow,
.service-rank3__item:focus-visible .service-rank3__arrow,
.service-rank3__item.is-active .service-rank3__arrow {
  transform: translateX(7px);
}

.service-rank3__item:focus-visible {
  outline-offset: 5px;
}

.service-rank3__media {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #0a1b13;
  clip-path: polygon(0 0, 92% 0, 100% 9%, 100% 100%, 8% 100%, 0 91%);
}

.service-rank3__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--rank3-fit, cover);
  object-position: var(--rank3-position, center);
  filter: saturate(1.08) contrast(1.04);
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 600ms ease, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-rank3__media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-rank3__mobile-media {
  display: none;
}

.service-visual {
  position: relative;
  min-height: clamp(620px, 72vw, 860px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #f5f2e8;
  isolation: isolate;
}

.service-visual__shade {
  display: none;
}

.service-visual__caption {
  position: absolute;
  z-index: 4;
  top: 40%;
  right: clamp(20px, 5vw, 76px);
  bottom: auto;
  left: clamp(20px, 5vw, 76px);
  width: auto;
  transform: translateY(-50%);
}

.service-visual__caption .section-kicker {
  justify-content: center;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(4, 16, 11, 0.48);
}

.service-visual__caption h2 {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
  line-height: 0.98;
  text-align: center;
  text-shadow: 0 3px 24px rgba(4, 16, 11, 0.52);
  text-wrap: balance;
}

.service-visual__caption .service-heading-line {
  margin-top: clamp(20px, 2.2vw, 32px);
}

.service-visual__caption > p:not(.section-kicker) {
  max-width: none;
  margin: clamp(18px, 2vw, 26px) 0 0;
  padding: clamp(18px, 2vw, 28px) clamp(20px, 2.5vw, 36px);
  color: #173b2b;
  background: rgba(250, 250, 247, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(5, 20, 14, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.68;
  text-align: left;
}

.service-visual--abbattimento .service-visual__caption {
  inset: 0;
  display: flex;
  width: auto;
  padding: clamp(72px, 8vw, 112px) clamp(48px, 8vw, 128px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: none;
}

.service-visual--abbattimento .service-visual__caption > p:not(.section-kicker) {
  max-width: 1060px;
  margin-inline: auto;
  text-align: center;
}

.service-visual--giardini .service-visual__caption {
  inset: 0;
  display: flex;
  width: auto;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 76px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: none;
}

.service-visual--giardini .service-visual__caption > p:not(.section-kicker) {
  max-width: 1060px;
  margin-inline: auto;
  text-align: center;
}

.service-visual--giardini + .service-method,
.service-visual--giardini + .service-cta-banner + .service-method {
  padding-top: clamp(48px, 5vw, 72px);
}

.visual-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 18px;
  padding: 38px 0 210px;
  animation: service-marquee 32s linear infinite;
}

.visual-marquee img {
  width: min(72vw, 920px);
  height: 100%;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: var(--visual-position, center);
}

.visual-marquee--giardini {
  padding: 0;
}

@keyframes service-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.visual-cinematic,
.visual-water,
.visual-lens,
.visual-climb {
  position: absolute;
  inset: 0;
}

.visual-cinematic__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--visual-position, center);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1400ms ease;
}

.visual-cinematic__frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.visual-cinematic__controls {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(18px, 3vw, 48px);
  display: grid;
  gap: 11px;
  transform: translateY(-50%);
}

.visual-cinematic__controls button {
  width: 9px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  cursor: pointer;
  transition: height 220ms ease, background 220ms ease;
}

.visual-cinematic__controls button.is-active {
  height: 62px;
  background: var(--accent-bright);
}

.visual-climb {
  display: flex;
  gap: 2px;
}

.visual-climb__controls {
  display: none;
}

.visual-climb__panel {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  transition: flex 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-climb__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--visual-position, center);
}

.visual-climb__panel:hover,
.visual-climb__panel:focus-within {
  flex: 1.7 1 0;
}

.visual-lens img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-lens:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: -6px;
}

.visual-lens__glass {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(180px, 24vw, 360px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background-image: var(--lens-image);
  background-repeat: no-repeat;
  background-size: auto 200%;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.visual-garden {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 16px;
  padding: 36px 0 210px clamp(20px, 6vw, 96px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.visual-garden::-webkit-scrollbar {
  display: none;
}

.visual-garden img {
  width: min(78vw, 980px);
  height: 100%;
  flex: 0 0 auto;
  object-fit: cover;
  scroll-snap-align: center;
}

.service-visual__motion {
  display: none;
}

.service-visual__motion-trail {
  stroke: var(--accent-bright);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14 16;
  filter: drop-shadow(0 0 8px rgba(165, 203, 40, 0.68));
  vector-effect: non-scaling-stroke;
  animation: service-motion-flow var(--service-motion-duration, 14s) linear infinite;
}

.service-visual__motion-trail--secondary {
  opacity: 0.72;
  stroke-dasharray: 7 18;
  animation-direction: reverse;
  animation-duration: var(--service-motion-secondary-duration, 20s);
}

.service-visual__motion-point {
  fill: rgba(165, 203, 40, 0.24);
  stroke: var(--accent-bright);
  stroke-width: 3;
  filter: drop-shadow(0 0 7px rgba(165, 203, 40, 0.72));
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
  animation: service-motion-point 3.2s ease-in-out infinite;
}

.service-visual__motion-point:nth-of-type(2) {
  animation-delay: 480ms;
}

.service-visual__motion-point:nth-of-type(3) {
  animation-delay: 960ms;
}

.service-visual__motion-point:nth-of-type(4) {
  animation-delay: 1440ms;
}

.service-visual__motion--potatura {
  --service-motion-duration: 18s;
  opacity: 0.7;
}

.service-visual__motion--abbattimento {
  --service-motion-duration: 16s;
  inset: 9% 6% 16%;
  width: 88%;
  height: 75%;
  opacity: 0.68;
}

.service-visual__motion--tree-climbing {
  --service-motion-duration: 13s;
  inset: 4% 3% 10%;
  width: 94%;
  height: 86%;
  opacity: 0.82;
}

@keyframes service-motion-flow {
  to {
    stroke-dashoffset: -360;
  }
}

@keyframes service-motion-point {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

.visual-water img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--visual-position, center);
}

.visual-water img:last-of-type {
  opacity: 0;
  animation: water-image-crossfade 9s ease-in-out infinite alternate;
}

.visual-water svg {
  display: none;
}

@keyframes water-flow {
  to {
    stroke-dashoffset: -300;
  }
}

@keyframes water-image-crossfade {
  35% {
    opacity: 0;
  }
  70%, 100% {
    opacity: 1;
  }
}

.service-method {
  padding-bottom: 0;
  background: var(--paper);
  isolation: isolate;
}

.qualification-strip--fitosanitario ~ .service-section--intro + .service-method {
  background:
    linear-gradient(
      180deg,
      #153b2b 0%,
      #466552 24%,
      #82978a 48%,
      #c0cbc2 72%,
      var(--paper) 100%
    ) top / 100% var(--service-transition-size) no-repeat,
    var(--paper);
}

.service-method__layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1.3fr);
  gap: clamp(48px, 6vw, 96px);
}

.service-method__intro > p {
  margin: 26px 0 0;
  color: rgba(16, 23, 22, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
}

.service-method__steps {
  border-bottom: 1px solid rgba(21, 59, 43, 0.23);
}

.service-method__step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid rgba(21, 59, 43, 0.23);
}

.service-method__icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  color: #173b2b;
  background: rgba(165, 203, 40, 0.16);
  border: 1px solid rgba(100, 131, 21, 0.34);
  border-radius: 50%;
}

.service-method__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-method__step h3 {
  grid-column: 2;
  color: #173b2b;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.service-method__step p {
  grid-column: 2;
  margin: 12px 0 0;
  color: rgba(16, 23, 22, 0.69);
}

@media (min-width: 921px) {
  .service-method__layout {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.5fr);
    gap: clamp(32px, 3vw, 56px);
  }

  .service-method__intro .service-heading-line {
    margin-top: 18px;
  }

  .service-method__intro > p {
    max-width: 470px;
    margin-top: 18px;
  }

  .service-method__step {
    padding: clamp(22px, 2.2vw, 30px) 0;
  }
}

.service-closing {
  position: relative;
  z-index: 0;
  margin-top: -1px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    #edf0ea 7%,
    #dbe1d8 15%,
    #bac8bd 26%,
    #88a093 39%,
    #587366 52%,
    #315144 64%,
    #18372b 76%,
    #0a1b15 88%,
    #06100d 100%
  );
}

.service-closing::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../assets/forest-transition.png") center bottom / cover no-repeat;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.55) 48%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.55) 48%, #000 100%);
}

.service-closing > .service-inner,
.service-closing > .service-contact {
  position: relative;
  z-index: 1;
}

.service-faq {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(40px, 9vw, 140px);
  margin-top: clamp(16px, 2vw, 24px);
  padding: clamp(56px, 5vw, 80px) 0 clamp(32px, 3vw, 44px);
  color: #153b2b;
}

.service-faq__heading h3 {
  margin: 0;
  color: #153b2b;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  letter-spacing: -0.035em;
}

.service-faq .section-kicker {
  color: #648315;
}

.service-faq .service-heading-line {
  background: rgba(21, 59, 43, 0.24);
}

.service-faq__heading p {
  margin: 17px 0 0;
  color: rgba(21, 59, 43, 0.76);
}

.service-faq__list {
  align-self: start;
  border-top: 1px solid rgba(21, 59, 43, 0.3);
}

.service-faq details {
  position: relative;
  border-bottom: 1px solid rgba(21, 59, 43, 0.3);
}

.service-faq details::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 28px;
  border-radius: 0 3px 3px 0;
  background: var(--accent-bright);
  content: "";
  opacity: 0.25;
  transform: translateY(-50%);
  transition: height 280ms ease, opacity 280ms ease;
}

.service-faq details[open]::before {
  height: calc(100% - 22px);
  opacity: 1;
}

.service-faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 2.4vw, 30px) clamp(16px, 2vw, 26px);
  color: rgba(16, 23, 22, 0.88);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  transition: color 220ms ease;
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary:hover,
.service-faq summary:focus-visible,
.service-faq details[open] summary {
  color: var(--ink);
  background: transparent;
}

.service-faq summary:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: -4px;
}

.service-faq summary::after {
  width: 13px;
  height: 13px;
  margin-top: -5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: #648315;
  content: "";
  justify-self: center;
  transform: rotate(45deg);
  transition: color 220ms ease, transform 280ms ease;
}

.service-faq details[open] summary::after {
  transform: translateY(7px) rotate(225deg);
}

.service-faq details p {
  max-width: 920px;
  margin: 0 clamp(16px, 2vw, 26px) clamp(26px, 3vw, 38px);
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 30px);
  color: #153b2b;
  background: rgba(245, 246, 241, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

.service-cta-banner {
  position: relative;
  z-index: 1;
  display: none;
  overflow: hidden;
  margin-top: clamp(16px, 2vw, 24px);
  color: var(--white);
  background: linear-gradient(90deg, var(--paper) 0%, rgba(7, 17, 14, 0.86) 12%, rgba(16, 39, 30, 0.82) 24%, rgba(21, 59, 43, 0.8) 50%, rgba(16, 39, 30, 0.82) 76%, rgba(7, 17, 14, 0.86) 88%, var(--paper) 100%);
}

.service-visual + .service-cta-banner {
  display: block;
}

.service-cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(360px, 1.25fr) minmax(150px, 0.42fr);
  width: min(1380px, 100%);
  min-height: 174px;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  margin: 0 auto;
  padding: 22px clamp(20px, 5vw, 76px);
  isolation: isolate;
}

.service-cta-banner__copy {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.18;
  text-wrap: balance;
}

.service-cta-banner__copy span {
  color: var(--accent-bright);
}

.service-cta-banner__button {
  display: flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 9px 18px;
  color: #102219;
  background: var(--accent-bright);
  border: 1px solid var(--accent-bright);
  border-radius: 999px;
  font-size: 0.52em;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-cta-banner__button:hover,
.service-cta-banner__button:focus-visible {
  color: var(--white);
  background: transparent;
  transform: translateY(-2px);
}

.service-cta-banner__button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.service-cta-banner__button[aria-disabled="true"] {
  pointer-events: none;
}

.service-cta-banner__route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 54px;
  align-items: center;
  gap: 14px;
}

.service-cta-banner__connector {
  width: 100%;
  height: 120px;
  color: var(--accent-bright);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.service-cta-banner__connector path {
  vector-effect: non-scaling-stroke;
}

.service-cta-banner__connector marker path {
  fill: var(--accent-bright);
  stroke: none;
}

.service-cta-banner__actions {
  display: flex;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.service-cta-banner__action {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--accent-bright);
  background: rgba(7, 17, 14, 0.78);
  border: 1px solid rgba(165, 203, 40, 0.68);
  border-radius: 50%;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-cta-banner__action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-cta-banner__action:hover,
.service-cta-banner__action:focus-visible {
  color: #102219;
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: scale(1.08);
}

.service-cta-banner__action:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.service-cta-banner__brand {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 130px;
  align-self: stretch;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.service-cta-banner__brand img {
  width: 118px;
  height: 118px;
  padding: 10px;
  object-fit: contain;
  background: rgba(245, 242, 232, 0.94);
  border: 1px solid rgba(165, 203, 40, 0.42);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(245, 242, 232, 0.04);
}

.service-contact {
  position: relative;
  padding: clamp(36px, 4vw, 56px) clamp(20px, 5vw, 76px) clamp(92px, 8vw, 120px);
  color: var(--white);
  background: transparent;
}

.service-contact__inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.service-contact h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  text-align: center;
}

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

.service-contact__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(48px, 6vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-contact__inner > .service-heading-line + .service-contact__links {
  margin-top: clamp(24px, 3vw, 40px);
  border-top: 0;
}

.service-contact__page-cta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  padding: clamp(20px, 2.4vw, 30px) clamp(25px, 3vw, 38px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 220ms ease;
}

.service-contact__page-cta::before,
.service-contact__page-cta::after {
  min-width: 28px;
  height: 1px;
  flex: 1 1 auto;
  background: var(--accent-bright);
  content: "";
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.service-contact__page-cta span {
  flex: 0 1 auto;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 350;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
}

.service-contact__page-cta svg {
  display: none;
}

.service-contact__page-cta:hover,
.service-contact__page-cta:focus-visible {
  color: var(--accent-bright);
}

.service-contact__page-cta:hover::before,
.service-contact__page-cta:hover::after,
.service-contact__page-cta:focus-visible::before,
.service-contact__page-cta:focus-visible::after {
  opacity: 1;
}

.service-contact__page-cta:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: -2px;
}

.service-contact__link {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: clamp(25px, 3vw, 38px);
  color: var(--white);
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease;
}

.service-contact__link + .service-contact__link {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.service-contact__link small {
  color: var(--accent-bright);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-contact__link strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 520;
}

.service-contact__link:hover,
.service-contact__link:focus-visible {
  color: var(--accent-bright);
  background: rgba(255, 255, 255, 0.045);
}

.service-js .service-reveal {
  opacity: 0;
  transform: translateX(72px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-js .service-reveal.is-entering {
  opacity: 1;
  transform: translateX(0);
}

.service-js .service-proof.service-reveal {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: none;
}

.service-js .service-proof.service-reveal .service-proof__item {
  opacity: 0;
  transform: translateY(18px);
}

.service-js .service-proof.service-reveal.is-entering .service-proof__item {
  animation: service-proof-item-in 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-js .service-proof.service-reveal.is-entering .service-proof__item:nth-child(2) {
  animation-delay: 1s;
}

.service-js .service-intro__media.service-reveal,
.service-js .service-rank3__media.service-reveal,
.service-js .service-method__steps.service-reveal,
.service-js .service-faq__list.service-reveal {
  transition-delay: 120ms;
}

.service-js .service-hero__inner.service-reveal,
.service-js .service-contact__inner.service-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.service-js .service-hero__inner.service-reveal > *,
.service-js .service-contact__inner.service-reveal > * {
  opacity: 0;
}

.service-js .service-hero__inner.service-reveal.is-entering > *,
.service-js .service-contact__inner.service-reveal.is-entering > * {
  animation: hero-copy-in 820ms cubic-bezier(0.22, 0.9, 0.32, 1) both;
}

.service-js .service-hero__inner.service-reveal.is-entering > :nth-child(2),
.service-js .service-contact__inner.service-reveal.is-entering > :nth-child(2) {
  animation-delay: 100ms;
}

.service-js .service-hero__inner.service-reveal.is-entering > :nth-child(3),
.service-js .service-contact__inner.service-reveal.is-entering > :nth-child(3) {
  animation-delay: 200ms;
}

.service-js .service-contact__inner.service-reveal.is-entering > :nth-child(4) {
  animation-delay: 300ms;
}

@media (max-width: 1040px) {
  .qualification-strip {
    padding-top: 124px;
  }

  .service-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 160px;
    padding-inline: 24px;
  }

  .service-proof__item:nth-child(odd) {
    border-left: 0;
  }

  .service-rank3__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .service-rank3__media {
    min-height: 540px;
  }

  .service-cta-banner__inner {
    grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1fr) minmax(118px, 0.35fr);
    gap: 24px;
  }

  .service-cta-banner__brand img {
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 920px) {
  .service-visual {
    min-height: clamp(760px, 100vw, 900px);
  }

  .qualification-strip__heading h2 {
    text-wrap: balance;
    white-space: normal;
  }

  .qualification-badge {
    width: min(42vw, 330px);
  }

  .service-intro,
  .service-rank3__heading,
  .service-rank3__layout,
  .service-method__layout,
  .service-faq {
    grid-template-columns: 1fr;
  }

  .service-intro__copy {
    grid-column: auto;
    grid-row: auto;
    max-width: 760px;
  }

  .service-intro__media {
    grid-column: auto;
    grid-row: auto;
    min-height: clamp(390px, 68vw, 620px);
  }

  .service-rank3__heading {
    align-items: start;
  }

  .service-rank3__heading > p:not(.section-kicker) {
    grid-column: 1;
    grid-row: 4;
    margin-top: 22px;
    max-width: 700px;
  }

  .service-rank3__media {
    position: relative;
    top: auto;
    min-height: clamp(420px, 68vw, 600px);
  }

  .service-method__intro {
    max-width: 740px;
  }

  .service-faq {
    gap: 30px;
  }

  .service-faq__heading {
    max-width: 620px;
  }

  .service-cta-banner__inner {
    grid-template-columns: minmax(0, 1fr) 132px;
    min-height: 0;
    padding-block: 28px;
  }

  .service-cta-banner__route {
    grid-column: 1 / -1;
  }

  .service-cta-banner__brand {
    grid-column: 2;
    grid-row: 1;
  }

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

  .service-contact__link:nth-child(4) {
    border-left: 0;
  }

  .service-contact__link:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 640px) {
  .service-visual__motion {
    inset: 5% -14% 28%;
    width: 128%;
    height: 67%;
    opacity: 0.58;
  }

  .service-visual__motion--abbattimento,
  .service-visual__motion--tree-climbing {
    inset: 4% -10% 24%;
    width: 120%;
    height: 72%;
  }

  .qualification-strip {
    padding-top: 116px;
    padding-bottom: 44px;
  }

  .service-proof {
    min-height: 172px;
    padding-inline: 12px;
    background: linear-gradient(90deg, rgba(232, 235, 228, 0) 0%, rgba(232, 235, 228, 0.74) 6%, rgba(232, 235, 228, 0.9) 14%, rgba(232, 235, 228, 0.9) 86%, rgba(232, 235, 228, 0.74) 94%, rgba(232, 235, 228, 0) 100%);
  }

  .service-proof__item {
    gap: 6px;
    padding: 16px;
  }

  .service-proof__item strong {
    font-size: 1rem;
  }

  .service-proof__item p {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .qualification-strip__heading .section-kicker {
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .qualification-strip__heading h2 {
    font-size: clamp(1.8rem, 7.8vw, 2.8rem);
    text-wrap: nowrap;
    white-space: nowrap;
  }

  .qualification-strip__line,
  .service-heading-line {
    margin-top: 24px;
  }

  .qualification-strip__line {
    margin-top: 20px;
  }

  .qualification-strip__scroller {
    margin-top: 24px;
  }

  .qualification-strip__track {
    padding-left: 20px;
  }

  .qualification-badge {
    width: min(82vw, 320px);
    min-height: 132px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .qualification-badge__icon {
    width: 44px;
    height: 44px;
  }

  .qualification-badge__icon svg {
    width: 24px;
    height: 24px;
  }

  .service-hero {
    min-height: 690px;
    min-height: max(690px, 100svh);
    padding: calc(var(--header-height) + 42px) 18px 58px;
  }

  .service-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.96;
  }

  .service-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .service-action {
    width: 100%;
  }

  .service-section {
    padding: 82px 18px;
  }

  .service-section--intro {
    padding-bottom: 36px;
  }

  .service-rank3 {
    padding-top: 40px;
  }

  .service-section h2,
  .service-contact h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .service-intro {
    gap: 40px;
  }

  .service-intro__media {
    min-height: 370px;
    clip-path: polygon(6% 0, 100% 0, 100% 94%, 0 100%, 0 6%);
  }

  .service-rank3__heading {
    column-gap: 22px;
    row-gap: 0;
    margin-bottom: 38px;
  }

  .service-rank3::before {
    height: 480px;
    background-size: auto 100%;
    opacity: 0.22;
  }

  .service-rank3__layout {
    gap: 36px;
  }

  .service-rank3__item p {
    margin-right: 18px;
    line-height: 1.62;
  }

  .service-rank3__heading > p:not(.section-kicker) {
    padding-left: 0;
  }

  .service-rank3__heading > p:not(.section-kicker)::before,
  .service-rank3__heading > p:not(.section-kicker)::after {
    display: none;
  }

  .service-rank3__layout {
    gap: 0;
  }

  .service-rank3__item p {
    max-height: 0;
    margin-top: 0;
    margin-right: 18px;
    overflow: hidden;
    line-height: 1.62;
    opacity: 0;
    transition: max-height 360ms ease, margin-top 360ms ease, opacity 240ms ease;
  }

  .service-rank3__item.is-active p {
    max-height: 420px;
    margin-top: 13px;
    opacity: 1;
  }

  .service-rank3__mobile-media {
    display: block;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%);
    transition: max-height 420ms ease, margin-top 420ms ease, opacity 280ms ease;
  }

  .service-rank3__mobile-media img {
    display: block;
    width: 100%;
    height: min(72vw, 330px);
    object-fit: cover;
    object-position: var(--rank3-position, center);
    background: #0a1b13;
    filter: saturate(1.08) contrast(1.04);
  }

  .service-rank3__item.is-active .service-rank3__mobile-media {
    max-height: 330px;
    margin-top: 20px;
    opacity: 1;
  }

  .service-rank3__item.is-active .service-rank3__arrow {
    transform: rotate(90deg);
  }

  .service-rank3__media {
    min-height: 370px;
    clip-path: polygon(0 0, 94% 0, 100% 6%, 100% 100%, 6% 100%, 0 94%);
  }

  .service-rank3__media {
    display: none;
  }

  .service-visual {
    min-height: clamp(780px, 210vw, 920px);
    padding: 0;
  }

  .service-visual__caption {
    position: absolute;
    inset: 0;
    display: flex;
    width: auto;
    margin: 0;
    padding: 64px 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: none;
  }

  .service-visual__caption h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .service-visual__caption .service-heading-line {
    margin-top: 20px;
  }

  .service-visual__caption > p:not(.section-kicker) {
    margin-top: 18px;
    padding: 18px;
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: center;
  }

  .service-visual--potatura,
  .service-visual--abbattimento,
  .service-visual--giardini {
    min-height: clamp(780px, 210vw, 920px);
    padding: 0;
  }

  .service-visual--potatura .visual-marquee {
    padding: 0;
  }

  .service-visual--abbattimento .service-visual__caption,
  .service-visual--giardini .service-visual__caption {
    padding: 64px 18px;
  }

  .service-visual--tree-climbing {
    padding: 0;
  }

  .visual-marquee {
    gap: 10px;
    padding-bottom: 260px;
    animation-duration: 20s;
  }

  .visual-marquee--giardini {
    gap: 18px;
    padding: 0;
  }

  .visual-marquee img {
    width: 88vw;
  }

  .visual-climb {
    display: grid;
    grid-template-columns: repeat(3, 72vw);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .service-visual--tree-climbing .visual-climb {
    gap: 6px;
    pointer-events: auto;
  }

  .service-visual--tree-climbing .service-visual__caption {
    pointer-events: none;
  }

  .service-visual--tree-climbing .visual-climb__panel {
    margin: 0;
  }

  .service-visual--tree-climbing .visual-climb__controls {
    position: absolute;
    z-index: 6;
    top: 16px;
    right: 14px;
    display: flex;
    gap: 8px;
    pointer-events: none;
  }

  .service-visual--tree-climbing .visual-climb__controls button {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    color: var(--white);
    background: rgba(10, 44, 31, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(4, 16, 11, 0.18);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 180ms ease, background 180ms ease;
  }

  .service-visual--tree-climbing .visual-climb__controls button:disabled {
    cursor: default;
    opacity: 0.24;
  }

  .service-visual--tree-climbing .visual-climb__controls button:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 2px;
  }

  .service-visual--tree-climbing .visual-climb__controls svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .visual-climb::-webkit-scrollbar {
    display: none;
  }

  .visual-climb__panel {
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .visual-climb__panel:hover,
  .visual-climb__panel:focus-within {
    flex: initial;
  }

  .visual-lens__glass {
    width: 190px;
  }

  .visual-garden {
    padding: 28px 0 260px 18px;
  }

  .visual-garden img {
    width: 88vw;
  }

  .visual-cinematic__controls {
    top: 32%;
    right: 6px;
    gap: 4px;
  }

  .visual-cinematic__controls button,
  .visual-cinematic__controls button.is-active {
    width: 44px;
    height: 44px;
    background: linear-gradient(currentColor, currentColor) center / 9px 36px no-repeat;
  }

  .visual-cinematic__controls button.is-active {
    color: var(--accent-bright);
  }

  .service-method__layout {
    gap: 38px;
  }

  .service-method__step {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
  }

  .service-method__icon {
    width: 44px;
  }

  .service-method__icon svg {
    width: 22px;
    height: 22px;
  }

  .service-method {
    padding-bottom: 0;
  }

  .service-faq {
    padding: 56px 0 36px;
  }

  .service-faq details p {
    margin-inline: clamp(16px, 2vw, 26px);
  }

  .service-cta-banner__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 18px;
  }

  .service-cta-banner__copy {
    max-width: 440px;
    text-align: center;
  }

  .service-cta-banner__button {
    min-height: 44px;
    margin-inline: auto;
  }

  .service-cta-banner__route {
    grid-column: 1;
    grid-template-columns: minmax(130px, 1fr) 48px;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .service-cta-banner__actions {
    height: 124px;
  }

  .service-cta-banner__action {
    width: 44px;
    height: 44px;
  }

  .service-cta-banner__brand {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    min-height: 0;
    border: 0;
    opacity: 0.14;
    transform: translate(-50%, -50%);
  }

  .service-cta-banner__brand img {
    width: min(58vw, 230px);
    height: min(58vw, 230px);
    padding: 16px;
    box-shadow: none;
  }

  .service-contact {
    padding: 40px 18px 88px;
  }

  .service-contact__links {
    grid-template-columns: 1fr;
  }

  .service-contact__page-cta {
    gap: 14px;
    padding: 22px 20px;
  }

  .service-contact__link + .service-contact__link {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }
}

@media (max-width: 920px) {
  .service-cta-banner {
    width: 100%;
    background: linear-gradient(90deg, #dbe7d6 0%, rgba(144, 166, 148, 0.92) 10%, rgba(71, 99, 82, 0.88) 22%, rgba(28, 61, 45, 0.84) 36%, rgba(21, 59, 43, 0.8) 50%, rgba(28, 61, 45, 0.84) 64%, rgba(71, 99, 82, 0.88) 78%, rgba(144, 166, 148, 0.92) 90%, #dbe7d6 100%);
  }

  .service-cta-banner__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px clamp(18px, 5vw, 36px);
  }

  .service-cta-banner__copy {
    max-width: 440px;
    margin-inline: auto;
    text-align: center;
  }

  .service-cta-banner__button {
    min-height: 40px;
    margin-inline: auto;
  }

  .service-cta-banner__route {
    grid-column: 1;
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(100%, 190px);
    max-width: none;
    margin: 0 auto;
  }

  .service-cta-banner__connector {
    display: none;
  }

  .service-cta-banner__actions {
    width: 190px;
    height: auto;
    flex-direction: row;
  }

  .service-cta-banner__brand {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    border: 0;
    opacity: 0.14;
    transform: translate(-50%, -50%);
  }

  .service-cta-banner__brand img {
    width: min(42vw, 170px);
    height: min(42vw, 170px);
    padding: 12px;
    box-shadow: none;
  }
}

@media (min-width: 641px) {
  .service-proof__item:first-child {
    padding-left: clamp(28px, 2vw, 36px);
  }

  .qualification-strip--potatura .service-proof__item strong {
    font-size: clamp(1.28rem, 1.75vw, 1.75rem);
  }

  .service-visual--potatura + .service-cta-banner .service-cta-banner__copy {
    white-space: nowrap;
  }

  .service-visual--irrigazione .service-visual__caption {
    top: 44%;
  }

  .service-visual--irrigazione .visual-water svg {
    inset: 15% 6% auto;
  }

  .service-visual--potatura {
    min-height: clamp(620px, 58vw, 720px);
  }

  .service-visual--potatura .visual-marquee {
    padding: 0;
  }

  .service-visual--potatura .service-visual__caption,
  .service-visual--tree-climbing .service-visual__caption {
    top: 50%;
  }

  .service-visual--potatura + .service-method,
  .service-visual--potatura + .service-cta-banner + .service-method {
    padding-top: clamp(64px, 5vw, 88px);
  }

  .service-js .service-visual--potatura .service-visual__caption.service-reveal,
  .service-js .service-visual--tree-climbing .service-visual__caption.service-reveal {
    transform: translate(72px, -50%);
  }

  .service-js .service-visual--potatura .service-visual__caption.service-reveal.is-entering,
  .service-js .service-visual--tree-climbing .service-visual__caption.service-reveal.is-entering {
    transform: translate(0, -50%);
  }
}

@media (min-width: 921px) {
  .service-proof__item:first-child {
    padding-left: clamp(160px, 15vw, 280px);
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .service-visual--tree-climbing .visual-climb {
    gap: 0;
  }

  .service-visual--tree-climbing .service-visual__caption {
    top: 42%;
  }
}

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

  .service-hero__media img,
  .visual-marquee,
  .visual-water img:last-of-type,
  .visual-water svg,
  .service-visual__motion-trail,
  .service-visual__motion-point {
    animation: none;
  }

  .service-js .service-reveal {
    opacity: 1;
    transform: none;
  }

  .service-js .service-visual--potatura .service-visual__caption.service-reveal,
  .service-js .service-visual--potatura .service-visual__caption.service-reveal.is-entering {
    transform: translate(0, -50%);
  }

  .service-js .service-proof.service-reveal {
    transform: translate(-50%, -50%);
  }

  .service-js .service-proof.service-reveal .service-proof__item {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .service-js .service-hero__inner.service-reveal > *,
  .service-js .service-contact__inner.service-reveal > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .service-js .service-visual--potatura .service-visual__caption.service-reveal,
  .service-js .service-visual--potatura .service-visual__caption.service-reveal.is-entering {
    transform: none;
  }
}
