:root {
  --black: #000;
  --white: #fff;
  --soft-white: rgba(255, 255, 255, 0.94);
  --gold-light: #ffe08a;
  --gold-mid: #d7a141;
  --gold-deep: #8d5d18;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  --mechanical-cycle: 22s;
  --bar-opacity: 0;
  --bar-y: -18px;
  --bar-bg-opacity: 0;
  --bar-light-progress: 0;
  --bar-surface-r: 0;
  --bar-surface-g: 0;
  --bar-surface-b: 0;
  --bar-text-r: 255;
  --bar-text-g: 255;
  --bar-text-b: 255;
  --bar-text-shadow-opacity: 0.82;
  --bar-dark-logo-opacity: 0;
  --bar-logo-filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
  --bar-logo-opacity: 0;
  --bar-contact-opacity: 0;
  --bar-logo-visible-opacity: 0;
  --bar-contact-visible-opacity: 0;
  --bar-final-hide: 0;
  --hero-image-opacity: 1;
  --hero-logo-opacity: 1;
  --hero-logo-y: 0px;
  --hero-logo-scale: 1;
  --hero-contact-opacity: 1;
  --hero-contact-y: 0px;
  --hero-contact-scale: 1;
  --scroll-cue-opacity: 1;
  --title-1-opacity: 1;
  --title-1-y: 0px;
  --title-1-blur: 0px;
  --title-2-opacity: 1;
  --title-2-y: 0px;
  --title-2-blur: 0px;
  --title-3-opacity: 1;
  --title-3-y: 0px;
  --title-3-blur: 0px;
  --title-4-opacity: 1;
  --title-4-y: 0px;
  --title-4-blur: 0px;
  --benefits-bg-opacity: 0;
  --plan-title-opacity: 0;
  --plan-title-y: 26px;
  --plan-title-blur: 12px;
  --plan-outro-opacity: 0;
  --plan-outro-y: 30px;
  --plan-outro-blur: 12px;
  --plan-section-opacity: 1;
  --plan-section-y: 0px;
  --plan-section-blur: 0px;
  --services-title-opacity: 0;
  --services-title-y: 32px;
  --services-title-blur: 12px;
  --services-deck-y: 0px;
  --services-reveal-opacity: 1;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "MicroFLF", "Rajdhani", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  min-height: clamp(58px, 8.5svh, 86px);
  padding: clamp(14px, 2.3svh, 24px) clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgb(var(--bar-text-r) var(--bar-text-g) var(--bar-text-b) / 0.94);
  background: transparent;
  pointer-events: none;
  transform: translateY(var(--bar-y));
  will-change: transform;
}

.site-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  opacity: 0;
}

.site-bar::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: clamp(64px, 10svh, 118px);
  pointer-events: none;
  background: transparent;
  opacity: 0;
  transition: opacity 320ms ease;
}

.site-bar-logo {
  position: relative;
  width: clamp(112px, 11.6vw, 162px);
  aspect-ratio: 1111 / 224;
  justify-self: start;
  opacity: var(--bar-logo-visible-opacity);
  transform: translateY(calc((1 - var(--bar-logo-opacity)) * -10px));
  will-change: opacity, transform;
}

.site-bar-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  filter: var(--bar-logo-filter);
  transition: opacity 180ms linear;
}

.site-bar-logo-light {
  opacity: calc(1 - var(--bar-dark-logo-opacity));
}

.site-bar-logo-dark {
  opacity: var(--bar-dark-logo-opacity);
}

.site-bar-phone,
.site-bar-email {
  font-size: clamp(1.02rem, min(1.62vw, 2.16svh), 1.38rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  opacity: var(--bar-contact-visible-opacity);
  transform: translateY(calc((1 - var(--bar-contact-opacity)) * -8px));
  text-shadow: 0 12px 24px rgba(0, 0, 0, var(--bar-text-shadow-opacity));
  transition: color 220ms ease, filter 220ms ease;
  will-change: opacity, transform;
}

.site-bar-phone {
  justify-self: center;
  width: max-content;
  min-width: max-content;
}

.site-bar-email {
  justify-self: end;
}

.site-bar a:hover,
.site-bar a:focus-visible {
  color: var(--gold-light);
  filter: drop-shadow(0 0 12px rgba(255, 224, 138, 0.28));
}

.site-bar a:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 5px;
}

.is-transitioning .site-bar {
  pointer-events: auto;
}

.is-services .site-bar::before {
  opacity: 1;
}

.is-services .site-bar::after {
  opacity: 0;
}

.landing {
  width: 100vw;
  min-height: 100svh;
  background: #000;
  isolation: isolate;
}

.hero-scroll {
  position: relative;
  min-height: 126svh;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0) 70%),
    #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("assets/abron-landing-alpnw.png") calc(50% - clamp(18px, 3.6vw, 54px)) calc(100% + clamp(86px, 11svh, 142px)) / clamp(590px, 108vw, 1595px) auto no-repeat;
  opacity: var(--hero-image-opacity);
  will-change: opacity;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px);
  mix-blend-mode: overlay;
}

.logo-stage,
.hero-title,
.contact {
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  opacity: 0;
}

.logo-stage {
  top: calc(clamp(58px, 15.35svh, 168px) - 35px);
  width: min(88vw, clamp(260px, 48.8vw, 543px));
  filter:
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
  transform-origin: center;
  will-change: opacity, transform;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero-title {
  top: calc(clamp(210px, 31.3svh, 342px) - 6px);
  width: min(96vw, 900px);
  margin: 0;
  color: var(--soft-white);
  font-size: clamp(1.06rem, min(3.96vw, 4.08svh), 2.6rem);
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.86);
  transition: transform 760ms ease, opacity 460ms ease;
}

.hero-title span {
  display: block;
  will-change: opacity, transform, filter;
}

.hero-title span:nth-child(1) {
  opacity: var(--title-1-opacity);
  filter: blur(var(--title-1-blur));
  transform: translateY(var(--title-1-y));
}

.hero-title span:nth-child(2) {
  opacity: var(--title-2-opacity);
  filter: blur(var(--title-2-blur));
  transform: translateY(var(--title-2-y));
}

.hero-title span:nth-child(3) {
  opacity: var(--title-3-opacity);
  filter: blur(var(--title-3-blur));
  transform: translateY(var(--title-3-y));
}

.hero-title span:nth-child(4) {
  opacity: var(--title-4-opacity);
  filter: blur(var(--title-4-blur));
  transform: translateY(var(--title-4-y));
}

.contact {
  top: calc(clamp(372px, 56.95svh, 622px) + 14px);
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1.35svh, 15px);
  will-change: opacity, transform;
}

.phone-cta {
  --corner-color: rgba(255, 255, 255, 0.82);
  --corner-length: clamp(7px, 1.05vw, 12px);
  position: relative;
  overflow: hidden;
  min-height: auto;
  width: max-content;
  max-width: calc(100vw - 42px);
  padding: clamp(5px, 0.82svh, 9px) clamp(12px, 2.5vw, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--soft-white);
  font-size: clamp(1.18rem, min(7.2vw, 5svh), 2.95rem);
  font-weight: 900;
  letter-spacing: clamp(0.025em, 0.9vw, 0.085em);
  line-height: 0.92;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.72));
  transition:
    color 180ms ease,
    filter 180ms ease,
    font-size 760ms cubic-bezier(0.2, 0.72, 0.2, 1),
    padding 760ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.phone-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--corner-color), var(--corner-color)) left top / var(--corner-length) 1px,
    linear-gradient(180deg, var(--corner-color), var(--corner-color)) left top / 1px var(--corner-length),
    linear-gradient(270deg, var(--corner-color), var(--corner-color)) right top / var(--corner-length) 1px,
    linear-gradient(180deg, var(--corner-color), var(--corner-color)) right top / 1px var(--corner-length),
    linear-gradient(90deg, var(--corner-color), var(--corner-color)) left bottom / var(--corner-length) 1px,
    linear-gradient(0deg, var(--corner-color), var(--corner-color)) left bottom / 1px var(--corner-length),
    linear-gradient(270deg, var(--corner-color), var(--corner-color)) right bottom / var(--corner-length) 1px,
    linear-gradient(0deg, var(--corner-color), var(--corner-color)) right bottom / 1px var(--corner-length);
  background-repeat: no-repeat;
}

