:root {
  --font-body: "Sora", sans-serif;
  --font-display: "Barlow Condensed", sans-serif;
  --fs-display-xl: clamp(2.4rem, 5vw, 4.4rem);
  --fs-display-lg: clamp(1.95rem, 3.4vw, 3rem);
  --fs-title-md: clamp(1.55rem, 2.4vw, 2.2rem);
  --fs-title-sm: clamp(1.3rem, 2vw, 1.75rem);
  --fs-body: 0.96rem;
  --fs-body-sm: 0.84rem;
  --fs-label: 0.74rem;
  --fs-micro: 0.68rem;
  --lh-tight: 0.94;
  --lh-body: 1.5;
  --lh-relaxed: 1.58;
  --text-measure: 58ch;
  --ink-950: #060a0c;
  --ink-900: #0a1216;
  --ink-850: #0d161b;
  --ink-700: #1f2a33;
  --ink-500: #44535d;
  --mint-500: #22d9b7;
  --mint-400: #65f0d4;
  --mint-300: #aef9e8;
  --mint-200: #d6fff4;
  --sand-100: #f2f6f4;
  --panel: rgba(255, 255, 255, 0.94);
  --line: rgba(33, 81, 69, 0.24);
  --line-strong: rgba(100, 240, 208, 0.34);
  --shadow-lg: 0 38px 80px rgba(1, 8, 10, 0.28);
  --shadow-md: 0 20px 44px rgba(5, 21, 18, 0.18);
  --shadow-sm: 0 10px 20px rgba(5, 21, 18, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
  --hero-title-size-desktop: clamp(2.4rem, 4.9vw, 4.8rem);
  --hero-title-size-tablet: clamp(2.1rem, 5.4vw, 3.4rem);
  --hero-title-size-mobile: clamp(1.8rem, 8vw, 2.35rem);
  --hero-subtitle-size: clamp(0.98rem, 1.22vw, 1.2rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #10231b;
  background:
    radial-gradient(circle at 8% -6%, rgba(73, 237, 202, 0.18), transparent 34%),
    radial-gradient(circle at 96% 8%, rgba(95, 174, 255, 0.1), transparent 26%),
    radial-gradient(circle at 50% 105%, rgba(68, 164, 136, 0.16), transparent 40%),
    linear-gradient(180deg, #eef5f1 0%, #f7fbf9 45%, #edf6f1 100%);
}

.shell {
  width: min(1220px, 94%);
  margin: 0 auto;
}

.page-shell {
  width: min(1180px, 94%);
  margin: 1.2rem auto 0;
  position: relative;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: -18px -12px auto;
  height: 260px;
  background:
    radial-gradient(circle at 18% 35%, rgba(154, 255, 229, 0.38), transparent 45%),
    radial-gradient(circle at 82% 42%, rgba(118, 215, 255, 0.2), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 120;
  background: linear-gradient(90deg, var(--mint-400), #c2ffef);
  box-shadow: 0 0 18px rgba(36, 232, 193, 0.8);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.site-header.is-solid,
body:not([data-page="home"]) .site-header {
  background: rgba(7, 15, 19, 0.88);
  border-bottom-color: rgba(136, 238, 211, 0.36);
  box-shadow: 0 16px 38px rgba(3, 11, 14, 0.4);
  backdrop-filter: blur(10px);
}

.header-wave {
  position: absolute;
  inset: 0 0 auto;
  height: 110px;
  background: linear-gradient(180deg, rgba(8, 15, 20, 0.94) 0%, rgba(8, 15, 20, 0.84) 58%, rgba(8, 15, 20, 0) 100%);
  clip-path: none;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.site-header.is-solid .header-wave,
body:not([data-page="home"]) .site-header .header-wave {
  opacity: 0;
  transform: translateY(-16px);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0.2rem 0.4rem;
}

.brand {
  position: relative;
  display: inline-block;
  overflow: hidden;
  max-width: 250px;
}

.brand.brand--intro {
  opacity: 0;
  transform: translateX(-18px);
}

.brand.brand--intro.is-in {
  animation: brand-slide-in 560ms var(--ease) both;
}

.brand img {
  width: min(236px, 42vw);
  max-height: 68px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

.brand::after {
  content: none;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(191, 255, 241, 0.7);
  background: rgba(9, 22, 28, 0.76);
  color: #edfffa;
  padding: 0.52rem 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.12rem;
}

.nav-list a,
.mega-trigger {
  text-decoration: none;
  color: #f3fffc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-label);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  padding: 0.14rem 0;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.44);
  transition: color 180ms var(--ease), opacity 180ms var(--ease), border-color 180ms var(--ease);
}

.nav-list a:hover,
.mega-trigger:hover {
  color: #bafcf0;
  border-bottom-color: #84efd7;
}

.nav-list a.is-active,
.mega-trigger.is-active {
  color: #bafcf0;
  border-bottom-color: #84efd7;
}

/* When another nav item is hovered/focused, hand off the active underline momentarily. */
.nav-list:has(a:hover, .mega-trigger:hover) a.is-active:not(:hover),
.nav-list:has(a:hover, .mega-trigger:hover) .mega-trigger.is-active:not(:hover),
.nav-list:has(a:focus-visible, .mega-trigger:focus-visible) a.is-active:not(:focus-visible),
.nav-list:has(a:focus-visible, .mega-trigger:focus-visible) .mega-trigger.is-active:not(:focus-visible) {
  color: #f3fffc;
  border-bottom-color: transparent;
}

.nav-item {
  position: relative;
}

.nav-item.has-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  padding: 1.3rem 1.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
  background:
    linear-gradient(145deg, rgba(9, 19, 24, 0.97), rgba(15, 35, 43, 0.94));
  border: 1px solid rgba(137, 241, 214, 0.38);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  color: #e9fff9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
}

.nav-item.is-open .mega-menu,
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: var(--fs-title-md);
  line-height: var(--lh-tight);
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  margin-bottom: 0.42rem;
  color: #d8fbf3;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-body);
  text-shadow: none;
  font-weight: 500;
}

.mega-menu a:hover {
  color: #8ef8df;
}

.mega-menu--products {
  width: min(360px, 92vw);
  padding: 0.86rem 0.94rem;
  grid-template-columns: 1fr;
  gap: 0.1rem;
}

.mega-menu--products a {
  margin-bottom: 0;
  padding: 0.3rem 0.14rem;
  font-weight: 600;
}

.header-icons {
  display: flex;
  gap: 0.4rem;
  justify-self: end;
}

.icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(198, 255, 243, 0.48);
  background: rgba(7, 18, 23, 0.56);
  color: #e7fff9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(198, 255, 243, 0.82);
  background: rgba(13, 35, 40, 0.78);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-btn svg.icon-btn__search {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search {
  position: absolute;
  top: calc(100% + 0.22rem);
  right: clamp(0.36rem, 2.2vw, 2.2rem);
  width: min(480px, calc(100vw - 1rem));
  padding: 0.56rem;
  border-radius: 14px;
  border: 1px solid rgba(165, 255, 234, 0.45);
  background: linear-gradient(145deg, rgba(8, 18, 23, 0.97), rgba(15, 33, 40, 0.95));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  z-index: 3;
}

.site-header.search-open .header-search {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-search__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.44rem;
  align-items: center;
}

.header-search__input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(177, 255, 237, 0.34);
  border-radius: 9px;
  background: rgba(5, 14, 18, 0.78);
  color: #f0fff9;
  padding: 0.5rem 0.68rem;
  font: inherit;
}

.header-search__input::placeholder {
  color: rgba(209, 255, 245, 0.7);
}

.header-search__input:focus {
  outline: none;
  border-color: rgba(168, 255, 236, 0.7);
  box-shadow: 0 0 0 2px rgba(83, 240, 204, 0.24);
}

.header-search__submit {
  min-height: 38px;
  border: 1px solid rgba(171, 255, 237, 0.56);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(18, 52, 60, 0.9), rgba(20, 70, 78, 0.92));
  color: #dcfff6;
  padding: 0.48rem 0.74rem;
  font-size: var(--fs-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-search__submit:hover {
  border-color: rgba(178, 255, 239, 0.86);
  color: #f1fffb;
}

.header-search__status {
  margin: 0.42rem 0 0;
  min-height: 1.1em;
  color: #c8fff3;
  font-size: var(--fs-label);
  letter-spacing: 0.01em;
}

.header-search__results {
  margin-top: 0.5rem;
  max-height: min(52vh, 320px);
  overflow: auto;
  display: grid;
  gap: 0.34rem;
  padding-right: 0.1rem;
}

.header-search__results[hidden] {
  display: none;
}

.header-search__result {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.62rem;
  align-items: start;
  padding: 0.56rem 0.58rem;
  border: 1px solid rgba(160, 255, 234, 0.24);
  border-radius: 11px;
  background: linear-gradient(150deg, rgba(6, 16, 21, 0.9), rgba(8, 24, 30, 0.82));
  color: #edfff9;
  text-decoration: none;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.header-search__result:hover {
  border-color: rgba(176, 255, 239, 0.84);
  background: linear-gradient(150deg, rgba(8, 21, 27, 0.96), rgba(11, 32, 39, 0.9));
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.header-search__result-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid rgba(169, 255, 236, 0.32);
  object-fit: cover;
  background: rgba(4, 15, 18, 0.72);
}

.header-search__result-thumb--placeholder {
  display: block;
  background: linear-gradient(145deg, rgba(24, 45, 53, 0.85), rgba(13, 24, 30, 0.85));
}

.header-search__result-body {
  display: grid;
  gap: 0.2rem;
}

.header-search__result-title {
  font-size: var(--fs-body-sm);
  font-weight: 700;
  line-height: 1.22;
}

.header-search__result-meta {
  color: #9af2dd;
  font-size: var(--fs-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-search__result-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.34rem;
  margin-top: 0.06rem;
}

.header-search__price-chip {
  display: grid;
  gap: 0.06rem;
  padding: 0.28rem 0.38rem;
  border: 1px solid rgba(163, 255, 235, 0.42);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(19, 66, 66, 0.52), rgba(9, 36, 42, 0.6));
}

.header-search__price-chip--pickup {
  border-color: rgba(179, 255, 240, 0.36);
  background: linear-gradient(145deg, rgba(20, 44, 71, 0.48), rgba(10, 31, 40, 0.58));
}

.header-search__price-label {
  color: #b7fff1;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.header-search__price-value {
  color: #f0fff9;
  font-size: var(--fs-body-sm);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.header-search__result-desc {
  color: #bbddd4;
  font-size: var(--fs-micro);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-search__empty {
  margin: 0;
  padding: 0.5rem;
  border: 1px dashed rgba(170, 255, 237, 0.36);
  border-radius: 9px;
  color: #d0fff4;
  font-size: var(--fs-label);
  line-height: 1.3;
}

.header-search__view-all {
  display: inline-flex;
  align-items: center;
  margin-top: 0.46rem;
  border: 1px solid rgba(173, 255, 237, 0.54);
  border-radius: 9px;
  padding: 0.34rem 0.56rem;
  color: #d9fff5;
  font-size: var(--fs-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: rgba(12, 34, 40, 0.7);
}

.header-search__view-all:hover {
  border-color: rgba(186, 255, 242, 0.82);
  color: #f2fffb;
}

.header-search__view-all[hidden] {
  display: none;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202, 255, 244, 0.7);
  background: linear-gradient(140deg, #7ff7dc, #3fd9bb);
  color: #043128;
  font-size: var(--fs-micro);
  font-weight: 800;
  line-height: 1;
  padding: 0 0.24rem;
}

.hero-showcase {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 26px 54px rgba(7, 24, 28, 0.16);
}


.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: var(--hero-focal, center 52%);
  opacity: 0;
  transform: scale(1.02) translate3d(0, 0, 0);
  transition: opacity 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
  backface-visibility: hidden;
}

.hero-slide.is-active {
  will-change: opacity, transform;
  opacity: 1;
  animation: hero-slide-pan 5600ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-overlay {
  background:
    radial-gradient(circle at 16% 26%, rgba(187, 255, 240, 0.2), transparent 45%),
    linear-gradient(102deg, rgba(8, 24, 24, 0.6) 0%, rgba(8, 24, 24, 0.22) 44%, rgba(8, 24, 24, 0.42) 100%),
    linear-gradient(180deg, rgba(4, 10, 13, 0.24), rgba(4, 10, 13, 0.12) 36%, rgba(4, 10, 13, 0.4));
  transition: transform 260ms var(--ease);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: min(1240px, 93%);
  margin: 0 auto;
  padding: 7.2rem 0 2.8rem;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.84rem;
  max-width: min(680px, 92vw);
  padding: 1.38rem 1.5rem 1.32rem;
  border: 1px solid rgba(211, 255, 244, 0.24);
  border-radius: 24px;
  background: rgba(8, 29, 28, 0.34);
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 24px rgba(2, 10, 11, 0.16);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(187, 255, 240, 0.12), rgba(187, 255, 240, 0.01) 46%, rgba(187, 255, 240, 0.08));
  filter: blur(3px);
  opacity: 0.42;
}

.hero-eyebrow {
  margin: 0;
  color: #dcfff8;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(1, 8, 8, 0.22);
}

.hero-title {
  margin: 0;
  max-width: 17ch;
  color: #f6fffd;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.25vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.hero-trust-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  text-decoration: none;
  color: #ecfffb;
  border: 1px solid rgba(185, 255, 238, 0.45);
  background: linear-gradient(145deg, rgba(8, 36, 33, 0.56), rgba(6, 26, 25, 0.48));
  box-shadow: 0 8px 18px rgba(4, 15, 15, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.64rem;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.hero-trust-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(190, 255, 239, 0.82);
  background: linear-gradient(145deg, rgba(9, 45, 39, 0.62), rgba(6, 30, 28, 0.54));
  box-shadow: 0 12px 22px rgba(4, 15, 15, 0.26);
}

.hero-trust-badge__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  color: #89f8df;
  letter-spacing: 0.07em;
  font-size: 0.76rem;
  line-height: 1;
}

.hero-trust-badge__star {
  display: inline-block;
  transform-origin: center;
  text-shadow: 0 0 0 rgba(137, 248, 223, 0);
  animation: hero-star-glow 1.9s ease-in-out infinite;
}

.hero-trust-badge__star:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-trust-badge__star:nth-child(3) {
  animation-delay: 0.32s;
}

.hero-trust-badge__star:nth-child(4) {
  animation-delay: 0.48s;
}

.hero-trust-badge__star:nth-child(5) {
  animation-delay: 0.64s;
}

.hero-trust-badge__text {
  color: #e9fffa;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0;
  max-width: 48ch;
  color: rgba(235, 255, 250, 0.94);
  font-size: clamp(0.97rem, 1.14vw, 1.12rem);
  line-height: var(--lh-body);
  text-wrap: pretty;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions .btn {
  min-height: 46px;
  padding-inline: 1.12rem;
}

.hero-actions .btn-secondary {
  color: #f2fffc;
  border-color: rgba(191, 255, 241, 0.7);
  background: rgba(8, 33, 32, 0.52);
  box-shadow: inset 0 0 0 1px rgba(191, 255, 241, 0.26);
}

.hero-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.hero-support span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.34rem 0.68rem;
  border: 1px solid rgba(213, 255, 243, 0.34);
  border-radius: 999px;
  background: rgba(8, 31, 31, 0.26);
  color: #effffb;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-controls {
  display: none;
}

.hero-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 1px solid rgba(226, 255, 248, 0.92);
  border-radius: 999px;
  background: rgba(224, 255, 247, 0.38);
  box-shadow: 0 0 0 0 rgba(156, 254, 230, 0);
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.hero-dot:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(180, 255, 238, 0.2);
}

.hero-dot.is-active {
  background: #82f7df;
  border-color: #d5fff5;
  box-shadow: 0 0 0 3px rgba(158, 255, 233, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.reveal-text {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 560ms var(--ease) var(--reveal-text-delay, 120ms),
    transform 560ms var(--ease) var(--reveal-text-delay, 120ms);
}

.reveal.in .reveal-text {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-1 {
  --reveal-text-delay: 120ms;
}

.reveal-stagger-2 {
  --reveal-text-delay: 200ms;
}

.reveal-stagger-3 {
  --reveal-text-delay: 280ms;
}

.reveal-stagger-4 {
  --reveal-text-delay: 360ms;
}

.reveal-stagger-5 {
  --reveal-text-delay: 440ms;
}

.reveal-stagger-6 {
  --reveal-text-delay: 520ms;
}

.value-strip {
  width: min(1180px, 94%);
  margin: 1.12rem auto 0;
  border: 1px solid rgba(106, 218, 189, 0.34);
  border-radius: var(--radius-xl);
  padding: 1rem;
  background:
    radial-gradient(circle at 12% -10%, rgba(149, 255, 228, 0.36), transparent 34%),
    radial-gradient(circle at 88% 130%, rgba(104, 211, 255, 0.16), transparent 36%),
    linear-gradient(150deg, rgba(247, 255, 252, 0.97), rgba(234, 248, 243, 0.97));
  box-shadow: var(--shadow-md);
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.value-strip__item {
  border: 1px solid rgba(52, 120, 101, 0.2);
  border-radius: 14px;
  padding: 0.84rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(9, 29, 25, 0.08);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.value-strip__item:hover {
  transform: translateY(-2px);
  border-color: rgba(80, 212, 178, 0.48);
  box-shadow: 0 14px 28px rgba(9, 29, 25, 0.14);
}

.value-strip__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(83, 196, 166, 0.42);
  border-radius: 11px;
  color: #12725f;
  background: linear-gradient(160deg, rgba(219, 255, 246, 0.98), rgba(237, 255, 250, 0.96));
}

.value-strip__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-strip__item h2 {
  margin: 0.68rem 0 0.34rem;
  color: #0d3e34;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 0.01em;
  font-size: var(--fs-title-md);
}

.value-strip__item p {
  margin: 0;
  color: #1b5a4d;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

/* Center marketing copy where it improves scanability without hurting form usability. */
.value-strip__item,
.card,
.banner,
.ops article,
.ops ol,
.trust-card,
.contact > div,
.subpage-hero,
.group,
.about-grid article,
.timeline-block,
.track-card,
.cta-band {
  text-align: center;
}

.value-strip__item p,
.card p,
.banner h2,
.ops article p,
.trust-card p,
.contact > div p,
.subpage-hero p,
.about-grid article p,
.timeline-block p,
.track-card p,
.cta-band p {
  margin-inline: auto;
  max-width: var(--text-measure);
}

.banner {
  justify-content: center;
  text-align: center;
}

.banner > div {
  display: grid;
  justify-items: center;
}

.ops ol {
  padding-left: 0;
}

.ops li {
  text-align: center;
}

.trust-badges {
  justify-content: center;
}

.chips {
  justify-content: center;
}

.product-grid article {
  text-align: center;
}

.product-card-link__actions {
  justify-content: center;
}

.product-card-link__cta {
  align-self: center;
}

.product-card-link__quote {
  align-self: center;
}

.quote-form,
.quote-form label,
.quote-form input,
.quote-form textarea,
.quote-status,
.form-legal,
.cart-shell,
.cart-shell__items,
.cart-shell__form,
.cart-shell__grid,
.cart-shell__grid label,
.cart-shell__summary-row,
.cart-shell__checkout-summary,
.product-detail,
.product-detail__crumbs,
.product-detail__layout,
.product-detail__info,
.product-detail__specs,
.product-detail__related,
.product-detail__calculator,
.product-detail__calculator-field {
  text-align: left;
}

.cards,
.ops,
.about-grid,
.timeline-block,
.track-card {
  display: grid;
  gap: 1rem;
}


.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.ops article,
.ops ol,
.contact,
.group,
.about-grid article,
.timeline-block,
.track-card {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(241, 250, 246, 0.96));
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.card {
  padding: 1rem;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 46px rgba(8, 24, 20, 0.22);
}

.card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.card h3,
.group h2,
.subpage-hero h1,
.banner h2,
.ops h3,
.contact h3,
.about-grid h2,
.timeline-block h2,
.track-card h2,
.cta-band h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
}

.card h3,
.ops h3,
.contact h3,
.about-grid h2,
.timeline-block h2,
.track-card h2,
.cta-band h3,
.banner h2 {
  font-size: var(--fs-display-lg);
}

.text-link {
  color: #0f6b5a;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: #0c5143;
}

.banner {
  margin-top: 1.2rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(122, 227, 202, 0.4);
  background:
    linear-gradient(132deg, rgba(220, 255, 246, 0.92), rgba(245, 255, 252, 0.96));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
}

.process {
  margin-top: 1.2rem;
  border: 1px solid rgba(122, 227, 202, 0.44);
  background: linear-gradient(145deg, rgba(229, 255, 247, 0.95), rgba(248, 255, 252, 0.97));
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  display: grid;
  gap: 0.92rem;
}

.process__intro {
  text-align: center;
}

.process__intro h2 {
  margin: 0.2rem 0 0.36rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
  font-size: var(--fs-display-lg);
}

.process__intro p {
  margin: 0;
  max-width: var(--text-measure);
  margin-inline: auto;
  color: #1d594d;
  line-height: var(--lh-body);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.66rem;
}

.process__step {
  border: 1px solid rgba(37, 99, 83, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(8, 24, 20, 0.11);
  border-radius: 14px;
  padding: 0.72rem;
  text-align: center;
  will-change: transform, box-shadow, border-color;
}

.process__step-num {
  margin: 0;
  color: #0f7a63;
  font-family: var(--font-display);
  font-size: var(--fs-title-md);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.process__step h3 {
  margin: 0.32rem 0 0.3rem;
  color: #103f34;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
  font-size: var(--fs-title-sm);
}

.process__step p {
  margin: 0;
  color: #205f52;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.process__pickup {
  border: 1px solid rgba(45, 108, 91, 0.22);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.93), rgba(241, 252, 247, 0.96));
  box-shadow: 0 8px 20px rgba(8, 24, 20, 0.09);
  border-radius: 14px;
  padding: 0.8rem;
  text-align: center;
}

.process__pickup h3 {
  margin: 0 0 0.34rem;
  color: #103f34;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
  font-size: var(--fs-title-md);
}

.process__pickup p {
  margin: 0.22rem auto;
  max-width: var(--text-measure);
  color: #1f5c4f;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.process__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.58rem;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal.in .process__step {
    animation: process-step-flow 5.4s var(--ease) infinite;
  }

  .reveal.in .process__step:nth-child(2) {
    animation-delay: 0.75s;
  }

  .reveal.in .process__step:nth-child(3) {
    animation-delay: 1.5s;
  }
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: #0f6a59;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.78rem 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  color: #052319;
  border-color: rgba(95, 240, 210, 0.62);
  background: linear-gradient(130deg, #8ef8df, #42d7b8);
  box-shadow: 0 10px 22px rgba(43, 197, 162, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(24, 156, 127, 0.38);
}

.btn-secondary {
  color: #0b5144;
  border-color: #9fead5;
  background: #effff8;
  box-shadow: var(--shadow-sm);
}

.ops {
  margin-top: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.ops article,
.ops ol {
  margin: 0;
  padding: 1.05rem;
}

.ops ol {
  list-style: none;
}

.ops li {
  border-bottom: 1px solid #d7efe5;
  padding: 0.66rem 0;
}

.ops li:last-child {
  border-bottom: 0;
}

.contact {
  margin-top: 1.2rem;
  margin-bottom: 4rem;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.72rem;
}

.quote-form label {
  display: grid;
  gap: 0.34rem;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #bde7d8;
  background: #f8fffc;
  padding: 0.66rem;
  font: inherit;
  border-radius: 10px;
}

.quote-form .full,
.form-actions,
.quote-status {
  grid-column: 1 / -1;
}

.form-legal {
  grid-column: 1 / -1;
  margin: 0;
  color: #2a5f53;
  font-size: var(--fs-micro);
  line-height: var(--lh-body);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.quote-status {
  min-height: 1.1rem;
  color: #0f8a75;
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.subpage-main {
  padding-top: 5.6rem;
}

.subpage-hero {
  width: min(1180px, 94%);
  margin: 0 auto;
  border: 1px solid rgba(122, 227, 202, 0.42);
  background:
    linear-gradient(130deg, rgba(224, 255, 246, 0.95), rgba(249, 255, 252, 0.96));
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  border-radius: var(--radius-xl);
}

.subpage-hero h1 {
  margin: 0.35rem 0 0.72rem;
  font-size: var(--fs-display-xl);
}

.subpage-hero p {
  margin: 0;
  max-width: var(--text-measure);
  line-height: var(--lh-body);
}

body[data-page="cart"] .subpage-hero {
  text-align: center;
}

body[data-page="cart"] .subpage-hero p {
  margin-inline: auto;
}

body[data-page="services"] .subpage-hero {
  text-align: center;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
}

body[data-page="services"] .subpage-hero h1 {
  margin: 0;
  font-size: var(--fs-display-lg);
  letter-spacing: 0.04em;
}

body[data-page="services"] .subpage-hero p {
  margin: 0.45rem auto 0;
  max-width: var(--text-measure);
  font-size: var(--fs-body);
}

.chips {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chips a {
  text-decoration: none;
  border: 1px solid rgba(126, 227, 202, 0.48);
  background: rgba(240, 255, 249, 0.98);
  color: #0f6555;
  padding: 0.44rem 0.72rem;
  font-weight: 700;
  border-radius: 999px;
}

.chips a:hover {
  border-color: rgba(84, 215, 181, 0.65);
}

.group {
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
}

.group h2 {
  margin: 0 0 0.82rem;
  font-size: var(--fs-display-lg);
}

.products-section + .products-section {
  margin-top: 1.18rem;
  padding-top: 1.08rem;
  border-top: 1px solid rgba(105, 215, 186, 0.34);
}

.section-anchor-alias {
  display: block;
  height: 0;
}

.subgroup-title {
  margin: 0.2rem 0 0.85rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-title-md);
}

.catalog-divider {
  margin: 1rem 0 0.85rem;
  border: 1px solid rgba(122, 227, 202, 0.44);
  background: linear-gradient(130deg, rgba(226, 255, 247, 0.98), rgba(243, 255, 251, 0.98));
  padding: 0.65rem 0.75rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-title-md);
  border-radius: 12px;
}

body[data-page="products"] #decorative-landscape-rock,
body[data-page="products"] #construction-rock,
body[data-page="products"] #topsoil-dirt,
body[data-page="products"] #mulch,
body[data-page="products"] #compost,
body[data-page="products"] #decorative-rock,
body[data-page="products"] #topsoils-composts-mulch,
body[data-page="products"] #crushed-rock {
  scroll-margin-top: 7.2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.product-grid article {
  border: 1px solid rgba(40, 93, 79, 0.2);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background-color 260ms var(--ease);
  border-radius: 14px;
}

.product-grid article > * {
  position: relative;
  z-index: 1;
}

.product-grid article.product-card-link {
  cursor: pointer;
}

.product-grid article.product-card-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0) 20%, rgba(174, 255, 234, 0.58) 50%, rgba(255, 255, 255, 0) 78%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.product-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 232, 198, 0.56);
  box-shadow: 0 24px 42px rgba(6, 30, 22, 0.2);
}

.product-grid article.product-card-link:hover,
.product-grid article.product-card-link:focus-within {
  transform: translateY(-6px);
  border-color: rgba(97, 229, 194, 0.72);
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 28px 46px rgba(6, 30, 22, 0.22),
    0 0 0 1px rgba(167, 255, 233, 0.52);
}

.product-grid article.product-card-link:hover::before,
.product-grid article.product-card-link:focus-within::before {
  opacity: 1;
  animation: product-card-sheen 860ms var(--ease) both;
}

.product-card-link__cta {
  margin-top: 0.45rem;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  text-decoration: none;
  border: 1px solid #a8e8d6;
  background: #effff8;
  color: #0f5f50;
  font-size: var(--fs-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
  padding: 0.32rem 0.5rem;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background-color 220ms var(--ease);
}

.product-card-link__cta::after {
  content: "→";
  transform: translateX(0);
  transition: transform 220ms var(--ease);
}

.product-card-link__cta:hover {
  border-color: rgba(73, 203, 169, 0.66);
}

.product-card-link__actions {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card-link__actions .product-card-link__cta {
  margin-top: 0;
}

.product-card-link__quote {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(13, 66, 55, 0.24);
  background: #ffffff;
  color: #0f5f50;
  font-size: var(--fs-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
  padding: 0.32rem 0.5rem;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.product-card-link__quote:hover {
  border-color: rgba(73, 203, 169, 0.66);
  background: #f3fff9;
}

.product-grid article.product-card-link:hover .product-card-link__cta,
.product-grid article.product-card-link:focus-within .product-card-link__cta {
  transform: translateY(-1px);
  border-color: rgba(68, 203, 168, 0.78);
  background: linear-gradient(150deg, #f6fff9, #e7fff4);
  box-shadow: 0 10px 18px rgba(13, 74, 61, 0.16);
}

.product-grid article.product-card-link:hover .product-card-link__cta::after,
.product-grid article.product-card-link:focus-within .product-card-link__cta::after {
  transform: translateX(3px);
}

.product-grid article.product-card-link:hover .product-card-link__quote,
.product-grid article.product-card-link:focus-within .product-card-link__quote {
  transform: translateY(-1px);
  border-color: rgba(73, 203, 169, 0.66);
  background: #f6fffa;
  box-shadow: 0 8px 14px rgba(13, 74, 61, 0.1);
}

.product-grid img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(8, 19, 22, 0.07);
  border-radius: 10px;
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.product-grid article.product-card-link:hover img,
.product-grid article.product-card-link:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.product-grid h3 {
  margin: 0.6rem 0 0.35rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-title-md);
}

.product-grid p {
  margin: 0;
}

.price-row {
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid #d8eee6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.price-value,
.price-unit {
  display: inline-flex;
  align-items: center;
  border: 1px solid #a8e8d6;
  background: linear-gradient(150deg, #ecfff8, #e4fcf4);
  color: #0f5f50;
  font-weight: 700;
  font-size: var(--fs-body-sm);
  letter-spacing: 0;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
}

body[data-page="products"] .product-grid article.product-card-link {
  text-align: center;
}

body[data-page="products"] .product-grid article.product-card-link > p {
  display: none;
}

body[data-page="products"] .product-grid article.product-card-link h3 {
  margin: 0.62rem 0 0.2rem;
}

body[data-page="products"] .product-grid article.product-card-link .price-row {
  width: 100%;
  padding-top: 0.68rem;
  justify-content: center;
  gap: 0.42rem;
}

body[data-page="products"] .product-grid article.product-card-link .price-value,
body[data-page="products"] .product-grid article.product-card-link .price-unit {
  min-width: 148px;
  justify-content: center;
  font-size: var(--fs-body-sm);
  padding: 0.34rem 0.68rem;
}

.about-grid {
  margin-top: 1rem;
  grid-template-columns: 1fr 1fr;
}

body[data-page="about"] .about-grid {
  gap: 1.08rem;
}

.about-grid article,
.timeline-block,
.track-card {
  padding: 1.02rem;
}

.about-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.timeline-block {
  margin-top: 1rem;
}

.timeline-block ol {
  margin: 0;
  padding-left: 1.1rem;
}

.timeline-block li {
  margin-bottom: 0.6rem;
}

.cta-band {
  margin-top: 1rem;
  border: 1px solid rgba(122, 227, 202, 0.46);
  background: linear-gradient(130deg, rgba(226, 255, 247, 0.97), rgba(242, 255, 251, 0.98));
  box-shadow: var(--shadow-md);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-radius: var(--radius-xl);
}

body[data-page="about"] .subpage-hero,
body[data-page="about"] .about-grid article,
body[data-page="about"] .timeline-block,
body[data-page="about"] .cta-band {
  text-align: center;
}

body[data-page="about"] .subpage-hero p,
body[data-page="about"] .about-grid article p,
body[data-page="about"] .timeline-block p,
body[data-page="about"] .cta-band p {
  margin-inline: auto;
  max-width: var(--text-measure);
}

body[data-page="about"] .about-grid article,
body[data-page="about"] .timeline-block,
body[data-page="about"] .cta-band {
  padding: clamp(1.05rem, 2.1vw, 1.4rem);
}

body[data-page="about"] .about-grid article,
body[data-page="about"] .timeline-block {
  border-color: rgba(88, 202, 171, 0.36);
  box-shadow: 0 20px 38px rgba(8, 31, 24, 0.16);
}

body[data-page="about"] .about-grid h2,
body[data-page="about"] .timeline-block h2,
body[data-page="about"] .cta-band h3 {
  letter-spacing: 0.04em;
}

body[data-page="about"] .cta-band {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body[data-page="about"] .cta-band > div {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

body[data-page="about"] .cta-band > div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.services-disposal {
  margin-top: 1rem;
}

.services-disposal__poster {
  border: 1px solid rgba(122, 227, 202, 0.46);
  background:
    radial-gradient(circle at 8% -18%, rgba(149, 255, 228, 0.32), transparent 40%),
    linear-gradient(138deg, rgba(226, 255, 247, 0.97), rgba(243, 255, 250, 0.98));
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  padding: 1.22rem 1.15rem;
}

.services-disposal__brand {
  margin: 0;
  color: #0f6656;
  font-family: var(--font-display);
  font-size: var(--fs-title-md);
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.services-disposal__poster h2,
.services-hauling__intro h2,
.dump-poster-card h3,
.hauling-card h3 {
  margin: 0.2rem 0 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 0.04em;
}

.services-disposal__poster h2,
.services-hauling__intro h2 {
  font-size: var(--fs-display-lg);
}

.services-disposal__poster h2 {
  color: #103f34;
}

.services-disposal__matrix {
  margin-top: 0.95rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.services-disposal__matrix::before,
.services-disposal__matrix::after {
  content: "";
  position: absolute;
  background: rgba(104, 210, 181, 0.44);
  pointer-events: none;
}

.services-disposal__matrix::before {
  top: 0;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
}

.services-disposal__matrix::after {
  left: 0;
  right: 0;
  top: calc(50% - 0.5px);
  height: 1px;
}

.dump-poster-card {
  padding: 1.18rem 1.1rem;
}

.dump-poster-card h3 {
  margin: 0;
  color: #0f4f42;
  font-size: var(--fs-title-sm);
}

.dump-poster-card__label {
  margin: 0.62rem 0 0.18rem;
  color: #0f5547;
  font-family: var(--font-display);
  font-size: var(--fs-title-sm);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dump-poster-card__text {
  margin: 0;
  color: #1d5d4f;
  font-size: var(--fs-body-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.36;
  text-transform: uppercase;
}

.services-disposal .dump-poster-card__text,
.services-disposal .dump-poster-card__label,
.services-disposal .dump-poster-card h3,
.services-disposal .services-disposal__poster h2,
.services-disposal .services-disposal__brand {
  text-align: center;
}

.services-hauling {
  margin-top: 1rem;
  border: 1px solid rgba(122, 227, 202, 0.44);
  background: linear-gradient(145deg, rgba(229, 255, 247, 0.95), rgba(248, 255, 252, 0.97));
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  padding: 1rem;
  display: grid;
  gap: 0.82rem;
}

.services-hauling__intro {
  text-align: center;
}

.services-hauling__intro h2 {
  margin-bottom: 0.36rem;
}

.services-hauling__intro p {
  margin: 0;
  color: #1d5d4f;
  line-height: var(--lh-body);
  max-width: var(--text-measure);
  margin-inline: auto;
}

.hauling-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.hauling-card {
  border: 1px solid rgba(45, 108, 91, 0.22);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(241, 252, 247, 0.97));
  box-shadow: 0 8px 20px rgba(8, 24, 20, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  align-items: stretch;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.hauling-card:hover {
  transform: translateY(-2px);
  border-color: rgba(84, 214, 181, 0.56);
  box-shadow: 0 16px 30px rgba(8, 24, 20, 0.16);
}

.hauling-card__media {
  position: relative;
  border-bottom: 1px solid rgba(132, 224, 198, 0.34);
  background: linear-gradient(145deg, rgba(8, 24, 30, 0.8), rgba(10, 30, 37, 0.78));
}

.hauling-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 14, 0) 64%, rgba(4, 10, 14, 0.26) 100%);
  pointer-events: none;
}

.hauling-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms var(--ease);
}

.hauling-card:hover .hauling-card__media img {
  transform: scale(1.03);
}

.hauling-card__body {
  display: grid;
  gap: 0.4rem;
  align-content: start;
  padding: 0.86rem 0.88rem 0.92rem;
}

.hauling-card h3 {
  margin: 0;
  font-size: var(--fs-title-md);
}

.hauling-card__rate {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(72, 205, 170, 0.58);
  background: linear-gradient(145deg, #dcfff3, #f0fff9);
  color: #0d5648;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.26rem, 2.4vw, 1.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hauling-card__capacity {
  margin: 0;
  padding-left: 1.1rem;
  color: #1d5b4e;
}

.hauling-card__capacity li + li {
  margin-top: 0.34rem;
}

.track-card {
  margin-top: 1rem;
}

.product-detail {
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 246, 0.97));
  box-shadow: var(--shadow-md);
  padding: 1rem;
  border-radius: var(--radius-xl);
}

.product-detail__crumbs {
  margin: 0 0 0.8rem;
  font-size: var(--fs-body-sm);
  color: #2d6355;
}

.product-detail__crumbs a {
  color: #0f6b5a;
  text-decoration: none;
  font-weight: 700;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.product-detail__media {
  border: 1px solid rgba(36, 95, 81, 0.2);
  background: #ffffff;
  padding: 0.6rem;
  border-radius: 14px;
}

.product-detail__media img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.product-detail__info h1 {
  margin: 0.2rem 0 0.45rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-display-xl);
}

.product-detail__subgroup {
  margin: 0 0 0.65rem;
  color: #2e6658;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.product-detail__lead {
  margin: 0;
  color: #113f34;
  line-height: var(--lh-relaxed);
}

.product-detail__use-cases {
  margin: 0.62rem 0 0;
  padding-left: 1.05rem;
  color: #1d5145;
}

.product-detail__use-cases li {
  margin: 0.28rem 0;
}

.product-detail__price-card,
.product-detail__quote,
.product-detail__specs,
.product-detail__related,
.product-detail__calculator {
  margin-top: 0.9rem;
  border: 1px solid rgba(40, 96, 83, 0.18);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.9rem;
  border-radius: 14px;
}

.product-detail__price-card h2,
.product-detail__quote h2,
.product-detail__specs h2,
.product-detail__related h2,
.product-detail__calculator h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-title-md);
}

.product-detail__price-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-detail__price-toggle label {
  border: 1px solid rgba(122, 219, 191, 0.45);
  background: #effff9;
  color: #0f5f50;
  padding: 0.36rem 0.52rem;
  font-size: var(--fs-label);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
}

.product-detail__price-toggle label.is-disabled {
  opacity: 0.68;
  border-color: rgba(130, 177, 163, 0.42);
  background: #f4fbf8;
  color: #3e655b;
}

.product-detail__price {
  margin: 0.7rem 0;
  color: #0f5f50;
  font-weight: 800;
  font-size: 1.15rem;
}

.product-detail__pickup-note {
  margin: -0.08rem 0 0.58rem;
  color: #1c5d4e;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.product-detail__qty {
  display: grid;
  gap: 0.32rem;
  max-width: 180px;
}

.product-detail__qty label {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.product-detail__qty input {
  width: 100%;
  border: 1px solid #bde7d8;
  background: #f8fffc;
  padding: 0.58rem;
  font: inherit;
  border-radius: 10px;
}

.product-detail__add {
  margin-top: 0.7rem;
}

.product-detail__status {
  min-height: 1.1rem;
  margin: 0.5rem 0 0;
  color: #0f8a75;
  font-size: var(--fs-body-sm);
}

.product-detail__specs ul {
  margin: 0;
  padding-left: 1.12rem;
  display: grid;
  gap: 0.48rem;
}

.product-detail__related-grid {
  --related-gap: 0.72rem;
  --related-slides-per-view: 3;
  display: grid;
  gap: 0.68rem;
}

.product-detail__related-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
}

.product-detail__related-viewport {
  overflow: hidden;
  border-radius: 12px;
  touch-action: pan-y;
  outline: none;
}

.product-detail__related-viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(84, 215, 181, 0.52);
}

.product-detail__related-track {
  display: flex;
  width: 100%;
  gap: var(--related-gap);
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.product-detail__related-nav {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(88, 207, 175, 0.62);
  background: linear-gradient(150deg, #f4fff9, #e9fff4);
  color: #0e5f4f;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.product-detail__related-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(67, 196, 163, 0.76);
  box-shadow: 0 10px 18px rgba(9, 35, 27, 0.15);
}

.product-detail__related-nav:disabled {
  opacity: 0.44;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.product-detail__related-carousel.is-static .product-detail__related-nav {
  display: none;
}

.product-detail__related-carousel.is-static {
  grid-template-columns: minmax(0, 1fr);
}

.product-detail__related-card {
  flex: 0 0 calc((100% - (var(--related-gap) * (var(--related-slides-per-view) - 1))) / var(--related-slides-per-view));
  width: calc((100% - (var(--related-gap) * (var(--related-slides-per-view) - 1))) / var(--related-slides-per-view));
  min-width: 0;
  border: 1px solid rgba(40, 93, 79, 0.2);
  background: rgba(255, 255, 255, 0.98);
  padding: 0.55rem;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.975);
  animation: related-card-in 600ms var(--ease) forwards;
  animation-delay: calc(70ms + (var(--related-order, 0) * 70ms));
}

.product-detail__related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(73, 203, 169, 0.56);
  box-shadow: 0 16px 26px rgba(8, 27, 22, 0.16);
}

.product-detail__related-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 9px;
}

.product-detail__related-card h3 {
  margin: 0.48rem 0 0.24rem;
  color: #0f5f50;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
}

.product-detail__related-card p {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: #2e6254;
  line-height: var(--lh-body);
}

.product-detail__related-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
}

.product-detail__related-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(60, 123, 106, 0.28);
  padding: 0;
  cursor: pointer;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.product-detail__related-dot:hover {
  transform: scale(1.12);
  background: rgba(35, 120, 98, 0.58);
}

.product-detail__related-dot.is-active {
  width: 20px;
  background: linear-gradient(90deg, #1c9c7f, #4dc4a4);
  box-shadow: 0 4px 12px rgba(26, 103, 84, 0.28);
}

.product-detail__calculator-note {
  margin: 0;
  color: #245f51;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.product-detail__calculator-form {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.62rem;
}

.product-detail__calculator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.product-detail__calculator-field {
  display: grid;
  gap: 0.28rem;
}

.product-detail__calculator-field > span {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #174e41;
}

.product-detail__calculator-input-wrap {
  position: relative;
}

.product-detail__calculator-form input {
  width: 100%;
  border: 1px solid #bde7d8;
  background: #f8fffc;
  color: #0f4a3d;
  padding: 0.62rem 2.05rem 0.62rem 0.62rem;
  font: inherit;
  border-radius: 10px;
}

.product-detail__calculator-form input:focus-visible {
  border-color: rgba(72, 204, 170, 0.82);
  box-shadow: 0 0 0 2px rgba(74, 206, 172, 0.24);
  outline: none;
}

.product-detail__calculator-unit {
  position: absolute;
  right: 0.54rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-label);
  font-weight: 700;
  color: #2a6557;
}

.product-detail__calculator-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.52rem;
}

.product-detail__calculator-actions .btn {
  margin-top: 0;
  min-width: 112px;
}

.product-detail__calculator-results {
  margin-top: 0.72rem;
  border: 1px solid rgba(94, 210, 179, 0.5);
  background: linear-gradient(140deg, rgba(236, 255, 248, 0.96), rgba(246, 255, 251, 0.96));
  border-radius: 12px;
  padding: 0.7rem 0.78rem;
  display: grid;
  gap: 0.24rem;
}

.product-detail__calculator-results p {
  margin: 0;
  color: #1a5648;
  font-size: var(--fs-body-sm);
}

.product-detail__calculator-result-line {
  font-size: 1rem;
}

.product-detail__calculator-result-line strong {
  font-size: 1.12rem;
  color: #0f5f50;
}

.product-detail__calculator-status {
  min-height: 1.1rem;
  margin: 0.54rem 0 0;
  color: #0f8a75;
  font-size: var(--fs-body-sm);
}

.product-detail__empty {
  margin: 0;
  color: #2e6254;
}

.product-detail__not-found {
  padding: 1rem;
  border: 1px solid rgba(40, 93, 79, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.product-detail__not-found h1 {
  margin: 0.25rem 0 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-display-lg);
}

.cart-shell {
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 246, 0.97));
  box-shadow: var(--shadow-md);
  padding: 1rem;
  border-radius: var(--radius-xl);
}

.cart-shell__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cart-shell__items,
.cart-shell__form {
  border: 1px solid rgba(40, 96, 83, 0.18);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.9rem;
  border-radius: 14px;
}

.cart-shell__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.cart-shell__head h2,
.cart-shell__form h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-title-md);
}

.cart-shell__empty {
  margin: 0;
  color: #2e6254;
}

.cart-shell__form-title,
.cart-shell__form-intro {
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 0.75rem;
  padding: 0.6rem;
  border: 1px solid rgba(40, 93, 79, 0.2);
  background: #fff;
  margin-bottom: 0.6rem;
  border-radius: 12px;
}

.cart-item img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.cart-item__body h3 {
  margin: 0 0 0.26rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-title-sm);
}

.cart-item__meta {
  margin: 0 0 0.38rem;
  color: #2d6658;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.cart-item__body label {
  display: inline-grid;
  gap: 0.2rem;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.cart-item__body input {
  width: 90px;
  border: 1px solid #bde7d8;
  background: #f8fffc;
  padding: 0.45rem;
  font: inherit;
}

.cart-item__remove {
  align-self: start;
}

.cart-shell__summary-list {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.16rem;
}

.cart-shell__summary-row {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  color: #1a5649;
}

.cart-shell__summary-row strong {
  color: #0c4e40;
}

.cart-shell__summary-row--total {
  margin-top: 0.12rem;
  padding-top: 0.42rem;
  border-top: 1px solid rgba(73, 161, 136, 0.3);
}

.cart-shell__summary-row--total strong {
  font-size: 1.02rem;
}

.cart-shell__delivery-note {
  margin-top: 0.55rem;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: #2d6658;
  border: 1px solid rgba(70, 162, 138, 0.22);
  background: rgba(242, 255, 250, 0.92);
  border-radius: 10px;
  padding: 0.52rem 0.6rem;
}

.cart-shell__delivery-note.is-quote {
  border-color: rgba(178, 108, 52, 0.36);
  background: rgba(255, 246, 236, 0.92);
  color: #7d4420;
}

.cart-shell__disclaimer {
  margin-top: 0.55rem;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: #30685a;
}

.cart-shell__form {
  margin-top: 0.9rem;
}

.cart-shell__form > p {
  margin-top: 0.35rem;
  color: #2b6154;
}

.cart-shell__grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.72rem;
}

.cart-shell__grid label {
  display: grid;
  gap: 0.34rem;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.cart-shell__grid input,
.cart-shell__grid textarea {
  width: 100%;
  border: 1px solid #bde7d8;
  background: #f8fffc;
  padding: 0.66rem;
  font: inherit;
  border-radius: 10px;
}

.cart-shell__grid .full {
  grid-column: 1 / -1;
}

.cart-shell__date-range-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.cart-shell__date-range-row span {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2b6154;
}

.cart-shell__status {
  min-height: 1.1rem;
  color: #0f8a75;
  margin: 0.6rem 0 0;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.cart-shell__checkout-summary {
  margin: 0.72rem 0 0;
  border: 1px solid rgba(70, 162, 138, 0.22);
  background: rgba(242, 255, 250, 0.92);
  border-radius: 12px;
  padding: 0.62rem 0.68rem;
}

.cart-shell__checkout-summary h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  font-size: var(--fs-title-sm);
  color: #0f5749;
}

.cart-shell__checkout-summary > p {
  margin: 0.3rem 0 0;
  color: #1a5649;
}

.trust-layer {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.trust-card {
  border: 1px solid rgba(122, 227, 202, 0.44);
  background: linear-gradient(150deg, rgba(233, 255, 248, 0.97), rgba(251, 255, 254, 0.97));
  box-shadow: var(--shadow-md);
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.trust-card h3 {
  margin: 0.35rem 0 0.6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--fs-display-lg);
  line-height: var(--lh-tight);
}

.trust-card__lead {
  margin: 0;
  max-width: var(--text-measure);
  margin-inline: auto;
  color: #1f5d4f;
  line-height: var(--lh-body);
}

.trust-experience {
  margin-top: 0.72rem;
  border: 1px solid rgba(39, 101, 84, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 252, 246, 0.96));
  border-radius: 12px;
  padding: 0.56rem 0.7rem;
  display: grid;
  gap: 0.08rem;
  justify-items: center;
  box-shadow: 0 8px 18px rgba(8, 24, 20, 0.08);
}

.trust-experience__value {
  margin: 0;
  color: #0e6e5b;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.trust-experience__label {
  margin: 0;
  color: #2f6b5c;
  font-size: var(--fs-label);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.trust-byline {
  margin: 0.7rem 0 0;
  color: #326f5e;
  font-weight: 700;
}

.trust-proof-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.trust-proof-item {
  border: 1px solid rgba(39, 101, 84, 0.2);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  padding: 0.6rem;
  box-shadow: 0 8px 18px rgba(8, 24, 20, 0.1);
  text-align: center;
}

.trust-proof-item h4 {
  margin: 0 0 0.24rem;
  color: #0f5f50;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 0.01em;
  font-size: var(--fs-title-sm);
}

.trust-proof-item p {
  margin: 0;
  color: #235f52;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.trust-google-line {
  margin-top: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  color: #145f52;
  font-size: var(--fs-body-sm);
  font-weight: 700;
}

.trust-google-line a {
  text-decoration: none;
  border: 1px solid #a8e8d6;
  background: #effff9;
  color: #0f5f50;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  font-size: var(--fs-label);
  letter-spacing: 0.02em;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.trust-google-line a:hover {
  transform: translateY(-1px);
  border-color: rgba(83, 212, 178, 0.68);
  box-shadow: 0 8px 16px rgba(8, 24, 20, 0.12);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.trust-badges span {
  border: 1px solid #a8e8d6;
  background: #effff9;
  color: #145f52;
  font-size: var(--fs-label);
  font-weight: 700;
  padding: 0.28rem 0.5rem;
}

.reviews-strip {
  margin-top: 1rem;
  border: 1px solid rgba(122, 227, 202, 0.4);
  background: linear-gradient(150deg, rgba(236, 255, 249, 0.95), rgba(250, 255, 253, 0.98));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 1rem 0.8rem;
  overflow: hidden;
}

.reviews-strip__head {
  padding: 0 0.4rem 0.7rem;
  text-align: center;
}

.reviews-strip__head h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--fs-display-lg);
  line-height: var(--lh-tight);
}

.reviews-strip__meta {
  margin: 0.4rem 0 0;
  color: #205f52;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  font-weight: 600;
}

.reviews-strip__link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(98, 219, 188, 0.54);
  background: rgba(241, 255, 250, 0.9);
  color: #0e5e4f;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.reviews-strip__link:hover {
  transform: translateY(-1px);
  border-color: rgba(66, 195, 162, 0.72);
  box-shadow: 0 8px 18px rgba(11, 40, 32, 0.13);
}

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.reviews-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  animation: reviews-scroll var(--reviews-scroll-duration, 38s) linear infinite;
  will-change: transform;
}

.review-card {
  width: min(82vw, 320px);
  margin-right: 0.72rem;
  border: 1px solid rgba(42, 103, 88, 0.2);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 22px rgba(8, 24, 20, 0.11);
  border-radius: 14px;
  padding: 0.82rem;
  text-align: left;
}

.review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  margin: 0 0 0.45rem;
  color: #0f7e67;
  letter-spacing: 0.08em;
  font-size: var(--fs-body-sm);
  font-weight: 800;
}

.review-star {
  display: inline-block;
  color: rgba(127, 232, 204, 0.42);
  transform-origin: center;
  text-shadow: 0 0 0 rgba(137, 248, 223, 0);
  animation: hero-star-glow 1.9s ease-in-out infinite;
}

.review-star--filled {
  color: #89f8df;
}

.review-star:nth-child(2) {
  animation-delay: 0.16s;
}

.review-star:nth-child(3) {
  animation-delay: 0.32s;
}

.review-star:nth-child(4) {
  animation-delay: 0.48s;
}

.review-star:nth-child(5) {
  animation-delay: 0.64s;
}

.review-card__quote {
  margin: 0;
  color: #1a5b4d;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  text-wrap: pretty;
}

.review-card__name {
  margin: 0.62rem 0 0;
  color: #2a6a5b;
  font-size: var(--fs-label);
  font-weight: 700;
}

.footer {
  border-top: 1px solid rgba(65, 123, 107, 0.25);
  text-align: center;
  color: #3c7365;
  font-size: var(--fs-body-sm);
  padding: 1.1rem 0 1.25rem;
  margin-top: 0.8rem;
  background: linear-gradient(180deg, rgba(233, 246, 240, 0), rgba(230, 245, 238, 0.72));
}

.footer p {
  margin: 0.16rem 0;
}

.message-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 96;
  width: min(360px, calc(100vw - 2rem));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.message-widget__panel {
  border-radius: 20px;
  border: 1px solid rgba(122, 219, 191, 0.45);
  background: linear-gradient(155deg, rgba(250, 255, 253, 0.97), rgba(233, 245, 241, 0.96));
  box-shadow: 0 34px 56px rgba(3, 31, 26, 0.24), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  overflow: auto;
  max-height: min(72vh, 560px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.message-widget.is-open .message-widget__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.message-widget:not(.is-open) .message-widget__panel {
  display: none;
}

.message-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.72rem 0.85rem;
  background: linear-gradient(140deg, #1f8e6f, #2ca783);
  color: #effff8;
}

.message-widget__header p {
  margin: 0;
  font-size: var(--fs-body-sm);
  letter-spacing: 0.01em;
  font-weight: 700;
}

.message-widget__header span {
  font-size: var(--fs-micro);
  margin-right: 0.34rem;
}

.message-widget__close {
  border: 1px solid rgba(225, 255, 245, 0.55);
  background: rgba(0, 0, 0, 0.14);
  color: #effff8;
  border-radius: 999px;
  font-size: var(--fs-micro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  padding: 0.42rem 0.62rem;
  cursor: pointer;
  display: inline-flex;
  transition: background 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}

.message-widget__close:hover {
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(225, 255, 245, 0.9);
  transform: translateY(-1px);
}

.message-widget__intro {
  padding: 0.7rem 0.92rem 0.48rem;
  border-bottom: 1px solid rgba(44, 97, 85, 0.14);
}

.message-widget__intro p {
  margin: 0;
  color: #1f584b;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.message-widget__form {
  display: grid;
  gap: 0.42rem;
  padding: 0.72rem 0.92rem 0.9rem;
}

.message-widget__form label {
  color: #184f43;
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.message-widget__form input,
.message-widget__form textarea {
  width: 100%;
  border: 1px solid rgba(36, 93, 80, 0.24);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  color: #0f3d32;
  font: inherit;
  font-size: var(--fs-body);
  padding: 0.56rem 0.62rem;
  border-radius: 10px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}

.message-widget__form textarea {
  resize: vertical;
  min-height: 84px;
}

.message-widget__form input:focus,
.message-widget__form textarea:focus {
  outline: none;
  border-color: rgba(31, 152, 116, 0.82);
  box-shadow: 0 0 0 3px rgba(62, 181, 145, 0.22);
  background: #ffffff;
}

.message-widget__consent {
  margin: 0.15rem 0 0.2rem;
  color: #2d6659;
  font-size: var(--fs-micro);
  line-height: var(--lh-body);
}

.message-widget__form .btn {
  width: 100%;
}

.message-widget__form .btn:hover {
  transform: translateY(-1px);
}

.message-widget__form .btn:active {
  transform: translateY(0);
}

.message-widget__status {
  margin: 0.2rem 0 0;
  color: #195e50;
  font-size: var(--fs-label);
  line-height: var(--lh-body);
}

.message-widget__status a {
  color: #126150;
  font-weight: 700;
}

.message-widget__launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  min-width: 74px;
  height: 72px;
  padding: 0 0.84rem;
  border: 1px solid rgba(114, 242, 202, 0.65);
  background: linear-gradient(150deg, #1a866b, #11634f);
  color: #ffffff;
  border-radius: 999px;
  line-height: 0;
  box-shadow: 0 14px 28px rgba(4, 24, 19, 0.32);
  cursor: pointer;
  animation: widget-fab-pulse 2.4s ease-out infinite;
  transition: transform 170ms var(--ease), border-color 170ms var(--ease), box-shadow 170ms var(--ease);
}

.message-widget__launcher:hover {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(140, 255, 224, 0.92);
  box-shadow: 0 18px 34px rgba(4, 24, 19, 0.36);
}

.message-widget__launcher svg {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}

.message-widget__launcher-label {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: left;
}

.message-widget.is-open .message-widget__launcher {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lightbox {
  border: 1px solid rgba(167, 255, 236, 0.45);
  background: rgba(7, 14, 18, 0.95);
  padding: 0.85rem;
  max-width: min(92vw, 980px);
  width: 92vw;
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin: 0.55rem 0 0.15rem;
  color: #ddfff6;
  font-size: var(--fs-body-sm);
}

.lightbox-close {
  border: 1px solid rgba(172, 255, 236, 0.5);
  background: rgba(9, 27, 33, 0.78);
  color: #d8fff5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-label);
  font-weight: 700;
  padding: 0.34rem 0.52rem;
  margin-bottom: 0.5rem;
}

.nav-list a:focus-visible,
.mega-trigger:focus-visible,
.hero-dot:focus-visible,
.menu-toggle:focus-visible,
.icon-btn:focus-visible,
.btn:focus-visible,
.chips a:focus-visible,
.text-link:focus-visible {
  outline: 2px solid #93ffe6;
  outline-offset: 2px;
}

.message-widget__launcher:focus-visible,
.message-widget__close:focus-visible,
.message-widget__form input:focus-visible,
.message-widget__form textarea:focus-visible,
.message-widget__form button:focus-visible,
.product-card-link__cta:focus-visible,
.product-card-link__quote:focus-visible,
.product-grid article.product-card-link:focus-visible {
  outline: 2px solid #93ffe6;
  outline-offset: 2px;
}

@media (max-width: 1020px) {
  .brand img {
    width: min(198px, 52vw);
    max-height: 56px;
  }

  .brand.brand--intro,
  .brand.brand--intro.is-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    border-top: 1px solid rgba(209, 255, 246, 0.24);
    margin-top: 0.5rem;
    padding-top: 0.72rem;
  }

  .site-header.nav-open .site-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.82rem;
    background: rgba(7, 20, 25, 0.9);
    border: 1px solid rgba(155, 250, 227, 0.26);
    padding: 0.82rem;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    grid-template-columns: 1fr;
    background: linear-gradient(150deg, #0f1a1c, #14242a);
  }

  .nav-item.is-open .mega-menu {
    display: grid;
  }

  .header-icons {
    order: 2;
  }

  .header-search {
    left: 50%;
    right: auto;
    width: min(640px, 94vw);
    transform: translate(-50%, -8px);
  }

  .site-header.search-open .header-search {
    transform: translate(-50%, 0);
  }

  .hero-showcase {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100dvh;
    width: min(1200px, 95%);
    padding: 6.8rem 0 2.2rem;
  }

  .hero-copy {
    padding: 1.18rem 1.14rem 1.08rem;
    max-width: 620px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: clamp(2.02rem, 4.95vw, 3.2rem);
    max-width: 17ch;
  }

  .hero-trust-badge {
    padding: 0.36rem 0.58rem;
  }

  .hero-trust-badge__stars {
    font-size: 0.72rem;
  }

  .hero-trust-badge__text {
    font-size: 0.68rem;
  }

  .hero-subtitle {
    max-width: 44ch;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-support {
    gap: 0.4rem;
  }

  .hero-support span {
    font-size: 0.72rem;
  }

  .value-strip {
    margin-top: 1rem;
    padding: 0.88rem;
  }

  .process {
    padding: 0.92rem;
  }

  .cards,
  .value-strip__grid,
  .process__steps,
  .ops,
  .about-grid,
  .hauling-grid,
  .trust-layer,
  .trust-proof-grid,
  .product-grid,
  .contact,
  .product-detail__layout,
  .cart-shell__layout,
  .cart-shell__grid {
    grid-template-columns: 1fr;
  }

  .cart-shell__date-range-row {
    grid-template-columns: 1fr;
  }

  .cart-shell__date-range-row span {
    display: none;
  }

  .product-detail__media {
    position: static;
    top: auto;
  }

  .product-detail__related-grid {
    --related-gap: 0.64rem;
  }

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

  .product-detail__related-nav {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    height: 180px;
  }

  .message-widget {
    right: 0.7rem;
    left: 0.7rem;
    width: auto;
    bottom: 0.72rem;
  }

  .message-widget__launcher {
    max-width: 220px;
  }

  .reviews-strip {
    padding: 0.86rem 0.72rem;
  }

  .reviews-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reviews-marquee__track {
    animation-duration: var(--reviews-scroll-duration, 34s);
  }

  .review-card {
    width: min(85vw, 300px);
  }
}

@media (max-width: 700px) {
  .services-disposal__poster,
  .services-hauling {
    padding: 0.84rem;
  }

  .services-disposal__poster h2,
  .services-hauling__intro h2 {
    font-size: clamp(1.8rem, 6.2vw, 2.24rem);
  }

  .dump-poster-card h3,
  .hauling-card h3 {
    font-size: 1.52rem;
  }

  .services-disposal__matrix {
    grid-template-columns: 1fr;
  }

  .services-disposal__matrix::before,
  .services-disposal__matrix::after {
    content: none;
  }

  .dump-poster-card {
    padding: 0.86rem 0.62rem;
  }

  .dump-poster-card__label {
    font-size: 1.02rem;
  }

  .dump-poster-card__text {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .hauling-card__media img {
    aspect-ratio: 16 / 9;
  }

  .header-search {
    width: 95vw;
  }

  .header-search__result {
    grid-template-columns: 52px 1fr;
  }

  .header-search__result-thumb {
    width: 52px;
    height: 52px;
  }

  .header-search__result-prices {
    grid-template-columns: 1fr;
    gap: 0.26rem;
  }

  .header-search__price-value {
    font-size: 0.8rem;
  }

  .header-search__form {
    grid-template-columns: 1fr;
  }

  .header-search__submit {
    width: 100%;
  }

  .product-detail__related-grid {
    --related-gap: 0.58rem;
  }

  .product-detail__calculator-grid {
    grid-template-columns: 1fr;
  }

  .product-detail__calculator-actions .btn {
    width: 100%;
  }

  .product-detail__related-nav {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .product-detail__related-card h3 {
    font-size: 1.25rem;
  }

  .hero-showcase {
    min-height: 100vh;
    min-height: 100dvh;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 5.9rem 0 1.5rem;
  }

  .hero-copy {
    gap: 0.72rem;
    padding: 0.94rem 0.84rem 0.86rem;
    border-radius: 16px;
  }

  .hero-copy::before {
    border-radius: 16px;
  }

  .hero-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .hero-title {
    font-size: clamp(1.72rem, 6.25vw, 2.15rem);
    max-width: 16ch;
    line-height: 0.99;
  }

  .hero-trust-badge {
    max-width: 100%;
  }

  .hero-trust-badge__text {
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: clamp(0.92rem, 3.3vw, 1.02rem);
    line-height: 1.48;
    max-width: 34ch;
  }

  .hero-actions {
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-support {
    gap: 0.34rem;
  }

  .hero-support span {
    min-height: 28px;
    padding: 0.3rem 0.62rem;
    font-size: 0.69rem;
  }

  .hero-controls {
    display: none;
  }

  .value-strip {
    padding: 0.8rem;
    border-radius: 18px;
  }

  .value-strip__item {
    padding: 0.76rem;
  }

  .value-strip__item h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.75rem);
  }

  .process__intro h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .process__step h3 {
    font-size: 1.28rem;
  }

  .process__actions .btn {
    width: 100%;
  }

  .trust-proof-item {
    text-align: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page="products"] .product-grid article {
    animation: product-card-breathe 5.6s ease-in-out infinite;
  }

  body[data-page="products"] .product-grid article:nth-child(2n) {
    animation-delay: 0.75s;
  }

  body[data-page="products"] .product-grid article:nth-child(3n) {
    animation-delay: 1.4s;
  }

  body[data-page="products"] .product-grid article:hover,
  body[data-page="products"] .product-grid article:focus-within {
    animation-play-state: paused;
  }

  .hero-copy {
    animation: hero-copy-in 640ms var(--ease) both;
  }

  .hero-title {
    animation: hero-title-in 780ms var(--ease) 90ms both;
  }

  .hero-actions .btn {
    animation: hero-cta-in 620ms var(--ease) 160ms both;
  }

  body[data-page="products"] .product-card-link__cta {
    animation: product-cta-nudge 3.8s ease-in-out infinite;
  }

  body[data-page="products"] .product-grid article.product-card-link:nth-child(2n) .product-card-link__cta {
    animation-delay: 0.8s;
  }

  body[data-page="products"] .product-grid article.product-card-link:nth-child(3n) .product-card-link__cta {
    animation-delay: 1.45s;
  }

  body[data-page="products"] .product-grid article.product-card-link:hover .product-card-link__cta,
  body[data-page="products"] .product-grid article.product-card-link:focus-within .product-card-link__cta {
    animation-play-state: paused;
  }
}

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

  .brand.brand--intro,
  .brand.brand--intro.is-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .message-widget__panel {
    transition: none !important;
  }

  .message-widget__launcher {
    animation: none !important;
  }

  .hero-slide,
  .hero-slide.is-active,
  .hero-overlay {
    transform: none !important;
  }

  .reveal-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .reviews-marquee__track {
    animation: none !important;
    transform: none !important;
  }
}

@keyframes brand-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-18px);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes widget-fab-pulse {
  0% {
    box-shadow: 0 12px 24px rgba(4, 24, 19, 0.28), 0 0 0 0 rgba(29, 153, 120, 0.22);
  }
  70% {
    box-shadow: 0 12px 24px rgba(4, 24, 19, 0.28), 0 0 0 12px rgba(29, 153, 120, 0);
  }
  100% {
    box-shadow: 0 12px 24px rgba(4, 24, 19, 0.28), 0 0 0 0 rgba(29, 153, 120, 0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-cta-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-slide-pan {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-0.45%, -0.35%, 0);
  }
}

@keyframes related-card-in {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes reviews-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--reviews-scroll-distance, 50%)), 0, 0);
  }
}

@keyframes process-step-flow {
  0%,
  70%,
  100% {
    transform: translateY(0);
    border-color: rgba(37, 99, 83, 0.2);
    box-shadow: 0 10px 22px rgba(8, 24, 20, 0.11);
  }
  35% {
    transform: translateY(-3px);
    border-color: rgba(93, 221, 188, 0.5);
    box-shadow:
      0 15px 28px rgba(8, 24, 20, 0.16),
      0 0 0 2px rgba(147, 255, 227, 0.22);
  }
}

@keyframes product-card-sheen {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(140%);
  }
}

@keyframes product-card-breathe {
  0%,
  100% {
    border-color: rgba(40, 93, 79, 0.2);
    box-shadow: 0 12px 22px rgba(6, 30, 22, 0.08);
  }
  50% {
    border-color: rgba(105, 226, 194, 0.5);
    box-shadow:
      0 18px 34px rgba(6, 30, 22, 0.16),
      0 0 0 1px rgba(153, 255, 230, 0.34);
  }
}

@keyframes product-cta-nudge {
  0%,
  76%,
  100% {
    transform: translateY(0);
  }
  82% {
    transform: translateY(-1px);
  }
  90% {
    transform: translateY(0);
  }
}

@keyframes hero-star-glow {
  0%,
  70%,
  100% {
    opacity: 0.9;
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(137, 248, 223, 0);
  }
  35% {
    opacity: 1;
    transform: translateY(-0.5px) scale(1.12);
    text-shadow:
      0 0 8px rgba(137, 248, 223, 0.75),
      0 0 14px rgba(137, 248, 223, 0.45);
  }
}
