:root {
  --white: #fafaf8;
  --off: #f0f0ec;
  --off2: #e4e4de;
  --lime: #aadd00;
  --lime-sat: #bbed00;
  --lime-dim: #7da800;
  --ink: #111110;
  --ink-mid: #1e1e1c;
  --ink-soft: #58584f;
  --ink-dim: #96968c;
  --border: rgba(17, 17, 16, .07);
  --border-md: rgba(17, 17, 16, .12);
  --border-strong: rgba(17, 17, 16, .18);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s;
  box-shadow: 0 0 10px rgba(170, 221, 0, .55);
}

.cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, opacity .2s;
  opacity: .4;
}

.cur.on {
  width: 14px;
  height: 14px;
}

.cur-ring.on {
  width: 52px;
  height: 52px;
  opacity: .65;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  /*right: 0;*/
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 64px;
  transition: padding .3s, background .3s, box-shadow .3s;
  width: 100%;
}

nav.stuck {
  padding: 15px 64px;
  background: #000;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-md);
}

nav.stuck a.nav-btn {
  background: var(--lime) !important;
  color: #000 !important;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.5px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-dot {
  color: var(--lime-sat);
  font-size: 26px;
  line-height: 0;
  position: relative;
  top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2px;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-btn {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .5px;
  border-radius: 2px;
  transition: opacity .2s, transform .15s !important;
}

.nav-btn:hover {
  opacity: .82;
  transform: translateY(-1px);
}

.pg-hero,
.hero {
  margin-top: -20px !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px 64px 50px;
  /* position: relative; */
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000;
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .66) 48%, rgba(0, 0, 0, .38) 100%);
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(17, 17, 16, .052) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -140px;
  right: 0px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .11) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7ca600;
  margin-bottom: 26px;
  opacity: 0;
  animation: up .7s .15s forwards;
      margin-top: 29px;
}

.eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--lime);
}

h1.hero-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(60px, 6.2vw, 94px);
  line-height: 1.0;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  animation: up .8s .28s forwards;
}

h1.hero-h em {
  font-style: italic;
  color: #9a9a9a;
}

h1.hero-h .green {
  color: #7ca600;
  font-style: normal;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  max-width: 430px;
  margin-bottom: 46px;
  opacity: 0;
  animation: up .8s .42s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  animation: up .8s .56s forwards;
}

.btn-solid {
  background: var(--lime);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: background .2s, box-shadow .2s, transform .15s;
}

.btn-solid:hover {
  background: var(--lime-sat);
  box-shadow: 0 6px 26px rgba(170, 221, 0, .38);
  transform: translateY(-2px);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  padding: 13px 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--border-strong);
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: border-color .2s;
}

.btn-line:hover {
  border-color: var(--ink);
}

.hero .btn-line {
  color: #fff;
  border-color: rgba(255, 255, 255, .62);
}

.hero .btn-line:hover {
  border-color: #fff;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadein 1.1s .5s forwards;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  width: 100%;
  max-width: 476px;
  box-shadow: 0 20px 80px rgba(17, 17, 16, .08), 0 4px 14px rgba(17, 17, 16, .04);
  overflow: hidden;
}

.hero-card-top {
  background: var(--ink);
  padding: 26px 30px 22px;
  position: relative;
  overflow: hidden;
}

.hero-card-top::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(170, 221, 0, .1);
}

.hct-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.hct-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.hero-card-body {
  padding: 24px 30px;
}

.c-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.c-row:last-child {
  border-bottom: none;
}

.c-row .lbl {
  font-size: 13px;
  color: var(--ink-soft);
}

.val-bad {
  color: #a83030;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.val-bad::before {
  content: '—';
  font-size: 10px;
  opacity: .6;
}

.val-good {
  color: var(--lime-dim);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.val-good::before {
  content: '✓';
  font-size: 11px;
}

.hero-card-foot {
  background: rgba(170, 221, 0, .07);
  border-top: 1px solid rgba(170, 221, 0, .18);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-note {
  font-size: 11px;
  color: var(--ink-soft);
}

.foot-tag {
  background: var(--ink);
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.hero-stats {
  display: flex;
  margin-top: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  overflow: hidden;
}

.h-stat {
  flex: 1;
  padding: 17px 14px;
  text-align: center;
  border-right: 1px solid var(--border-strong);
  background: var(--white);
  transition: background .2s;
}

.h-stat:last-child {
  border-right: none;
}

.h-stat:hover {
  background: var(--off);
}

.h-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  display: block;
}

.h-stat-val span {
  color: var(--lime-dim);
}

.h-stat-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 2px;
  display: block;
}

/* TICKER */
.ticker {
  background: var(--ink);
  padding: 13px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}

.ticker-item {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250, 250, 248, .45);
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.ticker-sep {
  color: var(--lime);
  font-size: 14px;
  line-height: 0;
  opacity: .7;
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* SHARED */
section {
  padding: 108px 64px;
}

.sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sec-label::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--lime);
}

h2.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -.4px;
  margin-bottom: 18px;
}

h2.sec-title em {
  font-style: italic;
  color: var(--ink-soft);
}

h2.sec-title strong {
  font-weight: 500;
  color: var(--ink);
  font-style: normal;
}

/* SVG icon base */
.ico-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 3px;
}

.ico-box svg {
  display: block;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* DISCOVERY */
.discovery {
  background: var(--off);
}

.disc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.disc-copy p.body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 430px;
  margin-bottom: 36px;
}

.disc-points {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.d-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px 24px;
  border-left: 3px solid transparent;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
}

.d-point:hover {
  border-left-color: var(--lime);
  box-shadow: 4px 0 22px rgba(17, 17, 16, .05);
  transform: translateX(4px);
}

.d-ico {
  width: 36px;
  height: 36px;
  min-width: 36px;
  margin-top: 2px;
}

.d-ico svg {
  width: 18px;
  height: 18px;
}

.d-point h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.d-point p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.disc-panel {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(17, 17, 16, .06);
}

.disc-panel-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--off2);
  border-bottom: 1px solid var(--border-strong);
}

.dph {
  padding: 13px 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-right: 1px solid var(--border);
}

.dph:last-child {
  border-right: none;
}

.dph.hl {
  background: var(--ink);
  color: var(--lime);
}

.disc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.disc-row:last-child {
  border-bottom: none;
}

.dc {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-soft);
  border-right: 1px solid var(--border);
}

.dc:last-child {
  border-right: none;
}

.dc.attr {
  font-weight: 500;
  color: var(--ink);
  font-size: 12px;
}

.dc.bad {
  color: #a03030;
}

.dc.good {
  color: var(--lime-dim);
  font-weight: 600;
}

.dc.hlc {
  background: rgba(170, 221, 0, .04);
}

/* PROCESS */
.process-sec {
  background: var(--white);
}

.process-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 68px;
}

.process-head p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-top: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-md);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
}

.step {
  background: var(--white);
  padding: 40px 28px 34px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.step:hover {
  background: var(--off);
}

.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background .25s;
}

.step:hover::after {
  background: var(--lime);
}

.step-n {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 20px;
  display: block;
}

.step-ico {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.step-ico svg {
  width: 22px;
  height: 22px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.ghost-num {
  position: absolute;
  bottom: -8px;
  right: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 78px;
  font-weight: 800;
  color: rgba(17, 17, 16, .03);
  line-height: 1;
  pointer-events: none;
}

/* BLACK BAND */
.black-band {
  background: var(--ink);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  overflow: hidden;
}

.black-band::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .07) 0%, transparent 68%);
  pointer-events: none;
}

.bb-stat {
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.bb-stat:last-child {
  border-right: none;
}

.bb-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.bb-stat-val span {
  color: var(--lime);
}

.bb-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.bb-stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
  margin-top: 10px;
}

/* SECTORS */
.sectors-sec {
  background: var(--off);
}

.sectors-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.sectors-top p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  padding-top: 40px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.s-card {
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  padding: 34px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.s-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(170, 221, 0, .04);
  transition: height .35s;
}

.s-card:hover::before {
  height: 100%;
}

.s-card:hover {
  box-shadow: 0 12px 44px rgba(17, 17, 16, .08);
  transform: translateY(-4px);
  border-color: rgba(170, 221, 0, .35);
}

.s-ico {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.s-ico svg {
  width: 20px;
  height: 20px;
}

.s-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 9px;
}

.s-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.s-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.s-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lime-dim);
  border: 1px solid rgba(170, 221, 0, .3);
  padding: 3px 8px;
  border-radius: 2px;
}

/* WHY */
.why-sec {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.w-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .25s;
}

.w-item:first-child {
  border-top: 1px solid var(--border);
}

.w-item:hover {
  padding-left: 6px;
}

.w-tick {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.w-tick svg {
  width: 12px;
  height: 12px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.w-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.w-item p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.why-right p.body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 18px 0 36px;
}

.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.badge {
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s, background .2s;
}

.badge:hover {
  border-color: rgba(170, 221, 0, .4);
  background: rgba(170, 221, 0, .025);
}

.badge-ico {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--off);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-txt strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.badge-txt span {
  font-size: 11px;
  color: var(--ink-dim);
  line-height: 1.5;
  display: block;
}

/* CTA BAND */
.cta-band {
  background: var(--ink);
  padding: 88px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .09) 0%, transparent 68%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.3px;
}

.cta-band h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, .4);
}

.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, .42);
  margin-top: 14px;
  max-width: 460px;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cta-note {
  font-size: 11px;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .22);
  text-align: right;
}

/* CONTACT */
.contact-sec {
  background: var(--off);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

.contact-info {
  padding-top: 40px;
}

.c-block {
  margin-bottom: 28px;
}

.c-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 5px;
}

.c-val {
  font-size: 16px;
  color: var(--ink);
}

.c-div {
  height: 1px;
  background: var(--border-strong);
  margin: 24px 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.f-field {
  display: flex;
  flex-direction: column;
   padding-bottom:20px;
  gap: 7px;
}

.f-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.f-inp {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--ink);
  padding: 13px 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.f-inp:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(170, 221, 0, .1);
}

.f-inp::placeholder {
  color: var(--ink-dim);
}

textarea.f-inp {
  min-height: 116px;
  resize: vertical;
}

.sector-sel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sel-btn {
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: 2px;
  padding: 11px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: none;
  transition: all .2s;
  text-align: center;
}

.sel-btn:hover,
.sel-btn.act {
  border-color: var(--lime);
  color: var(--lime-dim);
  background: rgba(170, 221, 0, .04);
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 64px 64px 36px;
}

.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.foot-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.foot-brand span {
  color: var(--lime-sat);
}

.foot-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 230px;
}

.foot-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

.foot-links a:hover {
  color: rgba(255, 255, 255, .7);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.foot-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .3px;
}

.foot-legal {
  display: flex;
  gap: 22px;
}

.foot-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: color .2s;
}

.foot-legal a:hover {
  color: rgba(255, 255, 255, .48);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--border-md);
  margin: 0 64px;
}

/* PROBLEMS SECTION */
.problems-sec {
  background: var(--ink);
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.problems-sec::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .06) 0%, transparent 68%);
  pointer-events: none;
}

.problems-sec::after {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .04) 0%, transparent 68%);
  pointer-events: none;
}

.problems-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.problems-head-left .sec-label-inv {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.problems-head-left .sec-label-inv::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--lime);
}

.problems-head-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -.4px;
  color: #fff;
  margin-bottom: 0;
}

.problems-head-left h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, .65);
}

.problems-head-left h2 strong {
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

.problems-head-right p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .7);
  max-width: 420px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 4px;
  overflow: hidden;
}

.prob-card {
  background: var(--ink);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}

.prob-card:hover {
  background: var(--ink-mid);
}

.prob-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}

.prob-card:hover::before {
  background: var(--lime);
}