.phone-cta::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  pointer-events: none;
  background: linear-gradient(180deg, var(--gold-light) 0%, #efc967 32%, var(--gold-mid) 64%, var(--gold-deep) 100%);
  background-clip: text;
  color: transparent;
  opacity: 0;
  clip-path: polygon(-28% 0, -6% 0, -24% 100%, -46% 100%);
  animation: phone-gold-sweep 9s cubic-bezier(0.34, 0, 0.2, 1) infinite;
}

.phone-cta:hover,
.phone-cta:focus-visible {
  --corner-color: rgba(255, 224, 138, 0.95);
  background: linear-gradient(180deg, var(--gold-light) 0%, #efc967 30%, var(--gold-mid) 58%, var(--gold-deep) 100%);
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 10px 16px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 14px rgba(255, 224, 138, 0.34));
}

.phone-cta:focus-visible,
.email-link:focus-visible {
  outline: 3px solid var(--gold-mid);
  outline-offset: 4px;
}

.email-link {
  color: var(--soft-white);
  font-size: clamp(0.72rem, min(1.9vw, 2.1svh), 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 15px 32px rgba(0, 0, 0, 0.82);
  transition:
    color 180ms ease,
    filter 180ms ease,
    transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.email-link:hover,
.email-link:focus-visible {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-mid) 58%, var(--gold-deep));
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 224, 138, 0.34));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 2.4svh, 28px);
  z-index: 3;
  width: clamp(32px, 4vw, 46px);
  height: clamp(32px, 4vw, 46px);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%);
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
  transition: opacity 420ms ease, color 180ms ease, filter 180ms ease;
}

.scroll-cue span {
  width: 44%;
  height: 44%;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-18%) rotate(45deg);
  animation: arrow-pulse 1600ms ease-in-out infinite;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--gold-light);
  filter: drop-shadow(0 0 16px rgba(255, 224, 138, 0.36));
}

.scroll-cue:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 6px;
}

.is-loaded .scroll-cue {
  opacity: var(--scroll-cue-opacity);
}

.is-transitioning .logo-stage {
  animation: none;
  opacity: var(--hero-logo-opacity);
  transform: translateX(-50%) translateY(var(--hero-logo-y)) scale(var(--hero-logo-scale));
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.06));
}

.is-transitioning .contact {
  opacity: var(--hero-contact-opacity);
  transform: translateX(-50%) translateY(var(--hero-contact-y)) scale(var(--hero-contact-scale));
}

.is-transitioning .scroll-cue {
  opacity: 0;
  pointer-events: none;
}

.next-section {
  position: relative;
  z-index: 2;
  min-height: 260svh;
  padding: 0 clamp(24px, 7vw, 96px);
  display: block;
  overflow: clip;
  contain: paint;
  background: #000;
}

.next-section::before {
  content: "";
  position: sticky;
  top: 0;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 100svh;
  margin-left: calc(50% - 50vw);
  margin-bottom: -100svh;
  pointer-events: none;
  opacity: var(--benefits-bg-opacity);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0.5)),
    radial-gradient(ellipse at 45% 42%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.54) 76%),
    url("assets/abron-savings-background.png") center center / cover no-repeat,
    #000;
}

.benefits {
  position: sticky;
  top: clamp(92px, 15svh, 150px);
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: clamp(30px, 5svh, 58px);
}

.benefits-intro {
  margin: 0;
  display: grid;
  gap: clamp(8px, 1.25svh, 14px);
  color: var(--soft-white);
  font-size: clamp(1.42rem, min(4.4vw, 5.2svh), 3.25rem);
  font-weight: 900;
  line-height: 1.04;
  text-align: center;
  letter-spacing: -0.02em;
}

.benefits-intro span,
.benefits-list li {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

.benefits-intro span:nth-child(1) {
  opacity: var(--benefit-intro-1-opacity, 0);
  transform: translateY(var(--benefit-intro-1-y, 28px));
  filter: blur(var(--benefit-intro-1-blur, 10px));
}

.benefits-intro span:nth-child(2) {
  opacity: var(--benefit-intro-2-opacity, 0);
  transform: translateY(var(--benefit-intro-2-y, 28px));
  filter: blur(var(--benefit-intro-2-blur, 10px));
}

.benefits-intro span:nth-child(3) {
  opacity: var(--benefit-intro-3-opacity, 0);
  transform: translateY(var(--benefit-intro-3-y, 28px));
  filter: blur(var(--benefit-intro-3-blur, 10px));
}

.benefits-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, #efc967 32%, var(--gold-mid) 64%, var(--gold-deep) 100%);
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.benefits-detail {
  display: block;
}

.benefits-list {
  margin: clamp(16px, 3.2svh, 36px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1.25svh, 14px);
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--benefits-list-font-size, calc(clamp(1.04rem, min(2.22vw, 2.68svh), 1.66rem) + 5px));
  font-weight: 700;
  line-height: 1.22;
  transform: translateX(min(2cm, 5vw));
}

.benefits-list li {
  display: grid;
  grid-template-columns: 1.22em minmax(0, 1fr);
  gap: clamp(12px, 1.55vw, 20px);
  align-items: center;
}

.benefits-list li span {
  width: 0.76em;
  height: 1.55em;
  display: block;
  background: url("assets/abron-gold-slash.png") center / contain no-repeat;
  transform: translateY(-0.08em);
  transform-origin: center;
}

.benefits-list li:nth-child(1) {
  opacity: var(--benefit-item-1-opacity, 0);
  transform: translateY(var(--benefit-item-1-y, 28px));
  filter: blur(var(--benefit-item-1-blur, 10px));
}

.benefits-list li:nth-child(2) {
  opacity: var(--benefit-item-2-opacity, 0);
  transform: translateY(var(--benefit-item-2-y, 28px));
  filter: blur(var(--benefit-item-2-blur, 10px));
}

.benefits-list li:nth-child(3) {
  opacity: var(--benefit-item-3-opacity, 0);
  transform: translateY(var(--benefit-item-3-y, 28px));
  filter: blur(var(--benefit-item-3-blur, 10px));
}

.benefits-list li:nth-child(4) {
  opacity: var(--benefit-item-4-opacity, 0);
  transform: translateY(var(--benefit-item-4-y, 28px));
  filter: blur(var(--benefit-item-4-blur, 10px));
}

.benefits-list li:nth-child(5) {
  opacity: var(--benefit-item-5-opacity, 0);
  transform: translateY(var(--benefit-item-5-y, 28px));
  filter: blur(var(--benefit-item-5-blur, 10px));
}

.benefits-list li:nth-child(6) {
  opacity: var(--benefit-item-6-opacity, 0);
  transform: translateY(var(--benefit-item-6-y, 28px));
  filter: blur(var(--benefit-item-6-blur, 10px));
}

.benefits-list li:nth-child(7) {
  opacity: var(--benefit-item-7-opacity, 0);
  transform: translateY(var(--benefit-item-7-y, 28px));
  filter: blur(var(--benefit-item-7-blur, 10px));
}

.benefits-list li:nth-child(8) {
  opacity: var(--benefit-item-8-opacity, 0);
  transform: translateY(var(--benefit-item-8-y, 28px));
  filter: blur(var(--benefit-item-8-blur, 10px));
}

.plan-section {
  position: relative;
  z-index: 3;
  width: 100vw;
  max-width: 100vw;
  min-height: 370svh;
  margin-inline: calc(50% - 50vw);
  padding: clamp(76px, 8svh, 104px) 0 clamp(54px, 8svh, 92px);
  display: grid;
  place-items: start center;
  overflow-x: clip;
  overflow-y: visible;
  background: #000;
}

.plan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(#000, #000),
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0) 42%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.95) 48%, #000 100%);
}

.plan-section::after {
  content: none;
}

.plan-inner {
  position: sticky;
  top: clamp(92px, 15svh, 150px);
  z-index: 2;
  width: min(100%, 100vw);
  min-width: 0;
  justify-self: center;
  opacity: var(--plan-section-opacity);
  transform: translateY(var(--plan-section-y));
  filter: blur(var(--plan-section-blur));
  will-change: opacity, transform, filter;
}

