:root {
  --bg: #020407;
  --panel: rgba(9, 15, 23, 0.78);
  --panel-strong: #07101a;
  --line: rgba(136, 218, 255, 0.22);
  --text: #f5fbff;
  --muted: #a9b6c2;
  --blue: #1eb7ff;
  --blue-soft: #7bdcff;
  --shadow: 0 0 42px rgba(30, 183, 255, 0.24);
  font-size: 112.5%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1320px, calc(100% - 24px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 4, 7, 0.72);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.site-nav,
.hero-actions,
.contact-lines {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 1 290px;
  gap: 12px;
  min-width: 0;
}

.brand span {
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: 50px;
  border: 1px solid rgba(123, 220, 255, 0.9);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 0 26px rgba(30, 183, 255, 0.55), inset 0 0 18px rgba(30, 183, 255, 0.28);
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-size: 0.94rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav {
  flex: 0 1 auto;
  min-width: 0;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover,
footer a:hover {
  color: var(--blue-soft);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
}

.nav-cta {
  flex: 0 0 auto;
  gap: 9px;
  padding: 0 16px;
  background: linear-gradient(135deg, rgba(30, 183, 255, 0.95), rgba(123, 220, 255, 0.28));
  box-shadow: 0 0 26px rgba(30, 183, 255, 0.34);
  color: var(--text);
  font-size: 0.82rem;
  white-space: nowrap;
}

.nav-cta img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
}

.section-pad {
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 110px;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding-top: 164px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.96) 0%, rgba(2, 4, 7, 0.78) 42%, rgba(2, 4, 7, 0.38) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(2, 4, 7, 0) 32%);
}

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

.hero-logo-badge {
  position: absolute;
  right: 42px;
  top: min(62%, 590px);
  bottom: auto;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: clamp(220px, 18vw, 320px);
  border: 1px solid rgba(123, 220, 255, 0.82);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(2, 4, 7, 0.94), rgba(7, 16, 26, 0.66)),
    radial-gradient(circle at 50% 100%, rgba(30, 183, 255, 0.22), transparent 56%);
  box-shadow:
    0 0 56px rgba(30, 183, 255, 0.42),
    0 18px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 28px rgba(123, 220, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-logo-badge span {
  color: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-logo-badge img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: #000;
  box-shadow: inset 0 0 18px rgba(123, 220, 255, 0.1);
  object-fit: contain;
}

.hero-grid,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: end;
}

.hero-grid {
  grid-template-columns: minmax(0, 680px) minmax(260px, 1fr);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 5.6vw, 5.4rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.7vw, 3.05rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 560px;
  color: #d6e3ed;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.mobile-service-banner {
  display: inline-grid;
  gap: 6px;
  margin-top: 20px;
  border: 1px solid rgba(123, 220, 255, 0.52);
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(2, 4, 7, 0.66);
  box-shadow: 0 0 30px rgba(30, 183, 255, 0.18);
}