.prob-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .2);
  margin-bottom: 20px;
  display: block;
}

.prob-ico-wrap {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color .3s;
}

.prob-card:hover .prob-ico-wrap {
  border-color: rgba(170, 221, 0, .35);
}

.prob-ico-wrap svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, .5);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}

.prob-card:hover .prob-ico-wrap svg {
  stroke: var(--lime);
}

.prob-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.prob-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.65;
}

.prob-solve {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.prob-solve-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.prob-solve span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--lime);
  opacity: .75;
}
@media(max-width:1600px){
    .hero {
  padding: 130px 64px 18px;
}
body.inner-page.the-products-page .product-card {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.inner-page.contact-page .form-inner {
max-width: 100% !important;
}
}

@media(max-width:1100px) {
  .problems-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .problems-grid {
    grid-template-columns: 1fr 1fr;
  }

  .problems-sec {
    padding: 80px 32px;
  }
}
@media(max-width:1024px){
    .nav-links{
        align-items: center !important;
    }
    .foot-top {
    grid-template-columns: repeat(4, 1fr) !important;
  }
   .benefits-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .disc-points {
 
  flex-direction: row !important;
 
}
.sector-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
}
  body.inner-page.the-system-page .step-full {
    grid-template-columns: 80px 1fr 1fr !important;
  }
  body.inner-page.the-system-page .step-detail{
      display: block !important;
  }
 img.footer-logo {
  width: 50% !important;
}
}

@media(max-width:600px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
}

/* BENEFITS SECTION */
.benefits-sec {
  background: var(--white);
  padding: 108px 64px;
  position: relative;
  overflow: hidden;
}

.benefits-sec::after {
  content: '';
  position: absolute;
  bottom: -220px;
  right: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .07) 0%, transparent 68%);
  pointer-events: none;
}

.benefits-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.benefits-head p.intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  padding-top: 44px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-md);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
}

.ben-item {
  background: var(--white);
  padding: 34px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: background .25s;
  cursor: default;
}

.ben-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 0;
  background: var(--lime);
  transition: height .25s;
  border-radius: 2px 2px 0 0;
}

.ben-item:hover {
  background: var(--off);
}

.ben-item:hover::after {
  height: 2px;
}

.ben-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--lime-dim);
  min-width: 28px;
  padding-top: 3px;
}

.ben-content {
  flex: 1;
}

.ben-ico-wrap {
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .25s;
}

.ben-item:hover .ben-ico-wrap {
  background: var(--lime);
}

.ben-ico-wrap svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s;
}

.ben-item:hover .ben-ico-wrap svg {
  stroke: var(--ink);
}

.ben-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ben-content p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.ben-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
}

.ben-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--lime);
}

@media(max-width:1100px) {
  .benefits-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefits-sec {
    padding: 80px 32px;
  }
}

/* ANIMS */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:1100px) {
  nav {
    padding: 20px 32px;
  }

  nav.stuck {
    padding: 14px 32px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 80px 32px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 130px 32px 88px;
    gap: 48px;
  }

  .hero-right {
    display: none;
  }

  .disc-grid,
  .why-grid,
  .contact-grid,
  .sectors-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }

  .cta-band-actions {
    align-items: flex-start;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .sectors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .black-band {
    grid-template-columns: 1fr 1fr;
    padding: 60px 32px;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    padding: 48px 32px 28px;
  }

  .divider {
    margin: 0 32px;
  }
  body.inner-page.the-system-page .pg-hero-inner{
          padding-top: 19px;
  }
}

@media(max-width:600px) {

  .steps,
  .sectors-grid,
  .form-row,
  .sector-sel,
  .badges,
  .black-band,
  .foot-top {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

a.logo img {
  width: 35%;
}

img.footer-logo {
  width: 30%;
}

/* === Inner Pages (generated) === */

/* Inner page: The System - DryCare Commercial */

:root {
  --white: #fafaf8;
  --off: #f0f0ec;
  --off2: #e4e4de;
  --lime: #aadd00;
  --lime-sat: #bbed00;
  --lime-dim: #7da800;
  --ink: #111110;
  --ink-mid: #1e1e1c;
  --ink-soft: #58584f;
  --ink-dim: #96968c;
  --border: rgba(17, 17, 16, .07);
  --border-md: rgba(17, 17, 16, .12);
  --border-strong: rgba(17, 17, 16, .18);
}

body.inner-page.the-system-page *,
body.inner-page.the-system-page *::before,
body.inner-page.the-system-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.inner-page.the-system-page {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

body.inner-page.the-system-page .cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--lime-sat);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s;
  box-shadow: 0 0 10px rgba(170, 221, 0, .55);
}

body.inner-page.the-system-page .cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, opacity .2s;
  opacity: .4;
}

body.inner-page.the-system-page .cur.on {
  width: 14px;
  height: 14px;
}

body.inner-page.the-system-page .cur-ring.on {
  width: 52px;
  height: 52px;
  opacity: .65;
}

body.inner-page.the-system-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 64px;
  transition: padding .3s, background .3s, box-shadow .3s;
}

body.inner-page.the-system-page nav.stuck {
  padding: 15px 64px;
  /* background: rgba(250, 250, 248, .94); */
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-md);
}

body.inner-page.the-system-page .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.5px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

body.inner-page.the-system-page .logo-dot {
  color: var(--lime-sat);
  font-size: 26px;
  line-height: 0;
  position: relative;
  top: 1px;
}

body.inner-page.the-system-page .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

body.inner-page.the-system-page .nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}


body.inner-page.the-system-page .nav-btn {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .5px;
  border-radius: 2px;
  transition: opacity .2s, transform .15s !important;
}

body.inner-page.the-system-page .nav-btn:hover {
  opacity: .82;
  transform: translateY(-1px);
}

body.inner-page.the-system-page section {
  padding: 108px 64px;
}

body.inner-page.the-system-page .sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.inner-page.the-system-page .sec-label::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--lime);
}

body.inner-page.the-system-page h2.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -.4px;
  margin-bottom: 18px;
}

body.inner-page.the-system-page h2.sec-title em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.the-system-page h2.sec-title strong {
  font-weight: 500;
  color: var(--ink);
  font-style: normal;
}

body.inner-page.the-system-page .btn-solid {
  background: var(--lime);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: background .2s, box-shadow .2s, transform .15s;
}

body.inner-page.the-system-page .btn-solid:hover {
  background: var(--lime-sat);
  box-shadow: 0 6px 26px rgba(170, 221, 0, .38);
  transform: translateY(-2px);
}

body.inner-page.the-system-page .btn-line {
  background: transparent;
  color: var(--ink);
  padding: 13px 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--border-strong);
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: border-color .2s;
}

body.inner-page.the-system-page .btn-line:hover {
  border-color: var(--ink);
}

body.inner-page.the-system-page .divider {
  height: 1px;
  background: var(--border-md);
  margin: 0 64px;
}

body.inner-page.the-system-page footer {
  background: var(--ink);
  padding: 64px 64px 36px;
}

body.inner-page.the-system-page .foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

body.inner-page.the-system-page .foot-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

body.inner-page.the-system-page .foot-brand span {
  color: var(--lime-sat);
}

body.inner-page.the-system-page .foot-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 230px;
}

body.inner-page.the-system-page .foot-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px;
}

body.inner-page.the-system-page .foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.inner-page.the-system-page .foot-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.the-system-page .foot-links a:hover {
  color: rgba(255, 255, 255, .7);
}

body.inner-page.the-system-page .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

body.inner-page.the-system-page .foot-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .3px;
}

body.inner-page.the-system-page .foot-legal {
  display: flex;
  gap: 22px;
}

body.inner-page.the-system-page .foot-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.the-system-page .foot-legal a:hover {
  color: rgba(255, 255, 255, .48);
}

body.inner-page.the-system-page .pg-hero {
  padding: 170px 64px 110px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

body.inner-page.the-system-page .pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 17, 16, .052) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

body.inner-page.the-system-page .pg-hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .09) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-system-page .pg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

body.inner-page.the-system-page .pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 24px;
  opacity: 0;
  animation: up .7s .15s forwards;
}

body.inner-page.the-system-page .pg-eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--lime);
}

body.inner-page.the-system-page h1.pg-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: up .8s .28s forwards;
}

body.inner-page.the-system-page h1.pg-h em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.the-system-page .pg-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
  opacity: 0;
  animation: up .8s .42s forwards;
}

body.inner-page.the-system-page .pg-hero-line {
  position: absolute;
  bottom: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: var(--border-md);
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

body.inner-page.the-system-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}

body.inner-page.the-system-page .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.inner-page.the-system-page .ico-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 3px;
}

body.inner-page.the-system-page .ico-box svg {
  display: block;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.the-system-page

/* CTA BAND */
.cta-band {
  background: var(--ink);
  padding: 88px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-system-page .cta-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .09) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-system-page .cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.3px;
}

body.inner-page.the-system-page .cta-band h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, .4);
}

body.inner-page.the-system-page .cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, .42);
  margin-top: 14px;
  max-width: 460px;
}

body.inner-page.the-system-page .cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

body.inner-page.the-system-page .cta-note {
  font-size: 11px;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .22);
  text-align: right;
}

body.inner-page.the-system-page

/* PROCESS STEPS */
.steps-full {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-md);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
}

body.inner-page.the-system-page .step-full {
  background: var(--white);
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  align-items: stretch;
  transition: background .25s;
  position: relative;
}

body.inner-page.the-system-page .step-full:hover {
  background: var(--off);
}

body.inner-page.the-system-page .step-full::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .25s;
}

body.inner-page.the-system-page .step-full:hover::before {
  background: var(--lime);
}

body.inner-page.the-system-page .step-num-col {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

body.inner-page.the-system-page .step-num-col span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: rgba(255, 255, 255, .25);
}

body.inner-page.the-system-page .step-main {
  padding: 40px 40px 40px 36px;
  border-right: 1px solid var(--border-md);
}

body.inner-page.the-system-page .step-ico-wrap {
  width: 44px;
  height: 44px;
  background: var(--off);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

body.inner-page.the-system-page .step-ico-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.the-system-page .step-full h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

body.inner-page.the-system-page .step-full p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

body.inner-page.the-system-page .step-detail {
  padding: 40px 36px;
}

body.inner-page.the-system-page .step-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 14px;
}

body.inner-page.the-system-page .step-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.inner-page.the-system-page .step-detail ul li {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

body.inner-page.the-system-page .step-detail ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 6px;
}

body.inner-page.the-system-page

/* WHY DRY */
.why-dry {
  background: var(--off);
}

body.inner-page.the-system-page .why-dry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

body.inner-page.the-system-page .why-dry-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

body.inner-page.the-system-page .metric-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

body.inner-page.the-system-page .metric {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border-md);
}

body.inner-page.the-system-page .metric:not(:last-child) {
  border-bottom: none;
}

body.inner-page.the-system-page .mc {
  padding: 16px 20px;
  font-size: 13px;
  border-right: 1px solid var(--border);
}

body.inner-page.the-system-page .mc:last-child {
  border-right: none;
}

body.inner-page.the-system-page .mc.attr {
  font-weight: 500;
  color: var(--ink);
  font-size: 12px;
}

body.inner-page.the-system-page .mc.bad {
  color: #a03030;
}

body.inner-page.the-system-page .mc.good {
  color: var(--lime-dim);
  font-weight: 600;
}

body.inner-page.the-system-page .mc.hlc {
  background: rgba(170, 221, 0, .04);
}

body.inner-page.the-system-page .metric-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--off2);
  border: 1px solid var(--border-md);
  border-bottom: none;
}

body.inner-page.the-system-page .mh {
  padding: 12px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-right: 1px solid var(--border);
}

body.inner-page.the-system-page .mh:last-child {
  border-right: none;
}