.plan-title {
  margin: 0 auto clamp(34px, 5svh, 58px);
  display: grid;
  gap: clamp(4px, 0.7svh, 10px);
  color: var(--soft-white);
  font-size: clamp(2.05rem, min(5.2vw, 6svh), 4rem);
  font-weight: 900;
  line-height: 0.98;
  text-align: center;
  letter-spacing: -0.015em;
  padding-inline: clamp(20px, 6vw, 76px);
  opacity: var(--plan-title-opacity);
  transform: translateY(var(--plan-title-y));
  filter: blur(var(--plan-title-blur));
  will-change: opacity, transform, filter;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.86);
}

.plan-title span {
  display: block;
}

.plan-title strong {
  background: linear-gradient(180deg, var(--gold-light) 0%, #efc967 34%, var(--gold-mid) 68%, var(--gold-deep) 100%);
  background-clip: text;
  color: transparent;
  font-weight: inherit;
  text-shadow: none;
}

.plan-machine {
  width: min(98vw, 1600px);
  max-width: none;
  margin: 0;
  position: relative;
  left: 0;
  padding: clamp(12px, 1.6vw, 24px) 0 0;
  overflow: visible;
  transform: translate3d(var(--plan-machine-x, -240vw), 0, 0);
  transform-origin: 50% 50%;
  will-change: transform;
}

.plan-machine svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.plan-outro {
  width: min(92vw, 1180px);
  margin: clamp(34px, 5svh, 58px) auto 0;
  padding-inline: clamp(22px, 5vw, 72px);
  display: grid;
  gap: clamp(10px, 1.6svh, 18px);
  color: var(--soft-white);
  text-align: center;
  opacity: var(--plan-outro-opacity);
  transform: translateY(var(--plan-outro-y));
  filter: blur(var(--plan-outro-blur));
  will-change: opacity, transform, filter;
  pointer-events: none;
}

.plan-outro-title,
.plan-outro-copy {
  margin: 0;
}

.plan-outro-title {
  font-size: clamp(1.35rem, min(3.35vw, 4.15svh), 2.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.88);
}

.plan-outro-title span {
  display: block;
  margin-top: clamp(5px, 0.8svh, 10px);
  background: linear-gradient(180deg, var(--gold-light) 0%, #efc967 34%, var(--gold-mid) 68%, var(--gold-deep) 100%);
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.plan-outro-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, min(2.25vw, 2.65svh), 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.82);
}

.plan-outro-copy span {
  display: inline;
}

.plan-outro-copy span + span::before {
  content: " ";
}

.plan-gear-spin {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(var(--plan-gear-rotation, 0deg));
  will-change: transform;
}

.plan-gear-teeth {
  opacity: 0.66;
}

.plan-gear-depth {
  opacity: 0.82;
}

.plan-gear-wear {
  opacity: 0.16;
}

.plan-belt-sync {
  stroke-dashoffset: var(--plan-belt-offset, var(--belt-phase, 0px));
}

.plan-belt-rubber-tread {
  stroke-dashoffset: var(--plan-belt-rubber-offset, 0px);
}

.plan-belt-rubber-scuff {
  stroke-dashoffset: var(--plan-belt-scuff-offset, 0px);
}

.plan-gear-icon {
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 0;
  transform: scale(0.86);
  transform-box: fill-box;
  transform-origin: center;
  filter: none;
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.plan-gear-copy {
  overflow: visible;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    filter 320ms ease;
}

.plan-gear-label {
  height: 100%;
  padding: 0 22px;
  display: grid;
  grid-template-rows: 76px 108px;
  align-content: center;
  align-items: center;
  gap: 4px;
  color: var(--soft-white);
  text-align: center;
  transform: translateY(-11px);
}

.plan-gear-label h3 {
  width: 100%;
  margin: 0;
  display: grid;
  grid-auto-rows: 1.02em;
  align-content: end;
  color: var(--soft-white);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.82);
}

.plan-gear-label p {
  width: 100%;
  max-width: 276px;
  margin: 0;
  display: grid;
  grid-auto-rows: 1.08em;
  align-content: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.08;
}

.plan-gear-label span {
  display: block;
  white-space: nowrap;
}

.services-section {
  position: relative;
  isolation: isolate;
  z-index: 6;
  width: 100%;
  min-height: 620svh;
  scroll-margin-top: 82px;
  margin-top: 0;
  padding: clamp(112px, 15svh, 170px) clamp(14px, 2.4vw, 36px) clamp(120px, 16svh, 190px);
  background: #000;
  color: var(--soft-white);
  overflow: visible;
}

.services-section::before {
  content: none;
}

.services-section::after {
  content: none;
}

.services-color-reveal {
  display: none;
}

.services-heading {
  position: sticky;
  top: clamp(100px, 13svh, 132px);
  z-index: 3;
  width: min(100%, 1500px);
  margin: 0 auto clamp(26px, 4svh, 46px);
  pointer-events: none;
}

.services-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, min(6vw, 7svh), 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  white-space: nowrap;
  opacity: var(--services-title-opacity);
  transform: translateY(var(--services-title-y)) scale(calc(0.965 + var(--services-title-opacity) * 0.035));
  filter: blur(var(--services-title-blur));
  will-change: opacity, transform, filter;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 46px rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.92);
}

.services-deck {
  position: sticky;
  top: clamp(258px, 33svh, 348px);
  z-index: 2;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 0.85vw, 14px);
  transform: translateY(var(--services-deck-y));
  will-change: transform;
}

.service-card {
  --service-card-opacity: 0;
  --service-card-y: 52px;
  --service-card-blur: 12px;
  position: relative;
  width: 100%;
  height: clamp(324px, 35svh, 406px);
  min-height: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: clamp(198px, 21.8svh, 254px) minmax(118px, 0.52fr);
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #f6d681, #d89c35);
  color: #090704;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 247, 210, 0.45);
  opacity: var(--service-card-opacity);
  transform: translateY(var(--service-card-y));
  filter: blur(var(--service-card-blur));
  transition: none;
  will-change: opacity, transform, filter;
}

.service-card-media {
  position: relative;
  min-height: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  overflow: hidden;
}

.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.service-card-copy {
  padding: clamp(14px, 1.1vw, 19px) clamp(18px, 1.7vw, 26px) clamp(13px, 1vw, 17px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.72vw, 12px);
  justify-content: flex-start;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.78rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  min-height: 2.25em;
  display: flex;
  align-items: flex-start;
}

.service-card p {
  margin: 0;
  color: rgba(9, 7, 4, 0.84);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  font-weight: 700;
  line-height: 1.26;
}

.logistics-section {
  position: relative;
  z-index: 5;
  min-height: 360svh;
  padding: 0 clamp(18px, 4vw, 64px);
  display: block;
  background: #000;
  color: var(--soft-white);
  overflow: visible;
}

.logistics-section::before {
  display: none;
}

.logistics-inner {
  position: sticky;
  top: 0;
  height: 100svh;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(104px, 13svh, 150px) 0 clamp(64px, 9svh, 112px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  overflow: hidden;
}

.logistics-section h2 {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: min(100%, 1180px);
  color: #fff;
  font-size: clamp(2.45rem, min(5.4vw, 7svh), 5.4rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.28),
    0 0 54px rgba(255, 224, 138, 0.1),
    0 20px 42px rgba(0, 0, 0, 0.82);
  opacity: var(--logistics-title-opacity, 0);
  transform: translateY(var(--logistics-title-y, 0px));
  filter: none;
  will-change: opacity, transform;
}

.logistics-sequence {
  position: relative;
  width: min(100%, 1560px);
  margin: clamp(24px, 4svh, 48px) auto 0;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
  overflow: hidden;
}

.logistics-panel {
  position: absolute;
  inset: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  opacity: var(--panel-opacity, 0);
  transform: translate3d(0, var(--panel-y, 0px), var(--panel-z, 0px)) scale(var(--panel-scale, 1));
  transform-origin: 50% 50%;
  filter: blur(var(--panel-blur, 0px));
  pointer-events: none;
  will-change: opacity, transform, filter;
}

.logistics-reading {
  width: min(100%, 1120px);
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.5rem, min(3vw, 4.2svh), 3.2rem);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
}

.logistics-reading > span {
  --line-read: 0;
  display: block;
  margin: clamp(8px, 1svh, 14px) 0;
  line-height: 1.18;
  white-space: nowrap;
  color: var(--line-color, rgba(255, 255, 255, 0.72));
  text-shadow:
    0 0 calc(var(--line-read) * 10px) rgba(255, 226, 148, 0.22),
    0 0 calc(var(--line-read) * 32px) rgba(205, 139, 37, 0.28),
    0 12px 28px rgba(0, 0, 0, 0.78);
}

