﻿: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;
}

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);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px 64px 80px;
  /* 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: -180px;
  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;
}

.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;
  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: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: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: 110px 32px 60px;
    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;
  }
}

@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: 130px 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: 130px 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-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;
}

/* === End Inner Pages (generated) === */