body.inner-page.the-system-page .mh.hl {
  background: var(--ink);
  color: var(--lime);
}

body.inner-page.the-system-page

/* SCIENCE */
.science-sec {
  background: var(--white);
}

body.inner-page.the-system-page .science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

body.inner-page.the-system-page .sci-card {
  background: var(--off);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  padding: 36px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: default;
}

body.inner-page.the-system-page .sci-card:hover {
  box-shadow: 0 12px 44px rgba(17, 17, 16, .08);
  transform: translateY(-4px);
  border-color: rgba(170, 221, 0, .35);
}

body.inner-page.the-system-page .sci-ico {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}

body.inner-page.the-system-page .sci-ico svg {
  width: 22px;
  height: 22px;
}

body.inner-page.the-system-page .sci-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

body.inner-page.the-system-page .sci-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

body.inner-page.the-system-page

/* BLACK BAND */
.black-band {
  background: var(--ink);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-system-page .black-band::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .07) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-system-page .bb-stat {
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

body.inner-page.the-system-page .bb-stat:last-child {
  border-right: none;
}

body.inner-page.the-system-page .bb-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

body.inner-page.the-system-page .bb-stat-val span {
  color: var(--lime);
}

body.inner-page.the-system-page .bb-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

body.inner-page.the-system-page .bb-stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
  margin-top: 10px;
}

body.inner-page.the-system-page

/* ── SEE HOW IT WORKS ── */
.how-sec {
  background: var(--ink);
  padding: 108px 64px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-system-page .how-sec::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .06) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-system-page .how-sec::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .04) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-system-page .how-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

body.inner-page.the-system-page .how-head-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.05;
  letter-spacing: -.5px;
  color: #fff;
  margin-bottom: 0;
}

body.inner-page.the-system-page .how-head-title em {
  font-style: italic;
  color: rgba(255, 255, 255, .38);
}

body.inner-page.the-system-page .how-head-title strong {
  font-weight: 500;
  color: #fff;
  font-style: normal;
}

body.inner-page.the-system-page .how-head-right p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .42);
  padding-top: 44px;
}

body.inner-page.the-system-page

/* Before / After Visual */
.how-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

body.inner-page.the-system-page .how-ba-panel {
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-system-page .how-ba-panel.before {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}

body.inner-page.the-system-page .how-ba-panel.after {
  background: rgba(170, 221, 0, .06);
  border: 1px solid rgba(170, 221, 0, .18);
}

body.inner-page.the-system-page .how-ba-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.inner-page.the-system-page .how-ba-panel.before .how-ba-label {
  color: rgba(255, 255, 255, .3);
}

body.inner-page.the-system-page .how-ba-panel.after .how-ba-label {
  color: var(--lime);
}

body.inner-page.the-system-page .how-ba-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
}

body.inner-page.the-system-page .how-ba-panel.before .how-ba-label::before {
  background: rgba(255, 255, 255, .2);
}

body.inner-page.the-system-page .how-ba-panel.after .how-ba-label::before {
  background: var(--lime);
}

body.inner-page.the-system-page .how-ba-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

body.inner-page.the-system-page .how-ba-panel.before .how-ba-title {
  color: rgba(255, 255, 255, .55);
}

body.inner-page.the-system-page .how-ba-panel.after .how-ba-title {
  color: #fff;
}

body.inner-page.the-system-page .how-ba-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.inner-page.the-system-page .how-ba-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

body.inner-page.the-system-page .how-ba-row:last-child {
  border-bottom: none;
}

body.inner-page.the-system-page .how-ba-row-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

body.inner-page.the-system-page .how-ba-row-val {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}

body.inner-page.the-system-page .how-ba-panel.before .how-ba-row-val {
  color: #c0392b;
}

body.inner-page.the-system-page .how-ba-panel.after .how-ba-row-val {
  color: var(--lime);
}

body.inner-page.the-system-page .how-ba-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body.inner-page.the-system-page .how-ba-mid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

body.inner-page.the-system-page .how-ba-arrow {
  width: 48px;
  height: 48px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

body.inner-page.the-system-page .how-ba-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.the-system-page

/* Timeline / Narrative Strip */
.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  position: relative;
  z-index: 2;
}

body.inner-page.the-system-page .how-tl-item {
  background: var(--ink-mid);
  padding: 32px 28px;
  position: relative;
  transition: background .3s;
  cursor: default;
}

body.inner-page.the-system-page .how-tl-item:hover {
  background: rgba(255, 255, 255, .04);
}

body.inner-page.the-system-page .how-tl-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}

body.inner-page.the-system-page .how-tl-item:hover::before {
  background: var(--lime);
}

body.inner-page.the-system-page .how-tl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .2);
  margin-bottom: 16px;
  display: block;
}

body.inner-page.the-system-page .how-tl-ico {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color .3s;
}

body.inner-page.the-system-page .how-tl-item:hover .how-tl-ico {
  border-color: rgba(170, 221, 0, .4);
}

body.inner-page.the-system-page .how-tl-ico svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, .4);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}

body.inner-page.the-system-page .how-tl-item:hover .how-tl-ico svg {
  stroke: var(--lime);
}

body.inner-page.the-system-page .how-tl-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 8px;
  line-height: 1.3;
}

body.inner-page.the-system-page .how-tl-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.65;
}

body.inner-page.the-system-page .how-tl-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
  opacity: .7;
}

body.inner-page.the-system-page .how-tl-result::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--lime);
}

body.inner-page.the-system-page

/* Callout strip */
.how-callout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  margin-top: 1px;
  position: relative;
  z-index: 2;
}

body.inner-page.the-system-page .how-cl-item {
  background: var(--ink-mid);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

body.inner-page.the-system-page .how-cl-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 5px;
}

body.inner-page.the-system-page .how-cl-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.65;
}

body.inner-page.the-system-page .how-cl-item p strong {
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
}

@media(max-width:1100px) {
  body.inner-page.the-system-page .how-sec {
    padding: 80px 32px;
  }

  body.inner-page.the-system-page .how-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  body.inner-page.the-system-page .how-ba {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  body.inner-page.the-system-page .how-ba-mid {
    display: none;
  }

  body.inner-page.the-system-page .how-timeline {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.the-system-page .how-callout {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  body.inner-page.the-system-page .how-timeline {
    grid-template-columns: 1fr;
  }
}

@media(max-width:1100px) {
  body.inner-page.the-system-page nav {
    padding: 20px 32px;
  }

  body.inner-page.the-system-page nav.stuck {
    padding: 14px 32px;
  }

  body.inner-page.the-system-page .nav-links {
    display: none;
  }

  body.inner-page.the-system-page section {
    padding: 80px 32px;
  }

  body.inner-page.the-system-page .pg-hero {
    padding: 130px 32px 80px;
  }

  body.inner-page.the-system-page .pg-hero-line {
    left: 32px;
    right: 32px;
  }

  body.inner-page.the-system-page .step-full {
    grid-template-columns: 60px 1fr;
  }

  body.inner-page.the-system-page .step-detail {
    display: none;
  }

  body.inner-page.the-system-page .why-dry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.inner-page.the-system-page .science-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.the-system-page .black-band {
    grid-template-columns: 1fr 1fr;
    padding: 60px 32px;
  }

  body.inner-page.the-system-page .cta-band {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }

  body.inner-page.the-system-page .cta-band-actions {
    align-items: flex-start;
  }

  body.inner-page.the-system-page .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.the-system-page footer {
    padding: 48px 32px 28px;
  }

  body.inner-page.the-system-page .divider {
    margin: 0 32px;
  }
}

@media(max-width:600px) {

  body.inner-page.the-system-page .science-grid,
  body.inner-page.the-system-page .black-band,
  body.inner-page.the-system-page .foot-top {
    grid-template-columns: 1fr;
  }

  body.inner-page.the-system-page .foot-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}



/* Inner page: The Service - DryCare Commercial */

:root {
  --white: #fafaf8;
  --off: #f0f0ec;
  --off2: #e4e4de;
  --lime: #aadd00;
  --lime-sat: #bbed00;
  --lime-dim: #7da800;
  --ink: #111110;
  --ink-mid: #1e1e1c;
  --ink-soft: #58584f;
  --ink-dim: #96968c;
  --border: rgba(17, 17, 16, .07);
  --border-md: rgba(17, 17, 16, .12);
  --border-strong: rgba(17, 17, 16, .18);
}

body.inner-page.the-service-page *,
body.inner-page.the-service-page *::before,
body.inner-page.the-service-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.inner-page.the-service-page {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

body.inner-page.the-service-page .cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--lime-sat);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s;
  box-shadow: 0 0 10px rgba(170, 221, 0, .55);
}

body.inner-page.the-service-page .cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, opacity .2s;
  opacity: .4;
}

body.inner-page.the-service-page .cur.on {
  width: 14px;
  height: 14px;
}

body.inner-page.the-service-page .cur-ring.on {
  width: 52px;
  height: 52px;
  opacity: .65;
}

body.inner-page.the-service-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 64px;
  transition: padding .3s, background .3s, box-shadow .3s;
}

body.inner-page.the-service-page nav.stuck {
  padding: 15px 64px;
  /* background: rgba(250, 250, 248, .94); */
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-md);
}

body.inner-page.the-service-page .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.5px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

body.inner-page.the-service-page .logo-dot {
  color: var(--lime-sat);
  font-size: 26px;
  line-height: 0;
  position: relative;
  top: 1px;
}

body.inner-page.the-service-page .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

body.inner-page.the-service-page .nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}



body.inner-page.the-service-page .nav-btn {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .5px;
  border-radius: 2px;
  transition: opacity .2s, transform .15s !important;
}

body.inner-page.the-service-page .nav-btn:hover {
  opacity: .82;
  transform: translateY(-1px);
}

body.inner-page.the-service-page section {
  padding: 108px 64px;
}

body.inner-page.the-service-page .sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.inner-page.the-service-page .sec-label::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--lime);
}

body.inner-page.the-service-page h2.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -.4px;
  margin-bottom: 18px;
}

body.inner-page.the-service-page h2.sec-title em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.the-service-page h2.sec-title strong {
  font-weight: 500;
  color: var(--ink);
  font-style: normal;
}

body.inner-page.the-service-page .btn-solid {
  background: var(--lime);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: background .2s, box-shadow .2s, transform .15s;
}

body.inner-page.the-service-page .btn-solid:hover {
  background: var(--lime-sat);
  box-shadow: 0 6px 26px rgba(170, 221, 0, .38);
  transform: translateY(-2px);
}

body.inner-page.the-service-page .btn-line {
  background: transparent;
  color: var(--ink);
  padding: 13px 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--border-strong);
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: border-color .2s;
}

body.inner-page.the-service-page .btn-line:hover {
  border-color: var(--ink);
}

body.inner-page.the-service-page .divider {
  height: 1px;
  background: var(--border-md);
  margin: 0 64px;
}

body.inner-page.the-service-page footer {
  background: var(--ink);
  padding: 64px 64px 36px;
}

body.inner-page.the-service-page .foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

body.inner-page.the-service-page .foot-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

body.inner-page.the-service-page .foot-brand span {
  color: var(--lime-sat);
}

body.inner-page.the-service-page .foot-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 230px;
}

body.inner-page.the-service-page .foot-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px;
}

body.inner-page.the-service-page .foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.inner-page.the-service-page .foot-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.the-service-page .foot-links a:hover {
  color: rgba(255, 255, 255, .7);
}

body.inner-page.the-service-page .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

body.inner-page.the-service-page .foot-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .3px;
}

body.inner-page.the-service-page .foot-legal {
  display: flex;
  gap: 22px;
}

body.inner-page.the-service-page .foot-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.the-service-page .foot-legal a:hover {
  color: rgba(255, 255, 255, .48);
}