.logistics-reading .reading-word {
  display: inline-block;
  color: var(--word-color, rgba(255, 255, 255, 0.72));
  text-shadow:
    0 0 calc(var(--word-read, 0) * 12px) rgba(255, 226, 148, 0.26),
    0 0 calc(var(--word-read, 0) * 34px) rgba(205, 139, 37, 0.3),
    0 12px 28px rgba(0, 0, 0, 0.78);
  transition: color 80ms linear;
}

.logistics-reading-gap {
  margin-top: clamp(24px, 3.2svh, 42px) !important;
}

.logistics-reading--cleaning {
  width: min(100%, 1560px);
}

.logistics-reading--cleaning > span {
  margin-block: clamp(8px, 1svh, 14px);
}

.logistics-reading--cleaning .logistics-reading-gap {
  margin-top: clamp(66px, 8.4svh, 110px) !important;
}

.equipment-section {
  --equipment-bg-reveal: 0;
  --equipment-bg-opacity: 0;
  --equipment-title-opacity: 0;
  --equipment-title-y: 34px;
  --equipment-title-blur: 0px;
  position: relative;
  z-index: 6;
  min-height: 820svh;
  padding: 0 clamp(14px, 3.5vw, 58px);
  background: #fff;
  color: #050505;
  overflow: visible;
  isolation: isolate;
}

.equipment-section::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: clamp(420px, 62svh, 760px);
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.78) 86%, #fff 100%);
  opacity: 1;
  pointer-events: none;
}

.equipment-section::after {
  content: "";
  position: absolute;
  bottom: calc(100% - clamp(28px, 5svh, 64px));
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: clamp(150px, 24svh, 260px);
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.42) 34%, rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0) 78%);
  filter: blur(14px);
  transform: translateX(-50%);
  opacity: 0.86;
  pointer-events: none;
  display: none;
}

.equipment-inner {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100svh;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(112px, 13svh, 148px) 0 clamp(30px, 5svh, 62px);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: clamp(18px, 3.4svh, 34px);
}

.equipment-section h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(3.2rem, min(8.2vw, 10svh), 7.1rem);
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.01em;
  opacity: var(--equipment-title-opacity);
  transform: translateY(var(--equipment-title-y));
  filter: blur(var(--equipment-title-blur));
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  will-change: opacity, transform, filter;
}

.equipment-stage {
  position: relative;
  width: min(100%, 1500px);
  height: min(69svh, 720px);
  opacity: var(--equipment-stage-opacity, 0);
  transform: translateY(var(--equipment-stage-y, 32px));
  filter: blur(var(--equipment-stage-blur, 12px));
  will-change: opacity, transform, filter;
}

.equipment-item {
  --equipment-copy-opacity: 0;
  --equipment-copy-x: -110px;
  --equipment-copy-y: 0px;
  --equipment-copy-blur: 12px;
  --equipment-image-opacity: 0;
  --equipment-image-y: 34px;
  --equipment-image-scale: 0.94;
  --equipment-image-blur: 18px;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  justify-items: center;
  gap: clamp(14px, 2.4svh, 28px);
  pointer-events: none;
}

.equipment-item p {
  width: min(100%, 1200px);
  margin: 0;
  color: #050505;
  font-size: clamp(1.5rem, min(3.3vw, 4.8svh), 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
  letter-spacing: 0.005em;
  opacity: var(--equipment-copy-opacity);
  transform: translate3d(var(--equipment-copy-x), var(--equipment-copy-y), 0);
  filter: blur(var(--equipment-copy-blur));
  will-change: opacity, transform, filter;
}

.equipment-item img {
  display: block;
  width: min(100%, 1460px);
  height: min(58svh, 620px);
  object-fit: contain;
  opacity: var(--equipment-image-opacity);
  transform: translateY(var(--equipment-image-y)) scale(var(--equipment-image-scale));
  filter: blur(var(--equipment-image-blur));
  will-change: opacity, transform, filter;
}

.consulting-section {
  --consulting-title-opacity: 0;
  --consulting-title-y: 34px;
  --consulting-title-blur: 12px;
  --consulting-image-opacity: 0;
  --consulting-image-y: 34px;
  --consulting-image-scale: 0.96;
  --consulting-image-blur: 14px;
  --visualization-image-opacity: 0;
  --visualization-image-y: 34px;
  --visualization-image-scale: 0.96;
  --visualization-image-blur: 14px;
  --consulting-final-opacity: 0;
  --consulting-final-y: 34px;
  --consulting-final-scale: 0.96;
  --consulting-final-blur: 14px;
  --consulting-final-contact-opacity: 0;
  --consulting-final-contact-y: -8px;
  --consulting-final-contact-scale: 0.96;
  --consulting-final-contact-blur: 12px;
  position: relative;
  z-index: 7;
  min-height: 720svh;
  padding: 0 clamp(14px, 3.5vw, 58px);
  background: #fff;
  color: #050505;
}

.consulting-inner {
  position: sticky;
  top: 0;
  min-height: 100svh;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(104px, 13svh, 148px) 0 clamp(36px, 5svh, 70px);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: clamp(18px, 3.4svh, 36px);
}

.consulting-section h2 {
  width: min(100%, 1260px);
  margin: 0;
  color: #050505;
  font-size: clamp(2.8rem, min(6.4vw, 8.2svh), 6.1rem);
  font-weight: 900;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
  opacity: var(--consulting-title-opacity);
  transform: translateY(var(--consulting-title-y));
  filter: blur(var(--consulting-title-blur));
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  will-change: opacity, transform, filter;
}

.consulting-title-accent {
  color: var(--gold-mid);
  text-shadow:
    0 0 18px rgba(215, 161, 65, 0.24),
    0 12px 32px rgba(0, 0, 0, 0.16);
}

.consulting-stage {
  position: relative;
  width: min(100%, 1480px);
  height: min(62svh, 650px);
  display: grid;
  place-items: center;
}

.consulting-figure,
.visualization-figure {
  position: absolute;
  will-change: opacity, transform, filter;
}

.consulting-figure {
  width: min(100%, 1460px);
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.4svh, 28px);
  opacity: var(--consulting-image-opacity);
  transform: translateY(var(--consulting-image-y)) scale(var(--consulting-image-scale));
  filter: blur(var(--consulting-image-blur));
}

.visualization-figure {
  width: min(100%, 1460px);
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.8svh, 34px);
  opacity: var(--visualization-image-opacity);
  transform: translateY(var(--visualization-image-y)) scale(var(--visualization-image-scale));
  filter: blur(var(--visualization-image-blur));
}

.consulting-image,
.visualization-image {
  display: block;
  object-fit: contain;
}

.consulting-image {
  width: min(100%, 1460px);
  height: min(48svh, 520px);
}