.mobile-service-banner span {
  color: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-service-banner strong {
  color: var(--text);
  font-size: 1.02rem;
}

.button {
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  text-align: center;
}

.button.primary {
  background: var(--blue);
  box-shadow: var(--shadow);
  color: #00131f;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 24px var(--blue);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}

.metrics strong {
  display: block;
  color: var(--blue-soft);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.wide {
  max-width: 1040px;
}

.section-heading.compact {
  max-width: 880px;
  margin-bottom: 28px;
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article,
.benefit-grid article,
.quote-form {
  background: var(--panel-strong);
}

.service-grid article,
.benefit-grid article {
  min-height: 260px;
  padding: 26px;
}

.service-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-grid p,
.benefit-grid p,
.ba-card p,
.video-copy p,
.about-copy p,
footer {
  color: var(--muted);
}

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

.compare-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(30, 183, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.compare-grid ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: #d6e3ed;
}

.compare-grid li + li {
  margin-top: 10px;
}

.cost-note {
  color: var(--blue-soft);
  font-weight: 800;
}

.recommend-label {
  margin: 22px 0 8px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.applications-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.applications-modern > div {
  padding: 30px;
  background: var(--panel-strong);
}

.mini-kicker {
  display: inline-flex;
  margin: 0 0 20px;
  border: 1px solid rgba(123, 220, 255, 0.42);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--blue-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-kicker.dry {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text);
}

.applications-modern ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.applications-modern li {
  position: relative;
  padding-left: 26px;
  color: #d6e3ed;
}

.applications-modern li strong {
  color: var(--text);
  font-weight: 900;
}

.applications-modern li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  color: var(--blue-soft);
  content: "+";
  font-weight: 900;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(30, 183, 255, 0.035);
}

.dry-ice-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.dry-ice-copy,
.dry-ice-images {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.dry-ice-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
}

.dry-ice-copy h3 {
  font-size: clamp(1.6rem, 2.7vw, 3rem);
  line-height: 1.08;
}

.dry-ice-copy p:not(.eyebrow) {
  color: var(--muted);
}

.dry-ice-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: center;
  overflow: hidden;
  padding: 14px;
  background: var(--panel-strong);
}

.dry-ice-images img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 300px;
  border: 1px solid rgba(136, 218, 255, 0.22);
  border-radius: 6px;
  background: #05090d;
  object-fit: contain;
  object-position: center;
}

.dry-ice-images img:first-child {
  max-height: 330px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.process-card {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 14%, rgba(30, 183, 255, 0.16), transparent 32%),
    var(--panel-strong);
}

.process-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  margin-bottom: 22px;
  border: 1px solid rgba(136, 218, 255, 0.24);
  border-radius: 6px;
  background: #7cc3e5;
  object-fit: cover;
  object-position: top center;
}

.process-card span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(123, 220, 255, 0.46);
  border-radius: 999px;
  color: var(--blue-soft);
  font-weight: 900;
}

.process-card p {
  color: var(--muted);
}

.process-diagram {
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--panel-strong);
}

.process-diagram img {
  width: 100%;
  border-radius: 6px;
}

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

.ba-card {
  display: grid;
  gap: 20px;
}

.ba-card-feature {
  max-width: 980px;
}

.ba-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05090d;
  box-shadow: var(--shadow);
}

.ba-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 200% 100%;
}

.ba-before {
  background-image: var(--image);
  background-position: left center;
}

.ba-after {
  background-image: var(--image);
  clip-path: inset(0 0 0 var(--position));
  background-position: right center;
}

.ba-slider.dual .ba-layer {
  background-size: cover;
  background-position: center;
}

.ba-slider.dual .ba-before {
  background-image: var(--before);
}

.ba-slider.dual .ba-after {
  background-image: var(--after);
}

.ba-slider input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 2px;
  background: var(--blue-soft);
  box-shadow: 0 0 24px var(--blue);
}

.ba-handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(2, 4, 7, 0.78);
  color: var(--blue-soft);
  content: "<>";
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.ba-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(2, 4, 7, 0.72);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-label.before {
  left: 16px;
}

.ba-label.after {
  right: 16px;
}

.result-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 360px;
  max-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05090d;
  box-shadow: var(--shadow);
}

.result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-photo-clean {
  background: #05090d;
}

.result-photo-clean img {
  object-fit: contain;
}

.result-photo-wide {
  aspect-ratio: 16 / 9;
  max-height: none;
}

.result-photo-wide img {
  object-fit: contain;
}

.result-split-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 50%);
  z-index: 2;
  width: 3px;
  background: var(--blue-soft);
  box-shadow: 0 0 22px rgba(30, 183, 255, 0.85);
}

.result-split-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(2, 4, 7, 0.78);
  color: var(--blue-soft);
  content: "";
  transform: translate(-50%, -50%);
}

.video-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.video-shell video {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 560px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  background: var(--panel-strong);
}