body.inner-page.the-service-page .pg-hero {
  padding: 170px 64px 110px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

body.inner-page.the-service-page .pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 17, 16, .052) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

body.inner-page.the-service-page .pg-hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .09) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-service-page .pg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

body.inner-page.the-service-page .pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 24px;
  opacity: 0;
  animation: up .7s .15s forwards;
}

body.inner-page.the-service-page .pg-eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--lime);
}

body.inner-page.the-service-page h1.pg-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: up .8s .28s forwards;
}

body.inner-page.the-service-page h1.pg-h em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.the-service-page .pg-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
  opacity: 0;
  animation: up .8s .42s forwards;
}

body.inner-page.the-service-page .pg-hero-line {
  position: absolute;
  bottom: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: var(--border-md);
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

body.inner-page.the-service-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}

body.inner-page.the-service-page .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.inner-page.the-service-page .ico-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 3px;
}

body.inner-page.the-service-page .ico-box svg {
  display: block;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.the-service-page .cta-band {
  background: var(--ink);
  padding: 88px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-service-page .cta-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .09) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-service-page .cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.3px;
}

body.inner-page.the-service-page .cta-band h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, .4);
}

body.inner-page.the-service-page .cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, .42);
  margin-top: 14px;
  max-width: 460px;
}

body.inner-page.the-service-page .cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

body.inner-page.the-service-page .cta-note {
  font-size: 11px;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .22);
  text-align: right;
}

body.inner-page.the-service-page

/* SECTOR CARDS */
.sector-sec {
  background: var(--white);
}

body.inner-page.the-service-page .sector-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-md);
}

body.inner-page.the-service-page .sector-block:first-child {
  padding-top: 0;
}

body.inner-page.the-service-page .sector-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body.inner-page.the-service-page .sector-block.flip {
  direction: rtl;
}

body.inner-page.the-service-page .sector-block.flip>* {
  direction: ltr;
}

body.inner-page.the-service-page .sector-label-wrap {
  position: sticky;
  top: 120px;
}

body.inner-page.the-service-page .sector-ico {
  width: 56px;
  height: 56px;
  background: var(--ink);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

body.inner-page.the-service-page .sector-ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.the-service-page .sector-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.3px;
  margin-bottom: 16px;
}

body.inner-page.the-service-page .sector-block h3 em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.the-service-page .sector-block>.sector-label-wrap>p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}

body.inner-page.the-service-page .sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

body.inner-page.the-service-page .s-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lime-dim);
  border: 1px solid rgba(170, 221, 0, .3);
  padding: 4px 10px;
  border-radius: 2px;
}

body.inner-page.the-service-page .sector-detail {
  background: var(--off);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
}

body.inner-page.the-service-page .sector-detail-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

body.inner-page.the-service-page .sector-detail-row:last-child {
  border-bottom: none;
}

body.inner-page.the-service-page .sdr-ico {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-md);
}

body.inner-page.the-service-page .sdr-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.the-service-page .sdr-text h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

body.inner-page.the-service-page .sdr-text p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

body.inner-page.the-service-page

/* PROGRAMS */
.programs-sec {
  background: var(--off);
}

body.inner-page.the-service-page .programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}

body.inner-page.the-service-page .prog-card {
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: default;
}

body.inner-page.the-service-page .prog-card:hover {
  box-shadow: 0 12px 44px rgba(17, 17, 16, .08);
  transform: translateY(-4px);
  border-color: rgba(170, 221, 0, .35);
}

body.inner-page.the-service-page .prog-card-top {
  background: var(--ink);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-service-page .prog-card-top::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(170, 221, 0, .1);
}

body.inner-page.the-service-page .prog-card-top h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

body.inner-page.the-service-page .prog-card-top p {
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

body.inner-page.the-service-page .prog-card-body {
  padding: 28px;
}

body.inner-page.the-service-page .prog-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.inner-page.the-service-page .prog-card-body ul li {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

body.inner-page.the-service-page .prog-card-body ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 6px;
}

body.inner-page.the-service-page

/* TICKER */
.ticker {
  background: var(--ink);
  padding: 13px 0;
  overflow: hidden;
}

body.inner-page.the-service-page .ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}

body.inner-page.the-service-page .ticker-item {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250, 250, 248, .45);
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 36px;
}

body.inner-page.the-service-page .ticker-sep {
  color: var(--lime);
  font-size: 14px;
  line-height: 0;
  opacity: .7;
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@media(max-width:1100px) {
  body.inner-page.the-service-page nav {
    padding: 20px 32px;
  }

  body.inner-page.the-service-page nav.stuck {
    padding: 14px 32px;
  }

  body.inner-page.the-service-page .nav-links {
    display: none;
  }

  body.inner-page.the-service-page section {
    padding: 80px 32px;
  }

  body.inner-page.the-service-page .pg-hero {
    padding: 145px 32px 80px;
  }

  body.inner-page.the-service-page .pg-hero-line {
    left: 32px;
    right: 32px;
  }

  body.inner-page.the-service-page .sector-block,
  body.inner-page.the-service-page .sector-block.flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }

  body.inner-page.the-service-page .sector-label-wrap {
    position: static;
  }

  body.inner-page.the-service-page .programs-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.the-service-page .cta-band {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }

  body.inner-page.the-service-page .cta-band-actions {
    align-items: flex-start;
  }

  body.inner-page.the-service-page .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.the-service-page footer {
    padding: 48px 32px 28px;
  }

  body.inner-page.the-service-page .divider {
    margin: 0 32px;
  }
}

@media(max-width:600px) {

  body.inner-page.the-service-page .programs-grid,
  body.inner-page.the-service-page .foot-top {
    grid-template-columns: 1fr;
  }

  body.inner-page.the-service-page .foot-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}



/* Inner page: Our Company - DryCare Commercial */

:root {
  --white: #fafaf8;
  --off: #f0f0ec;
  --off2: #e4e4de;
  --lime: #aadd00;
  --lime-sat: #bbed00;
  --lime-dim: #7da800;
  --ink: #111110;
  --ink-mid: #1e1e1c;
  --ink-soft: #58584f;
  --ink-dim: #96968c;
  --border: rgba(17, 17, 16, .07);
  --border-md: rgba(17, 17, 16, .12);
  --border-strong: rgba(17, 17, 16, .18);
}

body.inner-page.our-company-page *,
body.inner-page.our-company-page *::before,
body.inner-page.our-company-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.inner-page.our-company-page {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

body.inner-page.our-company-page .cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--lime-sat);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s;
  box-shadow: 0 0 10px rgba(170, 221, 0, .55);
}

body.inner-page.our-company-page .cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, opacity .2s;
  opacity: .4;
}

body.inner-page.our-company-page .cur.on {
  width: 14px;
  height: 14px;
}

body.inner-page.our-company-page .cur-ring.on {
  width: 52px;
  height: 52px;
  opacity: .65;
}

body.inner-page.our-company-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 64px;
  transition: padding .3s, background .3s, box-shadow .3s;
}

body.inner-page.our-company-page nav.stuck {
  padding: 15px 64px;
  /* background: rgba(250, 250, 248, .94); */
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-md);
}

body.inner-page.our-company-page .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.5px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

body.inner-page.our-company-page .logo-dot {
  color: var(--lime-sat);
  font-size: 26px;
  line-height: 0;
  position: relative;
  top: 1px;
}

body.inner-page.our-company-page .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

body.inner-page.our-company-page .nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}


body.inner-page.our-company-page .nav-btn {
  background: var(--white) !important;
  color: var(--ink) !important;
  padding: 10px 24px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .5px;
  border-radius: 2px;
  transition: opacity .2s, transform .15s !important;
}

body.inner-page.our-company-page .nav-btn:hover {
  opacity: .82;
  transform: translateY(-1px);
}

body.inner-page.our-company-page section {
  padding: 108px 64px;
}

body.inner-page.our-company-page .sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.inner-page.our-company-page .sec-label::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--lime);
}

body.inner-page.our-company-page h2.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -.4px;
  margin-bottom: 18px;
}

body.inner-page.our-company-page h2.sec-title em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.our-company-page h2.sec-title strong {
  font-weight: 500;
  color: var(--ink);
  font-style: normal;
}

body.inner-page.our-company-page .btn-solid {
  background: var(--lime);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: background .2s, box-shadow .2s, transform .15s;
}

body.inner-page.our-company-page .btn-solid:hover {
  background: var(--lime-sat);
  box-shadow: 0 6px 26px rgba(170, 221, 0, .38);
  transform: translateY(-2px);
}

body.inner-page.our-company-page .divider {
  height: 1px;
  background: var(--border-md);
  margin: 0 64px;
}

body.inner-page.our-company-page footer {
  background: var(--ink);
  padding: 64px 64px 36px;
}

body.inner-page.our-company-page .foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

body.inner-page.our-company-page .foot-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

body.inner-page.our-company-page .foot-brand span {
  color: var(--lime-sat);
}

body.inner-page.our-company-page .foot-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 230px;
}

body.inner-page.our-company-page .foot-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px;
}

body.inner-page.our-company-page .foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.inner-page.our-company-page .foot-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.our-company-page .foot-links a:hover {
  color: rgba(255, 255, 255, .7);
}

body.inner-page.our-company-page .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

body.inner-page.our-company-page .foot-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .3px;
}

body.inner-page.our-company-page .foot-legal {
  display: flex;
  gap: 22px;
}

body.inner-page.our-company-page .foot-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.our-company-page .foot-legal a:hover {
  color: rgba(255, 255, 255, .48);
}

body.inner-page.our-company-page .pg-hero {
  padding: 170px 64px 110px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

body.inner-page.our-company-page .pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

body.inner-page.our-company-page .pg-hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .08) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.our-company-page .pg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

body.inner-page.our-company-page .pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  opacity: 0;
  animation: up .7s .15s forwards;
}

body.inner-page.our-company-page .pg-eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--lime);
}

body.inner-page.our-company-page h1.pg-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  animation: up .8s .28s forwards;
}

body.inner-page.our-company-page h1.pg-h em {
  font-style: italic;
  color: rgba(255, 255, 255, .45);
}

body.inner-page.our-company-page .pg-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .45);
  max-width: 580px;
  opacity: 0;
  animation: up .8s .42s forwards;
}

body.inner-page.our-company-page .pg-hero-line {
  position: absolute;
  bottom: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

body.inner-page.our-company-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}

body.inner-page.our-company-page .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.inner-page.our-company-page .ico-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 3px;
}

body.inner-page.our-company-page .ico-box svg {
  display: block;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.our-company-page .cta-band {
  background: var(--ink);
  padding: 88px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

body.inner-page.our-company-page .cta-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .09) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.our-company-page .cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.3px;
}

body.inner-page.our-company-page .cta-band h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, .4);
}

body.inner-page.our-company-page .cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, .42);
  margin-top: 14px;
  max-width: 460px;
}

body.inner-page.our-company-page .cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

body.inner-page.our-company-page .cta-note {
  font-size: 11px;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .22);
  text-align: right;
}

body.inner-page.our-company-page

/* ABOUT */
.about-sec {
  background: var(--white);
}

body.inner-page.our-company-page .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

body.inner-page.our-company-page .about-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

body.inner-page.our-company-page .about-copy p strong {
  color: var(--ink);
  font-weight: 600;
}

body.inner-page.our-company-page .about-pull {
  background: var(--off);
  border-left: 3px solid var(--lime);
  padding: 28px 32px;
  margin: 36px 0;
}

body.inner-page.our-company-page .about-pull p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}

body.inner-page.our-company-page

/* VALUES */
.values-sec {
  background: var(--off);
}

body.inner-page.our-company-page .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-md);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 56px;
}

body.inner-page.our-company-page .val-card {
  background: var(--off);
  padding: 40px 32px;
  transition: background .25s;
  cursor: default;
  position: relative;
}