.consulting-image-caption {
  width: min(100%, 1040px);
  margin: 0;
  color: var(--consulting-caption-color, #050505);
  font-size: clamp(1.18rem, min(2vw, 3svh), 2.25rem);
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
  text-wrap: balance;
}

.consulting-reading {
  color: #050505;
}

.consulting-reading .reading-word {
  display: inline-block;
  color: var(--word-color, #050505);
  text-shadow:
    0 0 calc(var(--word-read, 0) * 14px) rgba(215, 161, 65, 0.24),
    0 10px 28px rgba(0, 0, 0, 0.1);
  transition: color 80ms linear;
}

.visualization-image {
  width: min(100%, 1460px);
  height: min(50svh, 540px);
}

.visualization-caption {
  width: min(100%, 1180px);
  margin: 0;
  color: var(--visualization-caption-color, #050505);
  font-size: clamp(1.55rem, min(2.85vw, 4.2svh), 3.35rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.consulting-final-copy {
  width: min(100%, 1160px);
  margin: 0;
  color: #050505;
  font-size: clamp(1.9rem, min(3.35vw, 4.9svh), 4rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.consulting-final-contact {
  position: absolute;
  width: min(100%, 1260px);
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto auto;
  gap: 0;
  opacity: var(--consulting-final-contact-opacity);
  transform: translateY(var(--consulting-final-contact-y)) scale(var(--consulting-final-contact-scale));
  filter: blur(var(--consulting-final-contact-blur));
  will-change: opacity, transform, filter;
}

.consulting-final-contact img {
  display: block;
  width: clamp(250px, 35vw, 560px);
  height: auto;
  transform: translateY(-5cm);
}

.consulting-final-contact .consulting-final-copy {
  transform: translateY(-2cm);
}

.consulting-final-links {
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: clamp(12px, 2svh, 22px);
  color: #050505;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(1cm);
}

.consulting-final-phone,
.consulting-final-email {
  transition: color 220ms ease, filter 220ms ease;
}

.consulting-final-phone {
  position: relative;
  padding: clamp(11px, 1.8svh, 17px) clamp(28px, 4.8vw, 70px);
  color: #050505;
  font-size: clamp(1.85rem, min(4vw, 5.6svh), 4.55rem);
  letter-spacing: 0.11em;
}

.consulting-final-phone::before,
.consulting-final-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(#050505, #050505) left top / 18px 1px no-repeat,
    linear-gradient(#050505, #050505) left top / 1px 18px no-repeat,
    linear-gradient(#050505, #050505) right top / 18px 1px no-repeat,
    linear-gradient(#050505, #050505) right top / 1px 18px no-repeat,
    linear-gradient(#050505, #050505) left bottom / 18px 1px no-repeat,
    linear-gradient(#050505, #050505) left bottom / 1px 18px no-repeat,
    linear-gradient(#050505, #050505) right bottom / 18px 1px no-repeat,
    linear-gradient(#050505, #050505) right bottom / 1px 18px no-repeat;
  opacity: 0.55;
  transition: opacity 220ms ease, filter 220ms ease;
}

.consulting-final-email {
  color: #050505;
  font-size: clamp(1rem, min(1.75vw, 2.45svh), 1.55rem);
  letter-spacing: 0.045em;
}

.consulting-final-links a:hover,
.consulting-final-links a:focus-visible {
  color: var(--gold-mid);
  filter: drop-shadow(0 0 12px rgba(215, 161, 65, 0.28));
}

.consulting-final-phone:hover::before,
.consulting-final-phone:focus-visible::before,
.consulting-final-phone:hover::after,
.consulting-final-phone:focus-visible::after {
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(215, 161, 65, 0.25));
}

@media (max-width: 960px) {
  .logistics-reading > span {
    margin-block: clamp(6px, 1.05svh, 10px);
    line-height: 1.18;
  }
}

@media (max-width: 430px) {
  .logistics-section {
    min-height: 340svh;
  }

  .logistics-inner {
    padding: 86px 0 52px;
  }

  .logistics-sequence {
    height: auto;
    margin-top: 18px;
  }

  .logistics-panel {
    min-height: 0;
  }

  .logistics-reading {
    font-size: clamp(1.1rem, 5.45vw, 1.4rem);
    line-height: 1.16;
  }

  .logistics-reading > span,
  .logistics-reading--cleaning > span {
    margin-block: clamp(5px, 0.9svh, 8px);
    line-height: 1.16;
  }

  .logistics-reading-gap,
  .logistics-reading--cleaning .logistics-reading-gap {
    margin-top: clamp(28px, 5svh, 38px) !important;
  }

  .equipment-section {
    min-height: 720svh;
    padding-inline: 10px;
  }

  .equipment-inner {
    padding: 86px 0 46px;
    gap: 18px;
  }

  .equipment-section h2 {
    font-size: clamp(2.35rem, 13.4vw, 3.8rem);
  }

  .equipment-stage {
    width: 100%;
    height: 66svh;
  }

  .equipment-item {
    gap: 14px;
  }

  .equipment-item p {
    font-size: clamp(1.26rem, 6.7vw, 1.95rem);
    line-height: 1.08;
  }

  .equipment-item img {
    width: 112vw;
    height: min(48svh, 430px);
  }
}

@media (max-width: 360px) {
  .phone-cta {
    max-width: calc(100vw - 28px);
    padding-inline: 9px;
    font-size: clamp(1.06rem, 6.9vw, 1.32rem);
    letter-spacing: 0.006em;
  }

  .site-bar {
    padding-inline: 8px;
    grid-template-columns: minmax(52px, 0.82fr) max-content minmax(68px, 0.82fr);
    gap: 4px;
  }

  .site-bar-logo {
    width: clamp(58px, 18vw, 66px);
  }

  .site-bar-phone,
  .site-bar-email {
    font-size: clamp(0.74rem, 3.25vw, 0.86rem);
    letter-spacing: 0.006em;
  }

  .logistics-reading {
    font-size: clamp(1rem, 5.1vw, 1.18rem);
    line-height: 1.16;
  }

  .logistics-reading > span,
  .logistics-reading--cleaning > span {
    margin-block: clamp(4px, 0.8svh, 7px);
    line-height: 1.16;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .plan-gear.is-hovered .plan-gear-icon,
  .plan-gear:hover .plan-gear-icon,
  .plan-gear-copy:hover + .plan-gear-icon {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  .plan-gear.is-hovered .plan-gear-copy,
  .plan-gear:hover .plan-gear-copy,
  .plan-gear-copy:hover {
    opacity: 0;
    transform: translateY(5px) scale(0.96);
    filter: blur(4px);
  }
}

.plan-grid {
  --plan-card-size: clamp(180px, 14.9vw, 250px);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, var(--plan-card-size));
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 0.9vw, 16px);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(36px, 3.2vw, 54px) clamp(42px, 3.9vw, 64px);
  overflow: visible;
}

.plan-grid::before {
  content: "";
  position: absolute;
  inset: clamp(13px, 1.35vw, 24px) 0;
  z-index: 0;
  border: 1px solid rgba(255, 224, 138, 0.54);
  border-radius: 999px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025) 11%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.56) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 224, 138, 0.12), rgba(255, 224, 138, 0) 58%),
    repeating-linear-gradient(135deg, rgba(255, 224, 138, 0.022) 0 1px, transparent 1px 10px),
    #060503;
  box-shadow:
    inset 0 0 0 3px rgba(255, 224, 138, 0.08),
    inset 0 13px 18px rgba(255, 255, 255, 0.045),
    inset 0 -15px 30px rgba(0, 0, 0, 0.88),
    0 20px 60px rgba(0, 0, 0, 0.74),
    0 0 22px rgba(215, 161, 65, 0.18);
}

.plan-grid::after {
  content: "";
  position: absolute;
  inset: clamp(23px, 2.25vw, 38px) clamp(16px, 1.7vw, 28px);
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 224, 138, 0.38), rgba(255, 244, 184, 0.7), rgba(141, 93, 24, 0.36)) left 0 top 0 / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(141, 93, 24, 0.36), rgba(255, 244, 184, 0.62), rgba(255, 224, 138, 0.36)) left 0 bottom 0 / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 224, 138, 0.58) 0 2px, rgba(47, 42, 32, 0.92) 2px 13px, rgba(0, 0, 0, 0.88) 13px 20px, transparent 20px 29px) left top 9px / 100% 18px repeat-x,
    repeating-linear-gradient(90deg, rgba(255, 224, 138, 0.56) 0 2px, rgba(45, 40, 30, 0.92) 2px 13px, rgba(0, 0, 0, 0.88) 13px 20px, transparent 20px 29px) left bottom 9px / 100% 18px repeat-x;
  opacity: 0.88;
  filter: drop-shadow(0 0 9px rgba(255, 224, 138, 0.12));
  animation: belt-track var(--mechanical-cycle) linear infinite;
}

.plan-card {
  position: relative;
  z-index: 2;
  width: min(100%, var(--plan-card-size));
  height: var(--plan-card-size);
  padding: clamp(18px, 1.9svh, 25px) clamp(16px, 1.45vw, 22px);
  justify-self: center;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(7px, 1.05svh, 12px);
  isolation: isolate;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004) 58%, rgba(0, 0, 0, 0) 70%),
    #030303;
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 224, 138, 0.14),
    inset 0 0 0 8px rgba(255, 255, 255, 0.012),
    inset 0 0 44px rgba(0, 0, 0, 0.72);
  text-align: center;
}

.plan-card > * {
  position: relative;
  z-index: 2;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, #030303 0 60%, rgba(3, 3, 3, 0.99) 61% 66%, transparent 67%),
    conic-gradient(from 20deg, #fff8c8, #ffd76f 12%, #d89524 25%, #8f5517 38%, #f5c75e 52%, #ffe79a 66%, #b56b1c 82%, #fff1af 100%);
  clip-path: polygon(
      45.4% 3.7%,
      48.0% 0.0%,
      52.0% 0.0%,
      54.6% 3.7%,
      57.5% 4.1%,
      61.0% 1.2%,
      64.8% 2.2%,
      66.4% 6.5%,
      69.1% 7.6%,
      73.3% 5.8%,
      76.7% 7.7%,
      77.1% 12.2%,
      79.5% 14.0%,
      83.9% 13.3%,
      86.7% 16.1%,
      86.0% 20.5%,
      87.8% 22.9%,
      92.3% 23.3%,
      94.2% 26.7%,
      92.4% 30.9%,
      93.5% 33.6%,
      97.8% 35.2%,
      98.8% 39.0%,
      95.9% 42.5%,
      96.3% 45.4%,
      100.0% 48.0%,
      100.0% 52.0%,
      96.3% 54.6%,
      95.9% 57.5%,
      98.8% 61.0%,
      97.8% 64.8%,
      93.5% 66.4%,
      92.4% 69.1%,
      94.2% 73.3%,
      92.3% 76.7%,
      87.8% 77.1%,
      86.0% 79.5%,
      86.7% 83.9%,
      83.9% 86.7%,
      79.5% 86.0%,
      77.1% 87.8%,
      76.7% 92.3%,
      73.3% 94.2%,
      69.1% 92.4%,
      66.4% 93.5%,
      64.8% 97.8%,
      61.0% 98.8%,
      57.5% 95.9%,
      54.6% 96.3%,
      52.0% 100.0%,
      48.0% 100.0%,
      45.4% 96.3%,
      42.5% 95.9%,
      39.0% 98.8%,
      35.2% 97.8%,
      33.6% 93.5%,
      30.9% 92.4%,
      26.7% 94.2%,
      23.3% 92.3%,
      22.9% 87.8%,
      20.5% 86.0%,
      16.1% 86.7%,
      13.3% 83.9%,
      14.0% 79.5%,
      12.2% 77.1%,
      7.7% 76.7%,
      5.8% 73.3%,
      7.6% 69.1%,
      6.5% 66.4%,
      2.2% 64.8%,
      1.2% 61.0%,
      4.1% 57.5%,
      3.7% 54.6%,
      0.0% 52.0%,
      0.0% 48.0%,
      3.7% 45.4%,
      4.1% 42.5%,
      1.2% 39.0%,
      2.2% 35.2%,
      6.5% 33.6%,
      7.6% 30.9%,
      5.8% 26.7%,
      7.7% 23.3%,
      12.2% 22.9%,
      14.0% 20.5%,
      13.3% 16.1%,
      16.1% 13.3%,
      20.5% 14.0%,
      22.9% 12.2%,
      23.3% 7.7%,
      26.7% 5.8%,
      30.9% 7.6%,
      33.6% 6.5%,
      35.2% 2.2%,
      39.0% 1.2%,
      42.5% 4.1%
    );
  opacity: 0.82;
  filter:
    drop-shadow(0 0 7px rgba(255, 224, 138, 0.16))
    drop-shadow(0 0 14px rgba(215, 161, 65, 0.12));
  animation: gear-turn var(--mechanical-cycle) linear infinite;
}

.plan-card:nth-of-type(2)::before,
.plan-card:nth-of-type(4)::before {
  animation-direction: reverse;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 224, 138, 0.18), rgba(215, 161, 65, 0.1) 33%, rgba(215, 161, 65, 0.045) 48%, rgba(215, 161, 65, 0) 72%);
  opacity: 0;
  transform: scale(0.74);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.plan-card:hover::after,
.plan-card:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.plan-icon {
  width: clamp(42px, 3.7vw, 64px);
  height: clamp(42px, 3.7vw, 64px);
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: none;
  opacity: 0.98;
}

.plan-card:hover .plan-icon {
  filter: none;
}

.plan-card h3 {
  margin: clamp(6px, 1svh, 12px) 0 0;
  color: var(--soft-white);
  font-size: clamp(1rem, min(1.45vw, 2.05svh), 1.38rem);
  font-weight: 900;
  line-height: 1.05;
}

.plan-card p {
  max-width: 185px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.74rem, min(0.96vw, 1.48svh), 0.95rem);
  font-weight: 600;
  line-height: 1.38;
}