.work-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.work-video-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.work-video-grid article.is-playing {
  border-color: rgba(123, 220, 255, 0.72);
  box-shadow: 0 0 30px rgba(30, 183, 255, 0.2);
}

.work-video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.work-video-grid article > div {
  padding: 20px;
}

.work-video-grid .mini-kicker {
  margin-bottom: 14px;
}

.work-video-grid p:not(.mini-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.eco-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 26px;
  border: 2px solid rgba(123, 220, 255, 0.82);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 18%, rgba(123, 220, 255, 0.34), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(48, 255, 180, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(30, 183, 255, 0.24), rgba(7, 35, 25, 0.92));
  box-shadow: 0 0 64px rgba(30, 183, 255, 0.34), inset 0 0 46px rgba(123, 220, 255, 0.08);
}

.eco-feature > div:first-child {
  grid-column: 1 / -1;
}

.eco-feature .eco-badges {
  grid-column: 1 / -1;
}

.eco-kicker {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 44px);
  width: 100%;
  max-width: 1040px;
  margin-bottom: 34px;
  border: 2px solid rgba(123, 220, 255, 0.88);
  border-radius: 999px;
  padding: clamp(22px, 2.8vw, 38px) clamp(34px, 5vw, 76px);
  background: linear-gradient(135deg, rgba(123, 220, 255, 0.2), rgba(30, 183, 255, 0.08));
  box-shadow: 0 0 44px rgba(30, 183, 255, 0.36), inset 0 0 24px rgba(123, 220, 255, 0.1);
  color: #d8fbff;
  font-size: clamp(2rem, 3.45vw, 3.85rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eco-kicker img {
  width: clamp(150px, 12vw, 220px);
  height: clamp(150px, 12vw, 220px);
  flex: 0 0 auto;
  border: 1px solid rgba(123, 220, 255, 0.88);
  border-radius: 999px;
  background: #000;
  box-shadow: 0 0 34px rgba(30, 183, 255, 0.84);
  object-fit: cover;
}

.eco-kicker span {
  flex: 1;
  min-width: 0;
  max-width: 720px;
}

.eco-points {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.eco-points li {
  position: relative;
  border-left: 3px solid var(--blue-soft);
  padding: 10px 0 10px 18px;
  color: #d6e3ed;
}

.eco-points strong {
  color: var(--text);
}

.eco-feature h3 {
  max-width: 860px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.04;
  text-shadow: 0 0 34px rgba(30, 183, 255, 0.24);
}

.eco-feature p:not(.eyebrow) {
  max-width: 760px;
  color: #d6e3ed;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

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

.eco-badges span {
  min-height: 116px;
  border: 1px solid rgba(123, 220, 255, 0.56);
  border-radius: 8px;
  padding: 22px;
  background: rgba(2, 4, 7, 0.58);
  color: #e9fdff;
  box-shadow: inset 0 0 20px rgba(123, 220, 255, 0.08);
  font-size: 1.04rem;
  font-weight: 900;
}

.about {
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(30, 183, 255, 0.08), transparent 42%);
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.contact {
  align-items: start;
}

.contact-lines {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 28px 0;
  font-size: 1.08rem;
}

.contact-lines a {
  color: var(--blue-soft);
}

.contact-lines strong {
  color: var(--text);
}

iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05090d;
  box-shadow: 0 0 34px rgba(30, 183, 255, 0.12);
}

.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(123, 220, 255, 0.5);
  border-radius: 6px;
  padding: 0 18px;
  background: rgba(30, 183, 255, 0.1);
  color: var(--blue-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.quote-brand {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 10px;
  text-align: center;
}

.quote-brand img {
  width: min(220px, 100%);
  height: auto;
  max-height: 155px;
  border: 1px solid rgba(123, 220, 255, 0.9);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 0 42px rgba(30, 183, 255, 0.48);
  object-fit: contain;
}

.quote-brand h3 {
  margin: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(136, 218, 255, 0.2);
  border-radius: 6px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

select option {
  color: #06101a;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.thank-you-card {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(32px, 6vw, 72px);
  background:
    radial-gradient(circle at 18% 12%, rgba(30, 183, 255, 0.2), transparent 32%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.thank-you-card img {
  width: 160px;
  margin-bottom: 28px;
  border: 1px solid rgba(123, 220, 255, 0.72);
  border-radius: 8px;
  background: #000;
}

.thank-you-card h1 {
  max-width: 620px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

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

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(136, 218, 255, 0.14);
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(136, 218, 255, 0.16);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.86rem;
  }

  .hero-grid,
  .about,
  .contact,
  .video-shell,
  .slider-grid,
  .compare-grid,
  .process-grid,
  .dry-ice-visual,
  .applications-modern,
  .work-video-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 154px;
  }

  .hero-logo-badge {
    right: 24px;
    top: 56%;
    width: 210px;
  }

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

  .benefit-grid,
  .eco-feature,
  .metrics {
    grid-template-columns: 1fr;
  }

  .ba-slider,
  .result-photo {
    min-height: 360px;
  }

  .video-shell video {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    overflow: hidden;
    padding: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 52px;
    height: 46px;
    flex: 0 0 auto;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    overflow: hidden;
    font-size: 0.98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .section-pad {
    padding: 72px 16px;
    scroll-margin-top: 136px;
  }

  .hero {
    padding-top: 178px;
    padding-bottom: 56px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(2, 4, 7, 0.98) 0%, rgba(2, 4, 7, 0.82) 58%, rgba(2, 4, 7, 0.44) 100%),
      linear-gradient(0deg, var(--bg) 0%, rgba(2, 4, 7, 0) 42%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-logo-badge {
    display: none;
  }

  .hero-logo-badge span {
    display: none;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
    line-height: 1.05;
  }

  h3 {
    font-size: 1.08rem;
  }

  p,
  li {
    font-size: 0.98rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .mobile-service-banner {
    width: 100%;
    margin-top: 14px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
  }

  .compare-grid article,
  .eco-feature,
  .quote-form {
    padding: 20px;
  }

  .eco-feature h3 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .eco-kicker {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: 18px;
    gap: 16px;
    padding: 18px;
    font-size: clamp(1.35rem, 7vw, 2rem);
    letter-spacing: 0.06em;
  }

  .eco-kicker img {
    width: 112px;
    height: 112px;
    flex: 0 0 auto;
  }

  .eco-badges {
    grid-template-columns: 1fr;
  }

  .eco-badges span {
    min-height: auto;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .service-grid,
  .benefit-grid,
  .about-list {
    grid-template-columns: 1fr;
  }

  .applications-modern > div,
  .dry-ice-copy,
  .process-card {
    padding: 22px;
  }

  .dry-ice-images {
    grid-template-columns: 1fr;
  }

  .dry-ice-images img {
    max-height: none;
  }

  .process-card {
    min-height: auto;
  }

  .process-card span {
    margin-bottom: 34px;
  }

  .process-card img {
    max-height: 220px;
  }

  .service-grid article,
  .benefit-grid article {
    min-height: auto;
  }

  .service-grid span {
    margin-bottom: 28px;
  }

  .ba-slider,
  .result-photo {
    min-height: 300px;
  }

  .ba-handle::after {
    width: 42px;
    height: 42px;
  }

  .video-shell video {
    aspect-ratio: 16 / 10;
    min-height: 0;
    height: auto;
  }

  .video-copy {
    padding: 20px;
  }

  .work-video-grid article > div {
    padding: 20px;
  }

  .metrics div {
    padding: 24px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .contact-lines {
    font-size: 1rem;
  }

  iframe {
    min-height: 260px;
  }

  footer {
    flex-direction: column;
    padding: 26px 16px;
  }
}

@media (max-width: 390px) {
  .site-nav a {
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  h1 {
    font-size: 2.15rem;
  }

  .ba-slider,
  .result-photo {
    min-height: 280px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