body.inner-page.our-company-page .val-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background .25s;
}

body.inner-page.our-company-page .val-card:hover {
  background: var(--white);
}

body.inner-page.our-company-page .val-card:hover::after {
  background: var(--lime);
}

body.inner-page.our-company-page .val-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(170, 221, 0, .2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .25s;
}

body.inner-page.our-company-page .val-card:hover .val-num {
  color: var(--lime);
}

body.inner-page.our-company-page .val-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

body.inner-page.our-company-page .val-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

body.inner-page.our-company-page

/* STANDARD */
.standard-sec {
  background: var(--white);
}

body.inner-page.our-company-page .standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

body.inner-page.our-company-page .w-list {
  display: flex;
  flex-direction: column;
}

body.inner-page.our-company-page .w-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .25s;
}

body.inner-page.our-company-page .w-item:first-child {
  border-top: 1px solid var(--border);
}

body.inner-page.our-company-page .w-item:hover {
  padding-left: 6px;
}

body.inner-page.our-company-page .w-tick {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

body.inner-page.our-company-page .w-tick svg {
  width: 12px;
  height: 12px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.our-company-page .w-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

body.inner-page.our-company-page .w-item p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

body.inner-page.our-company-page .badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}

body.inner-page.our-company-page .badge {
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s, background .2s;
}

body.inner-page.our-company-page .badge:hover {
  border-color: rgba(170, 221, 0, .4);
  background: rgba(170, 221, 0, .025);
}

body.inner-page.our-company-page .badge-ico {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--off);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.inner-page.our-company-page .badge-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.inner-page.our-company-page .badge-txt strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

body.inner-page.our-company-page .badge-txt span {
  font-size: 11px;
  color: var(--ink-dim);
  line-height: 1.5;
  display: block;
}

body.inner-page.our-company-page

/* CASES */
.cases-sec {
  background: var(--off);
}

body.inner-page.our-company-page .cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 56px;
}

body.inner-page.our-company-page .case-card {
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  cursor: default;
}

body.inner-page.our-company-page .case-card:hover {
  box-shadow: 0 12px 44px rgba(17, 17, 16, .08);
  transform: translateY(-3px);
}

body.inner-page.our-company-page .case-card-top {
  background: var(--ink);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

body.inner-page.our-company-page .case-card-top::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(170, 221, 0, .08);
}

body.inner-page.our-company-page .case-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}

body.inner-page.our-company-page .case-card-top h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

body.inner-page.our-company-page .case-card-body {
  padding: 28px;
}

body.inner-page.our-company-page .case-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

body.inner-page.our-company-page .case-result {
  display: flex;
  gap: 24px;
}

body.inner-page.our-company-page .case-metric {
  text-align: center;
}

body.inner-page.our-company-page .case-metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  display: block;
  line-height: 1;
}

body.inner-page.our-company-page .case-metric-val span {
  color: var(--lime-dim);
}

body.inner-page.our-company-page .case-metric-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
  display: block;
}

body.inner-page.our-company-page

/* BLACK BAND */
.black-band {
  background: var(--ink);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  overflow: hidden;
}

body.inner-page.our-company-page .black-band::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .07) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.our-company-page .bb-stat {
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

body.inner-page.our-company-page .bb-stat:last-child {
  border-right: none;
}

body.inner-page.our-company-page .bb-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

body.inner-page.our-company-page .bb-stat-val span {
  color: var(--lime);
}

body.inner-page.our-company-page .bb-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

body.inner-page.our-company-page .bb-stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
  margin-top: 10px;
}

@media(max-width:1100px) {
  body.inner-page.our-company-page nav {
    padding: 20px 32px;
  }

  body.inner-page.our-company-page nav.stuck {
    padding: 14px 32px;
  }

  body.inner-page.our-company-page .nav-links {
    display: none;
  }

  body.inner-page.our-company-page section {
    padding: 80px 32px;
  }

  body.inner-page.our-company-page .pg-hero {
    padding: 145px 32px 80px;
  }

  body.inner-page.our-company-page .pg-hero-line {
    left: 32px;
    right: 32px;
  }

  body.inner-page.our-company-page .about-grid,
  body.inner-page.our-company-page .standard-grid,
  body.inner-page.our-company-page .cases-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.inner-page.our-company-page .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.our-company-page .black-band {
    grid-template-columns: 1fr 1fr;
    padding: 60px 32px;
  }

  body.inner-page.our-company-page .cta-band {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }

  body.inner-page.our-company-page .cta-band-actions {
    align-items: flex-start;
  }

  body.inner-page.our-company-page .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.our-company-page footer {
    padding: 48px 32px 28px;
  }

  body.inner-page.our-company-page .divider {
    margin: 0 32px;
  }
}

@media(max-width:600px) {

  body.inner-page.our-company-page .values-grid,
  body.inner-page.our-company-page .black-band,
  body.inner-page.our-company-page .cases-grid,
  body.inner-page.our-company-page .badges,
  body.inner-page.our-company-page .foot-top {
    grid-template-columns: 1fr;
  }

  body.inner-page.our-company-page .foot-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}



/* Inner page: Get a Quote - DryCare Commercial */

:root {
  --white: #fafaf8;
  --off: #f0f0ec;
  --off2: #e4e4de;
  --lime: #aadd00;
  --lime-sat: #bbed00;
  --lime-dim: #7da800;
  --ink: #111110;
  --ink-mid: #1e1e1c;
  --ink-soft: #58584f;
  --ink-dim: #96968c;
  --border: rgba(17, 17, 16, .07);
  --border-md: rgba(17, 17, 16, .12);
  --border-strong: rgba(17, 17, 16, .18);
}

body.inner-page.contact-page *,
body.inner-page.contact-page *::before,
body.inner-page.contact-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.inner-page.contact-page {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

body.inner-page.contact-page .cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--lime-sat);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s;
  box-shadow: 0 0 10px rgba(170, 221, 0, .55);
}

body.inner-page.contact-page .cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, opacity .2s;
  opacity: .4;
}

body.inner-page.contact-page .cur.on {
  width: 14px;
  height: 14px;
}

body.inner-page.contact-page .cur-ring.on {
  width: 52px;
  height: 52px;
  opacity: .65;
}

body.inner-page.contact-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 64px;
  transition: padding .3s, background .3s, box-shadow .3s;
}

body.inner-page.contact-page nav.stuck {
  padding: 15px 64px;
  /* background: rgba(250, 250, 248, .94); */
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-md);
}

body.inner-page.contact-page .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.5px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

body.inner-page.contact-page .logo-dot {
  color: var(--lime-sat);
  font-size: 26px;
  line-height: 0;
  position: relative;
  top: 1px;
}

body.inner-page.contact-page .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

body.inner-page.contact-page .nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.contact-page .nav-links a:hover,
body.inner-page.contact-page .nav-links a.active {
  color: var(--ink);
}

body.inner-page.contact-page .nav-btn {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .5px;
  border-radius: 2px;
  transition: opacity .2s, transform .15s !important;
}

body.inner-page.contact-page .nav-btn:hover {
  opacity: .82;
  transform: translateY(-1px);
}

body.inner-page.contact-page .btn-solid {
  background: var(--lime);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition: background .2s, box-shadow .2s, transform .15s;
}

body.inner-page.contact-page .btn-solid:hover {
  background: var(--lime-sat);
  box-shadow: 0 6px 26px rgba(170, 221, 0, .38);
  transform: translateY(-2px);
}

body.inner-page.contact-page footer {
  background: var(--ink);
  padding: 64px 64px 36px;
}

body.inner-page.contact-page .foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

body.inner-page.contact-page .foot-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

body.inner-page.contact-page .foot-brand span {
  color: var(--lime-sat);
}

body.inner-page.contact-page .foot-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 230px;
}

body.inner-page.contact-page .foot-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px;
}

body.inner-page.contact-page .foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.inner-page.contact-page .foot-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.contact-page .foot-links a:hover {
  color: rgba(255, 255, 255, .7);
}

body.inner-page.contact-page .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

body.inner-page.contact-page .foot-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .3px;
}

body.inner-page.contact-page .foot-legal {
  display: flex;
  gap: 22px;
}

body.inner-page.contact-page .foot-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: color .2s;
}

body.inner-page.contact-page .foot-legal a:hover {
  color: rgba(255, 255, 255, .48);
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

body.inner-page.contact-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}

body.inner-page.contact-page .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.inner-page.contact-page

/* CONTACT HERO */
.contact-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

body.inner-page.contact-page .contact-hero-left {
  background: var(--ink);
  padding: 160px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body.inner-page.contact-page .contact-hero-left::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .07) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.contact-page .contact-hero-left::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .05) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.contact-page .ch-inner {
  position: relative;
  z-index: 2;
}

body.inner-page.contact-page .ch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  opacity: 0;
  animation: up .7s .15s forwards;
}

body.inner-page.contact-page .ch-eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: var(--lime);
}

body.inner-page.contact-page h1.ch-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  animation: up .8s .28s forwards;
}

body.inner-page.contact-page h1.ch-h em {
  font-style: italic;
  color: rgba(255, 255, 255, .4);
}

body.inner-page.contact-page .ch-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .42);
  max-width: 380px;
  margin-bottom: 56px;
  opacity: 0;
  animation: up .8s .42s forwards;
}

body.inner-page.contact-page .contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  animation: up .8s .56s forwards;
}

body.inner-page.contact-page .contact-block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

body.inner-page.contact-page .contact-block:first-child {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

body.inner-page.contact-page .c-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 5px;
}

body.inner-page.contact-page .c-val {
  font-size: 16px;
  color: #fff;
}

body.inner-page.contact-page .c-val-sm {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

body.inner-page.contact-page

/* FORM SIDE */
.contact-hero-right {
  background: var(--off);
  padding: 160px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body.inner-page.contact-page .contact-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 17, 16, .04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

body.inner-page.contact-page .form-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
}

body.inner-page.contact-page .form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 32px;
  opacity: 0;
  animation: up .8s .3s forwards;
}

body.inner-page.contact-page .form-title em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.contact-page .form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.inner-page.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.inner-page.contact-page .f-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

body.inner-page.contact-page .f-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

body.inner-page.contact-page .f-inp {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--ink);
  padding: 13px 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

body.inner-page.contact-page .f-inp:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(170, 221, 0, .1);
}

body.inner-page.contact-page .f-inp::placeholder {
  color: var(--ink-dim);
}

body.inner-page.contact-page textarea.f-inp {
  min-height: 120px;
  resize: vertical;
}

body.inner-page.contact-page .sector-sel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.inner-page.contact-page .sel-btn {
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: 2px;
  padding: 11px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: none;
  transition: all .2s;
  text-align: center;
}

body.inner-page.contact-page .sel-btn:hover,
body.inner-page.contact-page .sel-btn.act {
  border-color: var(--lime);
  color: var(--lime-dim);
  background: rgba(170, 221, 0, .04);
}

body.inner-page.contact-page .f-select {
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2358584f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--ink);
  padding: 13px 40px 13px 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  cursor: none;
}

body.inner-page.contact-page .f-select:focus {
  border-color: var(--lime);
}

body.inner-page.contact-page

/* WHY CONTACT */
.why-contact {
  background: var(--white);
  padding: 80px 64px;
}

body.inner-page.contact-page .why-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-md);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
}

body.inner-page.contact-page .wc-card {
  background: var(--white);
  padding: 36px 30px;
}

body.inner-page.contact-page .wc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--lime-dim);
  margin-bottom: 14px;
  display: block;
}

body.inner-page.contact-page .wc-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