.is-loaded .logo-stage {
  animation:
    logo-rise 900ms cubic-bezier(0.2, 0.72, 0.2, 1) 100ms forwards,
    logo-breathe 4200ms ease-in-out 1200ms infinite;
}

.is-loaded .hero-title {
  animation: fade-up-centered 900ms cubic-bezier(0.2, 0.72, 0.2, 1) 380ms forwards;
}

.is-loaded .contact {
  animation: fade-up-centered 820ms ease 780ms forwards;
}

.is-loaded.is-transitioning .logo-stage {
  animation: none;
}

.is-loaded.is-transitioning .contact {
  animation: none;
}

@keyframes fade-up-centered {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    filter:
      drop-shadow(0 24px 30px rgba(0, 0, 0, 0.76))
      drop-shadow(0 0 13px rgba(255, 255, 255, 0.1));
  }

  50% {
    filter:
      drop-shadow(0 28px 34px rgba(0, 0, 0, 0.84))
      drop-shadow(0 0 23px rgba(255, 255, 255, 0.18));
  }
}

@keyframes arrow-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translateY(-22%) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(10%) rotate(45deg);
  }
}

@keyframes phone-gold-sweep {
  0%,
  58% {
    opacity: 0;
    clip-path: polygon(-28% 0, -6% 0, -24% 100%, -46% 100%);
  }

  62% {
    opacity: 1;
    clip-path: polygon(-28% 0, -6% 0, -24% 100%, -46% 100%);
  }

  82% {
    opacity: 1;
    clip-path: polygon(128% 0, 150% 0, 132% 100%, 110% 100%);
  }

  86% {
    opacity: 0;
    clip-path: polygon(128% 0, 150% 0, 132% 100%, 110% 100%);
  }

  100% {
    opacity: 0;
    clip-path: polygon(-28% 0, -6% 0, -24% 100%, -46% 100%);
  }
}

@keyframes gear-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes plan-gear-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes plan-belt-move {
  from {
    stroke-dashoffset: var(--belt-phase);
  }

  to {
    stroke-dashoffset: var(--belt-target);
  }
}

@keyframes belt-track {
  to {
    background-position:
      left 0 top 0,
      left 0 bottom 0,
      left -224px top 9px,
      left 224px bottom 9px;
  }
}

@keyframes belt-flow {
  to {
    stroke-dashoffset: -216;
  }
}

@keyframes belt-glint {
  to {
    stroke-dashoffset: -720;
  }
}