body.inner-page.contact-page .wc-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media(max-width:1100px) {
  body.inner-page.contact-page nav {
    padding: 20px 32px;
  }

  body.inner-page.contact-page nav.stuck {
    padding: 14px 32px;
  }

  body.inner-page.contact-page .nav-links {
    display: none;
  }

  body.inner-page.contact-page .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.inner-page.contact-page .contact-hero-left,
  body.inner-page.contact-page .contact-hero-right {
    padding: 120px 32px 60px;
  }

  body.inner-page.contact-page .why-contact {
    padding: 60px 32px;
  }

  body.inner-page.contact-page .why-contact-grid {
    grid-template-columns: 1fr;
  }

  body.inner-page.contact-page .form-row,
  body.inner-page.contact-page .sector-sel {
    grid-template-columns: 1fr;
  }

  body.inner-page.contact-page .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  body.inner-page.contact-page footer {
    padding: 48px 32px 28px;
  }
}

@media(max-width:600px) {
  body.inner-page.contact-page .foot-top {
    grid-template-columns: 1fr;
  }

  body.inner-page.contact-page .foot-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}



/* Shared include adjustments for generated inner pages */
body.inner-page nav:not(.stuck) .nav-links a {
  color: #fff;
}

body.inner-page nav:not(.stuck) .nav-links a:hover,
body.inner-page nav:not(.stuck) .nav-links a.active {
  color: #fff;
}

body.inner-page nav:not(.stuck) .logo img {
  filter: none;
}

/* body.inner-page nav:not(.stuck) .nav-btn {
  background: var(--ink) !important;
  color: var(--white) !important;
} */

body.inner-page nav:not(.stuck) .nav-btn:hover,
body.inner-page nav:not(.stuck) .nav-btn.active {
  background: var(--ink) !important;
  color: var(--white) !important;
}

body.inner-page.the-system-page nav:not(.stuck) .nav-links a,
body.inner-page.the-service-page nav:not(.stuck) .nav-links a,
body.inner-page.contact-page nav:not(.stuck) .nav-links a {
  color: var(--ink);
}

body.inner-page.the-products-page nav:not(.stuck) .nav-links a,
body.inner-page.sds-page nav:not(.stuck) .nav-links a {
  color: #fff;
}

body.inner-page.the-products-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.the-products-page nav:not(.stuck) .nav-links a.active,
body.inner-page.sds-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.sds-page nav:not(.stuck) .nav-links a.active {
  color: #fff;
}

body.inner-page.the-products-page nav:not(.stuck) .nav-btn,
body.inner-page.sds-page nav:not(.stuck) .nav-btn {
  background: #fff !important;
  color: #000 !important;
}

body.inner-page.the-products-page nav.stuck .nav-btn,
body.inner-page.sds-page nav.stuck .nav-btn {
  background: #fff !important;
  color: #000 !important;
}

body.inner-page.the-system-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.the-system-page nav:not(.stuck) .nav-links a.active,
body.inner-page.the-service-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.the-service-page nav:not(.stuck) .nav-links a.active,
body.inner-page.contact-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.contact-page nav:not(.stuck) .nav-links a.active {
  color: var(--ink);
}

body.inner-page.the-system-page nav:not(.stuck) .logo img,
body.inner-page.the-service-page nav:not(.stuck) .logo img {
  filter: none;
}

body.inner-page nav.stuck .logo img {
  filter: none;
}

body.inner-page nav.stuck {
  background: #000;
  box-shadow: 0 1px 0 var(--border-md);
}

body.inner-page nav.stuck .nav-btn {
  background: var(--lime) !important;
  color: #000 !important;
}

body.inner-page nav.stuck .nav-links a {
  color: #fff;
}

body.inner-page nav.stuck .nav-links a:hover {
  color: var(--lime);
}

body.inner-page .footer-logo {
  max-width: 160px;
  height: auto;
}

/* === Nav certification logos === */
.nav-certs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.nav-certs img {
  height: 32px;
  width: auto;
  display: block;
}

/* === Footer certification logos & phone === */
.foot-cert-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.foot-cert-logos img {
  height: 48px;
  width: auto;
  display: block;
  filter: invert(1);
}

.foot-phone {
  font-size: 12px;
  margin-top: 8px;
}

.foot-phone a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.foot-phone a:hover {
  color: #fff;
}

.foot-certs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.foot-certs img {
  height: 36px;
  width: auto;
  display: block;
  filter: invert(1);
}

/* === Inner page: The Products === */
body.inner-page.the-products-page .pg-hero {
  background: var(--ink);
  padding: 170px 64px 200px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-products-page .pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

body.inner-page.the-products-page .pg-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .08) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.the-products-page .pg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

body.inner-page.the-products-page .pg-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.inner-page.the-products-page .pg-eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.the-products-page .pg-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.4px;
  color: #fff;
  margin-bottom: 14px;
}

body.inner-page.the-products-page .pg-h em {
  font-style: italic;
  color: rgba(255, 255, 255, .42);
}

body.inner-page.the-products-page .pg-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  max-width: 560px;
}

body.inner-page.the-products-page .lime-bar {
  height: 3px;
  background: var(--lime-sat);
}

body.inner-page.the-products-page .cert-banner {
  background: var(--off);
  padding: 20px 52px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

body.inner-page.the-products-page .cert-banner-text {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

body.inner-page.the-products-page .cert-banner-text strong {
  color: var(--ink);
}

body.inner-page.the-products-page .cert-banner-logos {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: auto;
}

body.inner-page.the-products-page .cert-banner-logos img {
  height: 52px;
  width: auto;
}

body.inner-page.the-products-page .products-section {
  padding: 72px 52px;
  max-width: 1060px;
  margin: 0 auto;
}

body.inner-page.the-products-page .sec-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.inner-page.the-products-page .sec-eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.the-products-page .sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.3px;
  color: var(--ink);
  margin-bottom: 10px;
}

body.inner-page.the-products-page .sec-title em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.the-products-page .sec-sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
}

body.inner-page.the-products-page .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

body.inner-page.the-products-page .product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

body.inner-page.the-products-page .product-card:hover {
  box-shadow: 0 12px 40px rgba(17, 17, 16, .08);
  transform: translateY(-2px);
}

body.inner-page.the-products-page .pc-header {
  background: var(--ink);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}

body.inner-page.the-products-page .pc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 18px 18px;
}

body.inner-page.the-products-page .pc-header::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .08) 0%, transparent 68%);
}

body.inner-page.the-products-page .pc-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

body.inner-page.the-products-page .pc-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  margin-bottom: 4px;
}

body.inner-page.the-products-page .pc-size {
  font-size: 11px;
  color: rgba(255, 255, 255, .38);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

body.inner-page.the-products-page .pc-body {
  padding: 24px 28px;
}

body.inner-page.the-products-page .pc-tagline {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

body.inner-page.the-products-page .pc-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

body.inner-page.the-products-page .pc-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

body.inner-page.the-products-page .pc-row-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  min-width: 90px;
  padding-top: 2px;
}

body.inner-page.the-products-page .pc-row-val {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

body.inner-page.the-products-page .pc-row-val strong {
  color: var(--ink);
  font-weight: 600;
}

body.inner-page.the-products-page .pc-actions {
  display: flex;
  gap: 8px;
}

body.inner-page.the-products-page .pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

body.inner-page.the-products-page .pc-btn-primary {
  background: var(--ink);
  color: #fff;
}

body.inner-page.the-products-page .pc-btn-primary:hover {
  background: var(--ink-mid);
}

body.inner-page.the-products-page .pc-btn-secondary {
  background: var(--off);
  color: var(--ink-soft);
  border: 1px solid var(--border-md);
}

body.inner-page.the-products-page .pc-btn-secondary:hover {
  background: var(--border-md);
  color: var(--ink);
}

body.inner-page.the-products-page .pc-frag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(170, 221, 0, .08);
  border: 1px solid rgba(170, 221, 0, .2);
  padding: 5px 11px;
  border-radius: 2px;
  margin-bottom: 12px;
}

body.inner-page.the-products-page .pc-frag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-sat);
}

body.inner-page.the-products-page .pc-frag-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime-dim);
}

body.inner-page.the-products-page .system-note {
  background: var(--off2);
  border-radius: 3px;
  padding: 28px 36px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

body.inner-page.the-products-page .sn-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
}

body.inner-page.the-products-page .sn-text h3 em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.the-products-page .sn-text p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

body.inner-page.the-products-page .sn-btn {
  background: var(--lime-sat);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}

body.inner-page.the-products-page .sn-btn:hover {
  background: var(--lime);
}

body.inner-page.the-products-page nav:not(.stuck) .nav-links a,
body.inner-page.sds-page nav:not(.stuck) .nav-links a {
  color: var(--white);
}

body.inner-page.the-products-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.the-products-page nav:not(.stuck) .nav-links a.active,
body.inner-page.sds-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.sds-page nav:not(.stuck) .nav-links a.active {
  color: var(--white);
}

body.inner-page.the-products-page nav:not(.stuck) .nav-btn,
body.inner-page.the-products-page nav.stuck .nav-btn,
body.inner-page.sds-page nav:not(.stuck) .nav-btn,
body.inner-page.sds-page nav.stuck .nav-btn {
  background: var(--white) !important;
  color: var(--ink) !important;
}

body.inner-page.calculator-page nav:not(.stuck) .nav-links a {
  color: var(--white);
}

body.inner-page.calculator-page nav:not(.stuck) .nav-links a:hover,
body.inner-page.calculator-page nav:not(.stuck) .nav-links a.active {
  color: var(--white);
}

body.inner-page.calculator-page nav:not(.stuck) .nav-links .nav-btn {
  background: var(--white) !important;
  color: var(--ink) !important;
}

@media(max-width:900px) {
  body.inner-page.the-products-page .products-grid {
    grid-template-columns: 1fr;
  }

  body.inner-page.the-products-page .cert-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px;
  }

  body.inner-page.the-products-page .cert-banner-logos {
    margin-left: 0;
  }

  body.inner-page.the-products-page .products-section {
    padding: 60px 32px;
  }

  body.inner-page.the-products-page .system-note {
    grid-template-columns: 1fr;
  }

  body.inner-page.the-products-page .pg-hero {
    padding: 130px 32px 60px;
  }
}

/* === Contact page: cost estimator embed === */
body.inner-page.contact-page .calc-embed-wrap {
  background: var(--off);
  padding: 64px;
  border-bottom: 1px solid var(--border-md);
}

body.inner-page.contact-page .calc-embed-inner {
  max-width: 900px;
  margin: 0 auto;
}

body.inner-page.contact-page .ce-header {
  margin-bottom: 36px;
}

body.inner-page.contact-page .ce-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

body.inner-page.contact-page .ce-eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.contact-page .ce-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -.3px;
  color: var(--ink);
  margin-bottom: 8px;
}

body.inner-page.contact-page .ce-title em {
  font-style: italic;
  color: var(--ink-soft);
}

body.inner-page.contact-page .ce-sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 540px;
}

body.inner-page.contact-page .calc-widget {
  max-width: 900px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 4px;
  overflow: hidden;
}

body.inner-page.contact-page .cw-header {
  background: var(--ink);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

body.inner-page.contact-page .cw-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 22px 22px;
}

body.inner-page.contact-page .cw-header-left {
  position: relative;
  z-index: 2;
}

body.inner-page.contact-page .cw-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}

body.inner-page.contact-page .cw-title span {
  color: var(--lime-sat);
}

body.inner-page.contact-page .cw-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px;
}

body.inner-page.contact-page .cw-header-badge {
  background: rgba(187, 237, 0, .12);
  border: 1px solid rgba(187, 237, 0, .25);
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

body.inner-page.contact-page .cw-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.inner-page.contact-page .cw-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.inner-page.contact-page .cw-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

body.inner-page.contact-page .cw-label::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.contact-page .cw-sqft-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

body.inner-page.contact-page .cw-sqft-input {
  flex: 1;
  height: 52px;
  border: 1.5px solid var(--border-md);
  border-radius: 3px;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  -moz-appearance: textfield;
}

body.inner-page.contact-page .cw-sqft-input::-webkit-outer-spin-button,
body.inner-page.contact-page .cw-sqft-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

body.inner-page.contact-page .cw-sqft-input:focus {
  border-color: var(--lime-sat);
  box-shadow: 0 0 0 3px rgba(187, 237, 0, .1);
}

body.inner-page.contact-page .cw-sqft-unit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}

body.inner-page.contact-page .cw-quick {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 7px;
}

body.inner-page.contact-page .cw-quick button {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--off);
  border: 1px solid var(--border-md);
  padding: 4px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all .12s;
}

body.inner-page.contact-page .cw-quick button:hover,
body.inner-page.contact-page .cw-quick button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

body.inner-page.contact-page .cw-cond-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

body.inner-page.contact-page .cw-cond-lbl {
  font-size: 10px;
  color: var(--ink-dim);
  text-align: center;
  line-height: 1.3;
}

body.inner-page.contact-page .cw-cond-lbl.active {
  color: var(--ink);
  font-weight: 600;
}

body.inner-page.contact-page .cw-cond-lbl .rate {
  font-size: 9px;
  color: var(--lime-dim);
}

body.inner-page.contact-page input[type=range].cw-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--lime-sat) 0%, var(--lime-sat) 0%, var(--border-md) 0%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

body.inner-page.contact-page input[type=range].cw-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--lime-sat);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  transition: transform .12s;
}

body.inner-page.contact-page input[type=range].cw-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

body.inner-page.contact-page input[type=range].cw-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--lime-sat);
  cursor: pointer;
}

body.inner-page.contact-page .cw-cond-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 7px 12px;
  border-radius: 2px;
  font-size: 11px;
}

body.inner-page.contact-page .cw-cond-pill.m {
  background: rgba(170, 221, 0, .08);
  border: 1px solid rgba(170, 221, 0, .25);
  color: var(--lime-dim);
}

body.inner-page.contact-page .cw-cond-pill.o {
  background: rgba(17, 17, 16, .04);
  border: 1px solid var(--border-md);
  color: var(--ink-soft);
}

body.inner-page.contact-page .cw-cond-pill.r {
  background: rgba(160, 80, 0, .05);
  border: 1px solid rgba(160, 80, 0, .18);
  color: #7a4010;
}

body.inner-page.contact-page .cw-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

/* === SDS Page Styles === */
body.inner-page.sds-page {
  background: var(--off);
}

body.inner-page.sds-page .sds-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 172px 52px;
}

body.inner-page.sds-page .print-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
  margin-bottom: 16px;
}

body.inner-page.sds-page .sds-doc {
  background: var(--white);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .08);
}

/* SDS Header */
body.inner-page.sds-page .sds-header {
  background: var(--ink);
  padding: 0;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  position: relative;
  overflow: hidden;
}

body.inner-page.sds-page .sds-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 18px 18px;
}

body.inner-page.sds-page .sds-header::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .09) 0%, transparent 68%);
}

body.inner-page.sds-page .sh-logo-col {
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

body.inner-page.sds-page .sh-logo-col img {
  width: 88px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

body.inner-page.sds-page .sh-mid {
  padding: 18px 24px;
  position: relative;
  z-index: 2;
}

body.inner-page.sds-page .sh-doc-type {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 6px;
}

body.inner-page.sds-page .sh-product {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 4px;
}

body.inner-page.sds-page .sh-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .38);
}

body.inner-page.sds-page .sh-meta {
  padding: 18px 20px;
  text-align: right;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

body.inner-page.sds-page .sh-meta-item {
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.4;
}

body.inner-page.sds-page .sh-meta-item strong {
  color: rgba(255, 255, 255, .6);
  display: block;
}

body.inner-page.sds-page .lime-bar {
  height: 3px;
  background: var(--lime-sat);
}

/* Fragrance Badge */
body.inner-page.sds-page .fragrance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(170, 221, 0, .08);
  border: 1px solid rgba(170, 221, 0, .2);
  padding: 6px 12px;
  border-radius: 2px;
  margin: 8px 20px;
}

body.inner-page.sds-page .fragrance-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime-sat);
}

body.inner-page.sds-page .fragrance-badge-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime-dim);
}

/* SDS Sections */
body.inner-page.sds-page .sds-body {
  padding: 0;
}

body.inner-page.sds-page .sds-section {
  border-bottom: 1px solid var(--border);
}

body.inner-page.sds-page .sds-section-header {
  background: rgba(17, 17, 16, .04);
  padding: 7px 20px;
  border-bottom: 1px solid var(--border);
}

body.inner-page.sds-page .ssh-title {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .3px;
}

body.inner-page.sds-page .sds-sub-section {
  padding: 0;
}

body.inner-page.sds-page .sds-sub-header {
  background: rgba(17, 17, 16, .02);
  padding: 5px 20px;
  border-bottom: 1px solid var(--border);
}

body.inner-page.sds-page .ssh-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .2px;
}

body.inner-page.sds-page .sds-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid rgba(17, 17, 16, .04);
}

body.inner-page.sds-page .sds-row:last-child {
  border-bottom: none;
}

body.inner-page.sds-page .sds-row-label {
  padding: 7px 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(17, 17, 16, .015);
  border-right: 1px solid var(--border);
}

body.inner-page.sds-page .sds-row-val {
  padding: 7px 16px;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.6;
}

body.inner-page.sds-page .sds-row-val strong {
  color: var(--ink);
  font-weight: 600;
}

body.inner-page.sds-page .sds-text-block {
  padding: 10px 20px;
}

body.inner-page.sds-page .stb-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

body.inner-page.sds-page .stb-lbl::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.sds-page .stb-val {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.65;
}

body.inner-page.sds-page .stb-val strong {
  color: var(--ink);
  font-weight: 600;
}

body.inner-page.sds-page .stb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
  padding: 10px 20px;
}

body.inner-page.sds-page .stb-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
  padding: 10px 20px;
}

/* Hazard Table */
body.inner-page.sds-page .hz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10.5px;
  margin-top: 6px;
}

body.inner-page.sds-page .hz-table th {
  background: rgba(17, 17, 16, .06);
  padding: 5px 10px;
  text-align: left;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--border-md);
}

body.inner-page.sds-page .hz-table td {
  padding: 5px 10px;
  border-bottom: 1px solid rgba(17, 17, 16, .04);
  vertical-align: top;
  line-height: 1.5;
}

body.inner-page.sds-page .hz-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}

body.inner-page.sds-page .hz-table tr:last-child td {
  border-bottom: none;
}

/* Warning Box */
body.inner-page.sds-page .warn-box {
  background: rgba(160, 48, 48, .05);
  border-left: 3px solid rgba(160, 48, 48, .3);
  margin: 8px 20px;
  padding: 8px 14px;
  border-radius: 0 2px 2px 0;
}

body.inner-page.sds-page .warn-text {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.65;
}

body.inner-page.sds-page .warn-text strong {
  color: #802020;
}

/* SDS Footer */
body.inner-page.sds-page .sds-footer {
  background: var(--ink);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.inner-page.sds-page .sf-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}

body.inner-page.sds-page .sf-logo span {
  color: var(--lime-sat);
}

body.inner-page.sds-page .sf-info {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  text-align: right;
  line-height: 1.6;
}

/* Print Styles */
@media print {
  body.inner-page.sds-page {
    padding: 0;
    background: #fff;
  }

  body.inner-page.sds-page .sds-doc {
    box-shadow: none;
    width: 100%;
  }

  body.inner-page.sds-page .print-label {
    display: none;
  }
}

/* Responsive Styles for SDS */
@media(max-width:900px) {
  body.inner-page.sds-page .sds-container {
    padding: 60px 32px;
  }

  body.inner-page.sds-page .sds-header {
    grid-template-columns: 1fr;
  }

  body.inner-page.sds-page .sh-logo-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  body.inner-page.sds-page .sh-meta {
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  body.inner-page.sds-page .sds-row {
    grid-template-columns: 1fr;
  }

  body.inner-page.sds-page .sds-row-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  body.inner-page.sds-page .stb-grid,
  body.inner-page.sds-page .stb-grid-3 {
    grid-template-columns: 1fr;
  }
}
}

body.inner-page.contact-page .cw-opt {
  padding: 10px 12px;
  background: var(--off);
  border: 1.5px solid var(--border-md);
  border-radius: 3px;
  cursor: pointer;
  transition: all .12s;
}

body.inner-page.contact-page .cw-opt:hover {
  border-color: rgba(17, 17, 16, .22);
}

body.inner-page.contact-page .cw-opt.sel {
  background: var(--ink);
  border-color: var(--ink);
}

body.inner-page.contact-page .cw-opt-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: color .12s;
}

body.inner-page.contact-page .cw-opt.sel .cw-opt-name {
  color: #fff;
}

body.inner-page.contact-page .cw-opt-meta {
  font-size: 10px;
  color: var(--ink-dim);
  margin-top: 2px;
  transition: color .12s;
}

body.inner-page.contact-page .cw-opt.sel .cw-opt-meta {
  color: rgba(255, 255, 255, .4);
}

body.inner-page.contact-page .cw-opt-disc {
  color: var(--lime);
  font-size: 10px;
}

body.inner-page.contact-page .cw-opt.sel .cw-opt-disc {
  color: var(--lime-sat);
}

body.inner-page.contact-page .cw-floors-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

body.inner-page.contact-page .cw-step {
  width: 38px;
  height: 38px;
  background: var(--off);
  border: 1.5px solid var(--border-md);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .12s;
  font-family: 'Outfit', sans-serif;
}

body.inner-page.contact-page .cw-step:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

body.inner-page.contact-page .cw-floor-val {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  width: 32px;
  text-align: center;
}

body.inner-page.contact-page .cw-floor-note {
  font-size: 11px;
  color: var(--ink-dim);
}

body.inner-page.contact-page .cw-result {
  background: var(--ink);
  margin: -1px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

body.inner-page.contact-page .cw-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 20px 20px;
}

body.inner-page.contact-page .cw-result-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

body.inner-page.contact-page .cw-result-est-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 4px;
}

body.inner-page.contact-page .cw-result-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

body.inner-page.contact-page .cw-result-range span {
  color: var(--lime-sat);
}

body.inner-page.contact-page .cw-result-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .28);
  margin-top: 4px;
  line-height: 1.4;
}

body.inner-page.contact-page .cw-result-right {
  text-align: right;
}

body.inner-page.contact-page .cw-eff-rate {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, .7);
}

body.inner-page.contact-page .cw-eff-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, .25);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

body.inner-page.contact-page .cw-result-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  z-index: 2;
}

body.inner-page.contact-page .cw-btn-full {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  border: none;
  transition: all .15s;
}

body.inner-page.contact-page .cw-btn-primary {
  background: var(--lime-sat);
  color: var(--ink);
}

body.inner-page.contact-page .cw-btn-primary:hover {
  background: var(--lime);
}

body.inner-page.contact-page .cw-btn-secondary {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .12);
}

body.inner-page.contact-page .cw-btn-secondary:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

body.inner-page.contact-page .cw-disclaimer {
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

@media(max-width:768px) {
  body.inner-page.contact-page .calc-embed-wrap {
    padding: 48px 32px;
  }

  body.inner-page.contact-page .cw-body-grid {
    grid-template-columns: 1fr;
  }

  body.inner-page.contact-page .cw-result-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.inner-page.contact-page .cw-result-right {
    text-align: left;
  }
}

/* === Service Cost Calculator page === */
body.inner-page.calculator-page {
  background: var(--off);
}

body.inner-page.calculator-page .calc-page-header {
  background: var(--ink);
  padding: 170px 64px 52px;
  position: relative;
  overflow: hidden;
}

body.inner-page.calculator-page .calc-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 24px 24px;
}