@media (max-width: 900px) {
  .plan-section {
    min-height: 390svh;
    padding: 92px 0 58px;
    place-items: start center;
  }

  .plan-inner {
    position: sticky;
    top: 96px;
    width: min(100%, 100vw);
  }

  .plan-title {
    margin-bottom: 30px;
    font-size: clamp(2rem, 9vw, 3.35rem);
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }

  .plan-machine {
    width: min(250vw, 1060px);
    padding-top: 8px;
  }

  .plan-machine [filter] {
    filter: none !important;
  }

  .plan-gear-teeth {
    opacity: 0.56;
  }

  .plan-gear-depth {
    opacity: 0.7;
  }

  .plan-gear-wear,
  .plan-belt-rubber-tread,
  .plan-belt-rubber-scuff {
    opacity: 0.08;
  }

  .plan-gear-label {
    grid-template-rows: 62px 92px;
    gap: 2px;
    padding: 0 24px;
    transform: translateY(-7px);
  }

  .plan-gear-label h3 {
    font-size: 34px;
  }

  .plan-gear-label p {
    max-width: 250px;
    font-size: 19px;
  }

  .services-section {
    min-height: auto;
    padding: 92px clamp(16px, 4vw, 30px) 96px;
  }

  .services-heading {
    position: relative;
    top: auto;
    margin-bottom: 42px;
  }

  .services-heading h2 {
    font-size: clamp(2.2rem, 9vw, 4rem);
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .services-deck {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    transform: none;
  }

  .service-card {
    --service-card-opacity: 1;
    --service-card-y: 0px;
    --service-card-blur: 0px;
    height: 370px;
    min-height: 0;
    grid-template-rows: minmax(205px, 0.98fr) minmax(128px, 0.48fr);
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .logistics-section {
    min-height: 360svh;
    padding-inline: clamp(16px, 4vw, 30px);
  }

  .logistics-reading {
    font-size: clamp(1.28rem, 4.2vw, 2.5rem);
  }

  .plan-grid::before,
  .plan-grid::after {
    display: none;
  }

  .plan-card {
    --plan-card-size: min(76vw, 286px);
    width: var(--plan-card-size);
    height: var(--plan-card-size);
    min-height: unset;
    padding: 22px 18px;
  }
}

@media (max-width: 520px) {
  .site-bar {
    min-height: 50px;
    padding: 10px clamp(10px, 3.2vw, 16px);
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: clamp(6px, 2vw, 10px);
  }

  .site-bar-logo {
    width: clamp(70px, 22vw, 92px);
    transform: translateY(-1px);
  }

  .site-bar-phone,
  .site-bar-email {
    font-size: clamp(0.78rem, 3.35vw, 0.98rem);
    line-height: 0.94;
    letter-spacing: 0.006em;
  }

  .site-bar-phone {
    justify-self: center;
    text-align: center;
  }

  .site-bar-email {
    justify-self: end;
    text-align: right;
  }

  .benefits {
    width: min(100%, 334px);
    gap: 26px;
  }

  .benefits-list {
    width: 100%;
    max-width: 100%;
    gap: 9px;
    font-size: var(--benefits-list-font-size, clamp(0.86rem, 4.15vw, 1rem));
    transform: translateX(clamp(6px, 2vw, 14px));
  }

  .benefits-list li {
    width: max-content;
    max-width: 100%;
    grid-template-columns: 0.86em max-content;
    gap: 8px;
    justify-content: start;
    white-space: nowrap;
  }

  .benefits-list li span {
    width: 0.54em;
    height: 1.12em;
  }

  .hero {
    background:
      radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0) 70%),
      #000;
  }

  .hero::before {
    background: url("assets/abron-landing-alpnw.png") calc(50% - clamp(16px, 7vw, 30px)) calc(100% + clamp(70px, 9svh, 92px)) / clamp(590px, 152vw, 700px) auto no-repeat;
  }

  .hero-title {
    line-height: 1.55;
  }

  .next-section {
    padding: 0 clamp(14px, 4.4vw, 30px);
  }

  .next-section::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0.5)),
      radial-gradient(ellipse at 45% 42%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.54) 76%),
      url("assets/abron-savings-background.png") 63% center / cover no-repeat,
      #000;
  }

  .benefits {
    top: 86px;
  }

  .benefits {
    gap: 34px;
  }

  .benefits-intro {
    font-size: clamp(1.65rem, 8.3vw, 2.55rem);
    line-height: 1.02;
  }

  .benefits-list {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    font-size: var(--benefits-list-font-size, clamp(0.98rem, 4.7vw, 1.24rem));
    transform: translateX(clamp(6px, 2.2vw, 18px));
  }

  .benefits-list li {
    width: max-content;
    max-width: 100%;
    grid-template-columns: 0.92em max-content;
    gap: 9px;
    justify-content: start;
    white-space: nowrap;
  }

  .benefits-list li span {
    width: 0.58em;
    height: 1.22em;
  }

  .plan-section {
    min-height: 390svh;
    padding: 86px 0 54px;
    place-items: start center;
  }

  .plan-inner {
    top: 92px;
  }

  .plan-title {
    margin-bottom: 26px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .plan-outro {
    width: 100%;
    margin-top: 34px;
    padding-inline: 18px;
  }

  .plan-outro-title {
    font-size: clamp(1.4rem, 7.2vw, 2rem);
  }

  .plan-outro-copy {
    font-size: clamp(1rem, 4.7vw, 1.24rem);
    line-height: 1.3;
    white-space: normal;
  }

  .plan-outro-copy span {
    display: block;
  }

  .plan-outro-copy span + span::before {
    content: none;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .plan-machine {
    width: min(248vw, 820px);
  }

  .plan-gear-label {
    grid-template-rows: 56px 80px;
    padding: 0 28px;
    transform: translateY(-6px);
  }

  .plan-gear-label h3 {
    font-size: 30px;
  }

  .plan-gear-label p {
    max-width: 230px;
    font-size: 17px;
  }

  .services-section {
    min-height: auto;
    scroll-margin-top: 68px;
    padding: 74px 14px 98px;
  }

  .services-heading {
    width: calc(100% - 20px);
    position: relative;
    top: auto;
    margin-bottom: 28px;
  }

  .services-heading h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .services-deck {
    position: relative;
    top: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
    transform: none;
  }

  .service-card {
    --service-card-opacity: 1;
    --service-card-y: 0px;
    --service-card-blur: 0px;
    height: auto;
    min-height: 0;
    grid-template-rows: clamp(178px, 47vw, 232px) auto;
    border-radius: 10px;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .service-card-copy {
    min-height: 126px;
    padding: 16px 18px 18px;
    gap: 10px;
  }

  .service-card h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .service-card p {
    font-size: clamp(1rem, 4.8vw, 1.22rem);
  }

  .logistics-section {
    min-height: 340svh;
    padding-inline: 14px;
  }

  .logistics-inner {
    padding: 90px 0 62px;
  }

  .logistics-section h2 {
    font-size: clamp(1.65rem, 8.3vw, 2.55rem);
    line-height: 1;
  }

  .logistics-sequence {
    min-height: 56svh;
    margin-top: 22px;
  }

  .logistics-reading {
    width: min(100%, calc(100vw - 30px));
    font-size: clamp(1.22rem, 6.05vw, 1.88rem);
    line-height: 1.16;
  }

  .logistics-reading > span {
    margin: 7px 0;
    line-height: 1.16;
    white-space: normal;
    text-wrap: balance;
  }

  .gear-belt,
  .plan-grid::before,
  .plan-grid::after {
    display: none;
  }

  .plan-card,
  .plan-card:nth-of-type(1),
  .plan-card:nth-of-type(2),
  .plan-card:nth-of-type(3),
  .plan-card:nth-of-type(4),
  .plan-card:nth-of-type(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .plan-card {
    --plan-card-size: min(86vw, 276px);
    width: var(--plan-card-size);
    height: var(--plan-card-size);
    min-height: unset;
    padding: 22px 18px;
  }

  .plan-icon {
    width: 64px;
    height: 64px;
  }

  .plan-card h3 {
    font-size: clamp(1.14rem, 5.8vw, 1.42rem);
  }

  .plan-card p {
    font-size: clamp(0.84rem, 4.2vw, 1rem);
  }
}

@media (max-width: 430px) {
  .phone-cta {
    --corner-length: 7px;
    max-width: calc(100vw - 32px);
    padding-inline: 10px;
    font-size: clamp(1.14rem, 7.05vw, 1.48rem);
    letter-spacing: 0.018em;
  }

  .benefits {
    width: min(100%, 312px);
  }

  .benefits-list {
    gap: 8px;
    font-size: var(--benefits-list-font-size, clamp(0.78rem, 3.9vw, 0.94rem));
    transform: translateX(clamp(4px, 1.7vw, 10px));
  }

  .benefits-list li {
    grid-template-columns: 0.78em max-content;
    gap: 6px;
  }

  .benefits-list li span {
    width: 0.5em;
    height: 1.06em;
  }

  .logistics-inner {
    padding: 84px 0 58px;
  }

  .logistics-sequence {
    margin-top: 16px;
  }

  .logistics-panel {
    min-height: 0;
  }

  .logistics-reading {
    width: min(100%, calc(100vw - 26px));
    font-size: clamp(1.12rem, 5.75vw, 1.44rem) !important;
    line-height: 1.16 !important;
  }

  .logistics-reading > span,
  .logistics-reading--cleaning > span {
    margin-block: clamp(5px, 0.85svh, 8px) !important;
    line-height: 1.16 !important;
    white-space: normal !important;
    text-wrap: balance;
  }

  .logistics-reading-gap,
  .logistics-reading--cleaning .logistics-reading-gap {
    margin-top: clamp(28px, 5svh, 38px) !important;
  }
}

@media (max-width: 360px) {
  .site-bar {
    min-height: 46px;
    padding: 9px clamp(8px, 3vw, 11px);
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 5px;
  }

  .site-bar-logo {
    width: clamp(64px, 22vw, 74px);
    transform: translateY(-1px);
  }

  .site-bar-phone,
  .site-bar-email {
    font-size: clamp(0.76rem, 3.35vw, 0.88rem);
    line-height: 0.94;
    letter-spacing: 0.002em;
  }

  .logistics-reading {
    width: min(100%, calc(100vw - 22px));
    font-size: clamp(1.04rem, 5.45vw, 1.24rem) !important;
    line-height: 1.16 !important;
  }

  .logistics-reading > span,
  .logistics-reading--cleaning > span {
    margin-block: clamp(4px, 0.75svh, 7px) !important;
    line-height: 1.16 !important;
    white-space: normal !important;
    text-wrap: balance;
  }

  .logistics-section h2 {
    font-size: clamp(1.42rem, 7.8vw, 2rem);
  }

  .equipment-section h2 {
    font-size: clamp(2.18rem, 12.8vw, 3.35rem);
  }

  .equipment-item p {
    font-size: clamp(1.12rem, 6.2vw, 1.55rem);
  }

  .equipment-item img {
    width: 116vw;
    height: min(46svh, 380px);
  }
}

@media (max-width: 700px) {
  .equipment-section {
    min-height: 760svh;
    padding-inline: 0;
  }

  .equipment-inner {
    min-height: 100svh;
    padding: clamp(70px, 12svh, 86px) 10px clamp(18px, 4svh, 32px);
    align-content: start;
    gap: clamp(8px, 1.8svh, 14px);
  }

  .equipment-section h2 {
    font-size: clamp(2.2rem, 11.8vw, 3.35rem);
    line-height: 0.94;
  }

  .equipment-stage {
    width: 100%;
    height: calc(100svh - clamp(148px, 26svh, 188px));
    min-height: 350px;
    max-height: 610px;
    filter: none !important;
  }

  .equipment-item {
    grid-template-rows: max-content minmax(0, 1fr);
    align-items: center;
    gap: clamp(6px, 1.6svh, 14px);
  }

  .equipment-item p {
    width: min(92vw, 420px);
    font-size: clamp(1.14rem, 5.9vw, 1.62rem);
    line-height: 1.08;
    filter: none !important;
  }

  .equipment-item img {
    width: min(96vw, 460px);
    height: min(45svh, 340px);
    max-height: calc(100svh - 240px);
    filter: none !important;
  }

  .consulting-section {
    min-height: 650svh;
    padding-inline: 0;
  }

  .consulting-inner {
    padding: clamp(70px, 12svh, 86px) 10px clamp(22px, 4svh, 34px);
    gap: clamp(10px, 2svh, 18px);
  }

  .consulting-section h2 {
    font-size: clamp(2rem, 10.4vw, 3.2rem);
    line-height: 1;
  }

  .consulting-stage {
    width: 100%;
    height: calc(100svh - clamp(176px, 30svh, 222px));
    min-height: 320px;
  }

  .consulting-figure {
    width: min(96vw, 520px);
    gap: clamp(10px, 2svh, 16px);
    filter: none !important;
  }

  .visualization-figure {
    width: min(96vw, 520px);
    gap: clamp(10px, 2svh, 16px);
    filter: none !important;
  }

  .consulting-image,
  .visualization-image {
    width: min(96vw, 520px);
    height: min(48svh, 390px);
    max-height: calc(100svh - 210px);
    filter: none !important;
  }

  .consulting-image-caption {
    width: min(92vw, 440px);
    font-size: clamp(1.08rem, 5.2vw, 1.42rem);
    line-height: 1.16;
  }

  .visualization-caption {
    width: min(92vw, 480px);
    font-size: clamp(1.2rem, 5.9vw, 1.7rem);
    line-height: 1.08;
  }

  .consulting-final-copy {
    width: min(90vw, 460px);
    font-size: clamp(1.16rem, 5.85vw, 1.7rem);
    line-height: 1.08;
  }

  .consulting-final-contact {
    width: min(94vw, 460px);
    transform: translateY(var(--consulting-final-contact-y)) scale(var(--consulting-final-contact-scale));
    filter: none !important;
  }

  .consulting-final-contact img {
    width: clamp(170px, 56vw, 280px);
    transform: translateY(-18svh);
  }

  .consulting-final-contact .consulting-final-copy {
    transform: translateY(-8svh);
  }

  .consulting-final-links {
    gap: clamp(8px, 1.8svh, 14px);
    transform: translateY(4svh);
  }

  .consulting-final-phone {
    padding: 9px clamp(20px, 8vw, 42px);
    font-size: clamp(1.35rem, 7.2vw, 2.2rem);
    letter-spacing: 0.08em;
  }

  .consulting-final-email {
    font-size: clamp(0.9rem, 4.15vw, 1.16rem);
    letter-spacing: 0.025em;
  }
}

@media (max-width: 380px) {
  .equipment-inner {
    padding-top: clamp(64px, 11svh, 74px);
    gap: 8px;
  }

  .equipment-section h2 {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .equipment-stage {
    height: calc(100svh - 132px);
    min-height: 330px;
  }

  .equipment-item p {
    font-size: clamp(1.02rem, 5.65vw, 1.34rem);
    line-height: 1.08;
  }

  .equipment-item img {
    width: min(96vw, 370px);
    height: min(43svh, 285px);
    max-height: calc(100svh - 220px);
  }

  .consulting-inner {
    padding-top: clamp(64px, 11svh, 74px);
  }

  .consulting-section h2 {
    font-size: clamp(1.75rem, 9.5vw, 2.45rem);
  }

  .consulting-stage {
    height: calc(100svh - 164px);
    min-height: 300px;
  }

  .consulting-figure {
    width: min(96vw, 360px);
    gap: 10px;
  }

  .visualization-figure {
    width: min(96vw, 360px);
    gap: 10px;
  }

  .consulting-image,
  .visualization-image {
    width: min(96vw, 360px);
    height: min(42svh, 270px);
    max-height: calc(100svh - 205px);
  }

  .consulting-image-caption {
    font-size: clamp(0.96rem, 5.05vw, 1.14rem);
    line-height: 1.16;
  }

  .visualization-caption {
    font-size: clamp(1.05rem, 5.6vw, 1.34rem);
    line-height: 1.08;
  }

  .consulting-final-copy {
    font-size: clamp(1.02rem, 5.45vw, 1.32rem);
    line-height: 1.08;
  }

  .consulting-final-contact {
    width: min(94vw, 350px);
    transform: translateY(var(--consulting-final-contact-y)) scale(var(--consulting-final-contact-scale));
  }

  .consulting-final-contact img {
    width: clamp(142px, 50vw, 190px);
    transform: translateY(-15svh);
  }

  .consulting-final-contact .consulting-final-copy {
    transform: translateY(-7svh);
  }

  .consulting-final-links {
    gap: 8px;
    transform: translateY(3svh);
  }

  .consulting-final-phone {
    padding: 8px clamp(16px, 7vw, 28px);
    font-size: clamp(1.12rem, 6.5vw, 1.55rem);
    letter-spacing: 0.06em;
  }

  .consulting-final-phone::before,
  .consulting-final-phone::after {
    background:
      linear-gradient(#050505, #050505) left top / 12px 1px no-repeat,
      linear-gradient(#050505, #050505) left top / 1px 12px no-repeat,
      linear-gradient(#050505, #050505) right top / 12px 1px no-repeat,
      linear-gradient(#050505, #050505) right top / 1px 12px no-repeat,
      linear-gradient(#050505, #050505) left bottom / 12px 1px no-repeat,
      linear-gradient(#050505, #050505) left bottom / 1px 12px no-repeat,
      linear-gradient(#050505, #050505) right bottom / 12px 1px no-repeat,
      linear-gradient(#050505, #050505) right bottom / 1px 12px no-repeat;
  }

  .consulting-final-email {
    font-size: clamp(0.78rem, 3.9vw, 0.96rem);
    letter-spacing: 0.02em;
  }
}

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

  .logo-stage,
  .hero-title,
  .contact,
  .scroll-cue {
    opacity: 1;
    transform: translateX(-50%);
  }

  .scroll-cue span {
    animation: none;
  }

  .phone-cta::after {
    animation: none;
  }

  .benefits-intro span,
  .benefits-list li,
  .benefits-list li span {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