body.inner-page.calculator-page .calc-page-header::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .08) 0%, transparent 68%);
}

body.inner-page.calculator-page .calc-ph-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

body.inner-page.calculator-page .calc-ph-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

body.inner-page.calculator-page .calc-ph-eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.calculator-page .calc-ph-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.4px;
  color: #fff;
  margin-bottom: 12px;
}

body.inner-page.calculator-page .calc-ph-title em {
  font-style: italic;
  color: rgba(255, 255, 255, .38);
}

body.inner-page.calculator-page .calc-ph-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.7;
}

body.inner-page.calculator-page .lime-bar {
  height: 3px;
  background: var(--lime-sat);
}

body.inner-page.calculator-page .calc-layout {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

body.inner-page.calculator-page .form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

body.inner-page.calculator-page .fp-section {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}

body.inner-page.calculator-page .fp-section:last-child {
  border-bottom: none;
}

body.inner-page.calculator-page .fp-sec-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

body.inner-page.calculator-page .fp-sec-label::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.calculator-page .sqft-wrap {
  position: relative;
}

body.inner-page.calculator-page .sqft-input {
  width: 100%;
  height: 64px;
  background: var(--white);
  border: 1.5px solid var(--border-md);
  border-radius: 3px;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  padding: 0 64px 0 20px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -moz-appearance: textfield;
}

body.inner-page.calculator-page .sqft-input::-webkit-outer-spin-button,
body.inner-page.calculator-page .sqft-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

body.inner-page.calculator-page .sqft-input:focus {
  border-color: var(--lime-sat);
  box-shadow: 0 0 0 3px rgba(187, 237, 0, .12);
}

body.inner-page.calculator-page .sqft-unit {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

body.inner-page.calculator-page .sqft-hint {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 8px;
  line-height: 1.5;
}

body.inner-page.calculator-page .sqft-quick {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

body.inner-page.calculator-page .sqft-quick button {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--off);
  border: 1px solid var(--border-md);
  padding: 5px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .15s;
  font-family: 'Outfit', sans-serif;
}

body.inner-page.calculator-page .sqft-quick button:hover,
body.inner-page.calculator-page .sqft-quick button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

body.inner-page.calculator-page .condition-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

body.inner-page.calculator-page .condition-label {
  font-size: 11px;
  color: var(--ink-dim);
  text-align: center;
  max-width: 100px;
}

body.inner-page.calculator-page .condition-label.active-label {
  color: var(--ink);
  font-weight: 600;
}

body.inner-page.calculator-page .condition-label .cond-rate {
  color: var(--lime-dim);
  font-size: 10px;
}

body.inner-page.calculator-page .condition-label .cond-rate.dim {
  color: var(--ink-dim);
}

body.inner-page.calculator-page .slider-wrap {
  position: relative;
  padding: 8px 0;
}

body.inner-page.calculator-page input[type=range].cond-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--lime-sat) 0%, var(--lime-sat) 0%, var(--border-md) 0%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

body.inner-page.calculator-page input[type=range].cond-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--lime-sat);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  cursor: pointer;
  transition: transform .15s;
}

body.inner-page.calculator-page input[type=range].cond-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

body.inner-page.calculator-page input[type=range].cond-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--lime-sat);
  cursor: pointer;
}

body.inner-page.calculator-page .condition-card {
  background: var(--off);
  border: 1.5px solid var(--border-md);
  border-radius: 3px;
  padding: 14px 18px;
  margin-top: 14px;
  transition: border-color .2s, background .2s;
}

body.inner-page.calculator-page .condition-card.cond-maintenance {
  border-color: rgba(170, 221, 0, .4);
  background: rgba(170, 221, 0, .04);
}

body.inner-page.calculator-page .condition-card.cond-one_time {
  border-color: rgba(17, 17, 16, .2);
  background: rgba(17, 17, 16, .03);
}

body.inner-page.calculator-page .condition-card.cond-restoration {
  border-color: rgba(160, 80, 0, .25);
  background: rgba(160, 80, 0, .03);
}

body.inner-page.calculator-page .cc-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

body.inner-page.calculator-page .cc-rate {
  font-size: 12px;
  color: var(--lime-dim);
  font-weight: 600;
  margin-bottom: 4px;
}

body.inner-page.calculator-page .cc-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
}

body.inner-page.calculator-page .option-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.inner-page.calculator-page .opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: var(--off);
  border: 1.5px solid var(--border-md);
  border-radius: 3px;
  cursor: pointer;
  transition: all .15s;
}

body.inner-page.calculator-page .opt-btn:hover {
  border-color: rgba(17, 17, 16, .22);
  background: var(--white);
}

body.inner-page.calculator-page .opt-btn.selected {
  background: var(--ink);
  border-color: var(--ink);
}

body.inner-page.calculator-page .opt-btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.inner-page.calculator-page .opt-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-md);
  flex-shrink: 0;
  transition: all .15s;
  position: relative;
}

body.inner-page.calculator-page .opt-btn.selected .opt-radio {
  border-color: var(--lime-sat);
  background: var(--lime-sat);
}

body.inner-page.calculator-page .opt-btn.selected .opt-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

body.inner-page.calculator-page .opt-label {
  font-size: 13px;
  color: var(--ink);
  transition: color .15s;
}

body.inner-page.calculator-page .opt-btn.selected .opt-label {
  color: #fff;
}

body.inner-page.calculator-page .opt-sub {
  font-size: 11px;
  color: var(--ink-dim);
  transition: color .15s;
}

body.inner-page.calculator-page .opt-btn.selected .opt-sub {
  color: rgba(255, 255, 255, .45);
}

body.inner-page.calculator-page .opt-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  transition: all .15s;
}

body.inner-page.calculator-page .opt-btn:not(.selected) .opt-badge {
  background: rgba(170, 221, 0, .1);
  color: var(--lime-dim);
  border: 1px solid rgba(170, 221, 0, .25);
}

body.inner-page.calculator-page .opt-btn.selected .opt-badge {
  background: rgba(187, 237, 0, .2);
  color: var(--lime);
  border: 1px solid rgba(187, 237, 0, .3);
}

body.inner-page.calculator-page .stepper {
  display: flex;
  align-items: center;
  gap: 0;
}

body.inner-page.calculator-page .step-btn {
  width: 44px;
  height: 44px;
  background: var(--off);
  border: 1.5px solid var(--border-md);
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  font-family: 'Outfit', sans-serif;
}

body.inner-page.calculator-page .step-btn:first-child {
  border-radius: 3px 0 0 3px;
  border-right: none;
}

body.inner-page.calculator-page .step-btn:last-child {
  border-radius: 0 3px 3px 0;
  border-left: none;
}

body.inner-page.calculator-page .step-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

body.inner-page.calculator-page .step-val {
  width: 64px;
  height: 44px;
  border: 1.5px solid var(--border-md);
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

body.inner-page.calculator-page .floor-note {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 8px;
  line-height: 1.5;
}

body.inner-page.calculator-page .result-panel {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.inner-page.calculator-page .rp-main {
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

body.inner-page.calculator-page .rp-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 221, 0, .1) 0%, transparent 68%);
  pointer-events: none;
}

body.inner-page.calculator-page .rp-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

body.inner-page.calculator-page .rp-label::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--lime);
  display: block;
}

body.inner-page.calculator-page .rp-estimate {
  margin-bottom: 24px;
}

body.inner-page.calculator-page .rp-est-title {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

body.inner-page.calculator-page .rp-est-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -.3px;
}

body.inner-page.calculator-page .rp-est-range span {
  color: var(--lime-sat);
}

body.inner-page.calculator-page .rp-est-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  margin-top: 6px;
  line-height: 1.5;
}

body.inner-page.calculator-page .rp-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 2px;
  overflow: hidden;
}

body.inner-page.calculator-page .rp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

body.inner-page.calculator-page .rp-row:last-child {
  border-bottom: none;
  background: rgba(255, 255, 255, .04);
}

body.inner-page.calculator-page .rp-row-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

body.inner-page.calculator-page .rp-row-val {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

body.inner-page.calculator-page .rp-row.total .rp-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

body.inner-page.calculator-page .rp-row.total .rp-row-val {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--lime);
}

body.inner-page.calculator-page .rp-per-sqft {
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 20px;
}

body.inner-page.calculator-page .rp-psq-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

body.inner-page.calculator-page .rp-psq-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

body.inner-page.calculator-page .rp-cta {
  display: block;
  text-align: center;
  background: var(--lime-sat);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  border: none;
  width: 100%;
}

body.inner-page.calculator-page .rp-cta:hover {
  background: var(--lime);
}

body.inner-page.calculator-page .rp-disclaimer {
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  text-align: center;
  line-height: 1.6;
  margin-top: 14px;
}

body.inner-page.calculator-page .savings-panel {
  background: rgba(170, 221, 0, .08);
  border: 1px solid rgba(170, 221, 0, .2);
  border-radius: 3px;
  padding: 18px 20px;
}

body.inner-page.calculator-page .sp-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 8px;
}

body.inner-page.calculator-page .sp-val {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

body.inner-page.calculator-page .sp-desc {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.55;
}

body.inner-page.calculator-page .annual-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 18px 20px;
}

body.inner-page.calculator-page .annual-panel-label {
  margin-bottom: 12px;
}

body.inner-page.calculator-page .ap-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

body.inner-page.calculator-page .ap-row:last-child {
  border-bottom: none;
}

body.inner-page.calculator-page .ap-label {
  font-size: 12px;
  color: var(--ink-soft);
}

body.inner-page.calculator-page .ap-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

body.inner-page.calculator-page .ap-val.highlight {
  color: var(--lime-dim);
}

@media(max-width:860px) {
  body.inner-page.calculator-page .calc-layout {
    grid-template-columns: 1fr;
  }

  body.inner-page.calculator-page .result-panel {
    position: static;
  }

  body.inner-page.calculator-page .calc-page-header {
    padding: 130px 32px 48px;
  }
}

@media(max-width:768px) {
  .foot-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .foot-certs {
    order: 2;
    width: 100%;
    justify-content: center;
  }
   .cur-ring {
        display: none !important;
    }
   .cur {
        display: none !important;
    }
}

/* === End Inner Pages (generated) === */
body.inner-page.sds-page #nav {
  background: var(--ink);
}

li.nav-certs img {
  filter: invert(1) brightness(90.5);
}

body.inner-page.the-service-page li.nav-certs img {
  filter: none;
}

body.inner-page.the-system-page li.nav-certs img {
  filter: none;
}

body.inner-page.contact-page li.nav-certs img {
  filter: none;
}

nav.stuck li.nav-certs img {
  filter: invert(1) brightness(90.5) !important;
}
   .product-types {
   display:grid;
   grid-template-columns:repeat(3,1fr);
   gap:16px;
}
.values-content-wrapper{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:12px;
    align-items:end;
}
/* Hamburger button - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  padding: 0;
  margin: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}

/* Jab menu open ho - X icon banega */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  nav {
    padding: 20px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75%;
    max-width: 320px;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    display: flex !important;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-certs {
    flex-direction: row;
    gap: 16px;
    margin-top: 10px;
  }


  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 199;
  }

  .hero::after {
    width: 0;
  }

  .nav-links a {
    color: var(--white) !important;
  }

  li.nav-certs img {
    filter: invert(1) !important;
  }

  a.nav-btn {
    background: var(--lime) !important;
    color: var(--ink) !important;
  }
  
}
@media (max-width: 576px){
    .disc-points{
        flex-direction: column !important;
    }
    .d-point {
    display: flex;
    flex-wrap: wrap;
}
 .foot-top {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 500px){
    .product-types {
    grid-template-columns: repeat(1, 1fr);
}
}
