@import './tokens.css';

/* =========================================================
   The Doggo Scoop — deodorizing.css
   Refactored to match turf.html visual language.
   Depends on: styles.css (tokens, .btn, .container, .reveal)
   Shares: tfCheckList from turf.css (or duplicated below)
   ========================================================= */

/* =========================================================
   SHARED PAGE UTILITIES — mirrors turf.css tf- tokens
   ========================================================= */

.deoKicker {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .45);
  margin: 0 0 10px;
}

.deoKicker--light {
  color: rgba(var(--blush-rgb), .85);
}

.deoSectionTitle {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--newBrand);
}

.deoSectionTitle em {
  font-style: italic;
  color: var(--blush);
}

.deoSectionTitle--light {
  color: #fff;
}

.deoBody {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--ink-rgb), .70);
  line-height: 1.65;
}

.deoBody--light {
  color: rgba(248, 251, 255, .78);
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible,
.reveal.isVisible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   SKIP LINK
   ========================================================= */
.skipLink {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skipLink:focus { left: 0; }

/* =========================================================
   SHARED UTILITIES
   ========================================================= */
.tagGrid {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), .15);
  border: 1px solid rgba(var(--brand-rgb), .28);
  color: #3D5A78;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .01em;
}

/* tfCheckList — shared with turf.css, duplicated here for standalone use */
.tfCheckList {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tfCheckList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.tfCheckList li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(var(--blush-rgb), .15);
  color: var(--blush);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* =========================================================
   1. HERO V2 — matches turf.html .tfHeroV2
   ========================================================= */

.deoHeroV2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 42%, rgba(220, 232, 255, .25), transparent 34%),
    linear-gradient(135deg, #05155E 0%, #1672DD 48%, #05155E 100%);
  color: #fff;
  padding: 34px 0 0;
}

.deoHeroV2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/images/hero-pattern.png");
  background-repeat: repeat;
  background-size: 520px 520px;
  background-position: center top;
  opacity: 0.04;
}

.deoHeroV2Glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 26%, rgba(22, 114, 221, .22), transparent 26%),
    radial-gradient(circle at 70% 75%, rgba(248, 251, 255, .14), transparent 28%);
  pointer-events: none;
}

.deoHeroV2Inner {
  display: grid;
  grid-template-columns: minmax(390px, .9fr) minmax(480px, 1.1fr);
  gap: clamp(34px, 4vw, 70px);
  align-items: center;
  min-height: 640px;
  position: relative;
  z-index: 2;
}

.deoHeroV2Copy {
  position: relative;
  z-index: 2;
  padding: 50px 0 110px;
}


.deoHeroV2Title {
  position: relative;
  margin: 16px 0 18px;
  max-width: 620px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 950;
  color: #fff;
  z-index: 1;
}

.deoUnderline {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #fff;
  font-style: normal;
  padding-bottom: 10px;
}

.deoUnderline::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: -21px;
  height: 46px;
  background: url("/images/underline-white.png") no-repeat center;
  background-size: 85% auto;
  z-index: -1;
  pointer-events: none;
  transform: rotate(-1deg);
}

.deoHeroV2Text {
  max-width: 52ch;
  margin: 0 0 32px;
  color: rgba(248,251,255,.78);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.62;
}

.deoHeroV2Actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ZIP form — hero variant */
.deoHeroZipCta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}

.deoHeroZipInput {
  flex: 1 1 140px;
  min-width: 120px;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(248,251,255,.30);
  background: rgba(248,251,255,.10);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}

.deoHeroZipInput::placeholder { color: rgba(248,251,255,.50); }

.deoHeroZipInput:focus {
  border-color: rgba(248,251,255,.65);
  background: rgba(248,251,255,.16);
}

.deoHeroZipBtn {
  flex-shrink: 0;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  background: var(--blush, #1672DD);
  color: #05155E;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 18px 34px rgba(22, 114, 221, .28);
  transition: transform .18s ease, box-shadow .18s ease;
}

.deoHeroZipBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(22, 114, 221, .38);
}

.deoHeroZipResult {
  width: 100%;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(248,251,255,.80);
  min-height: 18px;
}

/* Visual side */
.deoHeroV2Visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 0;
}

/* Skewed parallelogram frame — matches turf .tfHeroV2Slider without the slider */
.deoHeroV2ImageCard {
  position: relative;
  width: min(880px, 100%);
  height: clamp(490px, 56vw, 670px);
  overflow: hidden;
  border-radius: 34px 0 0 34px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.34),
    inset 0 0 0 1px rgba(248,251,255,.18);
  transform: skewX(-7deg);
  transform-origin: center;
  background: #123;
}

.deoHeroV2Image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20%;
  display: block;
  transform: skewX(7deg) scale(1.13);
  transform-origin: center;
  filter: saturate(1.12) brightness(1.03);
}

/* Trust card — identical to turf .tfHeroV2Trust */
.deoHeroV2Trust {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1180px;
  margin-top: -72px;
  padding: 34px 44px;
  border-radius: 22px;
  background: rgba(248,251,255,.96);
  color: #123;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.deoHeroV2TrustItem {
  display: flex;
  align-items: center;
  gap: 18px;
}

.deoHeroV2TrustItem strong {
  display: block;
  margin-bottom: 3px;
  color: #1672DD;
  font-size: 15px;
  font-weight: 950;
}

.deoHeroV2TrustItem p {
  margin: 0;
  color: rgba(5, 21, 94, .72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.deoHeroV2TrustDivider {
  width: 1px;
  height: 54px;
  background: rgba(5, 21, 94, .14);
}

.deoHeroV2Faces {
  display: flex;
}

.deoHeroV2Faces span {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f2c2a2 0 22%, transparent 23%),
    radial-gradient(circle at 50% 72%, #42526a 0 28%, transparent 29%),
    #d8e5ef;
}

.deoHeroV2Faces span:first-child { margin-left: 0; }

.deoHeroV2TrustIcon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(22, 114, 221, .08);
  color: #1672DD;
  font-size: 26px;
}

/* =========================================================
   2. EXPLAINER — cream bg, image + copy
   ========================================================= */

.deoExplainer {
  padding: 80px 0;
  background: var(--cream);
}

.deoExplainerInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.deoExplainerImg {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.deoExplainerImgEl {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.deoExplainerImgBadge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--blush);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(var(--blush-rgb), .40);
  max-width: 180px;
  line-height: 1.3;
  text-align: center;
}

.deoExplainerImgBadge strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.02em;
  color: #fff;
}
/* =========================================================
   HOW WE TREAT YOUR YARD — homepage promise style
   ========================================================= */
/* =========================================================
   HOW WE TREAT YOUR YARD — homepage promise style
   ========================================================= */

.deoTreatPromise {
  padding: 96px 0 100px;
  background: var(--cream);
}

.deoTreatPromise .container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: clamp(56px, 8vw, 120px);
  padding-right: clamp(56px, 8vw, 120px);
}

.deoTreatPromiseWrap {
  text-align: center;
}

.deoTreatPromiseKicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 18px;
  color: rgba(var(--ink-rgb), .45);
}

.deoTreatPromiseTitle {
  margin: 0 0 60px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--blush);
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.06;
}

.deoTreatPromiseList {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  column-gap: 56px;
  row-gap: 72px;
}

.deoTreatPromiseItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 42px 52px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.deoTreatPromiseItem:hover {
  background: #F8FBFF;
  border-color: rgba(var(--ink-rgb), .08);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), .18);
  transform: translateY(-2px);
}

.deoTreatPromiseIcon {
  width: 100%;
  margin: 0 0 16px;
  text-align: left;
}

.deoTreatPromiseIcon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 14px 26px rgba(var(--ink-rgb), .14));
}

.deoTreatPromiseStep {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  color: var(--blush);
}

.deoTreatPromiseItem h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.06;
  max-width: none;
}

.deoTreatPromiseItem p:last-child {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: var(--ink);
  max-width: 25ch;
}

/* Tablet */
@media (max-width: 1100px) {
  .deoTreatPromise {
    padding: 84px 0 90px;
  }

  .deoTreatPromise .container {
    padding-left: clamp(32px, 5vw, 64px);
    padding-right: clamp(32px, 5vw, 64px);
  }

  .deoTreatPromiseTitle {
    margin-bottom: 44px;
  }

  .deoTreatPromiseList {
    column-gap: 28px;
    row-gap: 56px;
  }

  .deoTreatPromiseItem {
    padding: 30px 24px;
  }

  .deoTreatPromiseIcon img {
    width: 72px;
    height: 72px;
  }

  .deoTreatPromiseItem h3 {
    font-size: 26px;
  }

  .deoTreatPromiseItem p:last-child {
    font-size: 16px;
    line-height: 1.65;
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .deoTreatPromise {
    padding: 72px 0 48px;
  }

  .deoTreatPromise .container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .deoTreatPromiseWrap {
    width: 100%;
    text-align: left;
  }

  .deoTreatPromiseKicker,
  .deoTreatPromiseTitle {
    padding-left: 24px;
    padding-right: 24px;
    text-align: left;
  }

  .deoTreatPromiseTitle {
    margin-bottom: 28px;
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.08;
  }

  .deoTreatPromiseList {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .deoTreatPromiseItem {
    padding: 20px 24px;
    border-radius: 0;
  }

  .deoTreatPromiseIcon {
    margin-bottom: 12px;
  }

  .deoTreatPromiseIcon img {
    width: 64px;
    height: 64px;
  }

  .deoTreatPromiseItem h3 {
    font-size: 25px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .deoTreatPromiseItem p:last-child {
    font-size: 16px;
    line-height: 1.65;
    max-width: none;
  }
}
/* =========================================================
   4. PRODUCTIZATION — Clean Yard Reset service band
   ========================================================= */

.deoProductize {
  padding: 72px 0;
  background: var(--cream);
}

.deoProductize .container {
  width: min(100%, 1500px);
}

.productizeBand {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px 22px 26px;
  background: var(--slate);
  border: 1px solid rgba(var(--ink-rgb), .10);
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), .09);
}

.productizeBand::before {
  content: "";
  position: absolute;
  inset: -120px;
  background-image: url("/images/whitePaw.png");
  background-repeat: repeat;
  background-size: 420px 420px;
  transform: rotate(-6deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}

.productizeBand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 240px at 50% 40%,
    rgba(var(--cream-rgb), .14),
    rgba(var(--cream-rgb), 0) 60%
  );
  pointer-events: none;
  z-index: 0;
}

.productizeBand > * {
  position: relative;
  z-index: 1;
}

.productizeHead {
  margin-bottom: 26px;
  max-width: 850px;
}

.productizeKicker {
  color: black;
  margin-bottom: 10px;
}

.productizeTitle {
  margin: 0 0 10px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
  color:#1672DD;
}

.trademark {
  font-size: .42em;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 2px;
}

.productizeSub {
  margin: 0;
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
  color: black;
}

.productizeGrid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr;
  gap: 16px;
  align-items: stretch;
}

.productizeCard {
  position: relative;
  border-radius: 18px;
  border: 2px solid rgba(var(--ink-rgb), .18);
  background: rgba(var(--cream-rgb), .88);
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), .07);
  padding: 18px 18px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.productizeCard:not(.productizeCard--featured):hover,
.productizeCard:not(.productizeCard--featured):focus-within {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), .11);
  border-color: rgba(var(--blush-rgb), .45);
  background: rgba(var(--cream-rgb), .92);
}

.productizeIconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  min-height: 44px;
}

.productizeIcon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(var(--blush-rgb), .22);
  color: rgba(var(--ink-rgb), .92);
  font-size: 25px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(var(--ink-rgb), .08);
}

.productizeCard h3 {
  margin: 6px 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-align: center;
  font-size: 18px;
  line-height: 1.22;
  color: rgba(var(--ink-rgb), .92);
}

.productizeCardBody {
  margin-top: 6px;
  background: rgba(var(--cream-rgb), .68);
  border-radius: 14px;
  border: 1px solid rgba(var(--ink-rgb), .10);
  padding: 14px 14px 12px;
  flex: 1 1 auto;
  transition: transform .16s ease, opacity .16s ease;
}

.productizeCardBody p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.55;
  font-size: 14px;
}

.productizeCard--featured {
  background: rgba(var(--cream-rgb), .30);
  border-color: rgba(var(--ink-rgb), .20);
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), .13);
  backdrop-filter: blur(6px);
  transform: none;
}

.productizeCard--featured::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(var(--cream-rgb), .18) 2px, rgba(var(--cream-rgb), 0) 2.5px),
    radial-gradient(circle at 60px 50px, rgba(var(--cream-rgb), .14) 2px, rgba(var(--cream-rgb), 0) 2.5px);
  background-size: 90px 90px;
  opacity: .55;
  pointer-events: none;
  transform: rotate(-6deg);
}

.productizeCard--featured > * {
  position: relative;
  z-index: 1;
}

.productizeCard--featured h3 {
  color: var(--ink);
  margin-top: 2px;
}

.productizeCard--featured .productizeCardBody {
  background: transparent;
  border: 0;
  padding: 6px 2px 0;
}

.productizeCard--featured .productizeCardBody p {
  color: rgba(var(--ink-rgb), .86);
}

.productizeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 10px auto 6px;
  font-weight: 950;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid rgba(var(--ink-rgb), .14);
  background: var(--slate-d);
  color: var(--cream);
  box-shadow: 0 12px 24px rgba(var(--ink-rgb), .28);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.productizeBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(var(--ink-rgb), .32);
  filter: brightness(.98);
}

.productizeProof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 22px;
}

.productizeProof span {
  font-size: 14px;
  font-weight: 800;
  color:  var(--ink);
}

.productizeTopRow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  min-height: 72px;
}

.productizeTopIconImg {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: .95;
  filter: drop-shadow(0 6px 10px rgba(var(--ink-rgb), .10));
}

.productizeTopIconImg--large {
  width: 82px;
  height: 82px;
  margin-bottom: -6px;
}

.productizeTopIconImg--wide {
  width: 138px;
  height: 82px;
  margin-bottom: -6px;
}

@media (max-width: 980px) {
  .productizeTopRow {
    min-height: 68px;
  }

  .productizeTopIconImg {
    width: 68px;
    height: 68px;
  }

  .productizeTopIconImg--large {
    width: 78px;
    height: 78px;
  }

  .productizeTopIconImg--wide {
    width: 132px;
    height: 78px;
  }
}

@media (max-width: 980px) {
  .productizeBand {
    padding: 22px 16px 18px;
    border-radius: 24px;
  }

  .productizeGrid {
    grid-template-columns: 1fr;
  }

  .productizeCard {
    min-height: 0;
  }

  .productizeBtn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .deoProductize {
    padding: 48px 0;
  }

  .productizeTitle {
    font-size: clamp(34px, 10vw, 46px);
  }

  .productizeSub {
    font-size: 15px;
  }
}

/* =========================================================
   6. WHY IT MATTERS — alternating rows
   ========================================================= */

.deoWhyMatters {
  padding: 80px 0;
  background: var(--cream);
}

.deoWhyRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.deoWhyRow:last-child { margin-bottom: 0; }

.deoWhyRow--reverse { direction: rtl; }
.deoWhyRow--reverse > * { direction: ltr; }

.deoWhyImg {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(5,21,94,.12);
  display: block;
 
  object-fit: cover;
}

/* =========================================================
   8. WHO IT'S FOR + CTA BAND — bone bg wrapper
   ========================================================= */
/* =========================================================
   FIT CHECK — concise conversion section
   ========================================================= */
/* =========================================================
   BEST FOR — concise conversion section
   ========================================================= */
/* =========================================================
   WHO IT'S FOR — Why Choose styling
   ========================================================= */

.deoBestForSimple {
  padding: 120px 0 118px;
  background: var(--cream);
}

.deoBestForSimple .container {
  width: min(100%, 1500px);
  padding-left: 24px;
  padding-right: 24px;
}

.deoBestForHead {
  max-width: 920px;
  margin: 0 auto 72px;
  text-align: center;
}

.deoBestForTitle {
  margin: 14px 0 18px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 950;
  color: var(--blush);
}

.deoBestForIntro {
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(var(--ink-rgb), .45);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
}

.deoBestForChecks {
  width: 100%;
  max-width: none;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.deoBestForItem {
  background: #F8FBFF;
  border: 1.5px solid rgba(5, 21, 94, 0.15);
  border-radius: 28px;
  padding: 40px 30px 34px;
  min-height: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  box-shadow:
    0 1px 0 rgba(248,251,255,.8) inset,
    0 10px 24px rgba(var(--ink-rgb), .05);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.deoBestForItem:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(248,251,255,.9) inset,
    0 18px 38px rgba(var(--ink-rgb), .08);
}

.deoBestForItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 3px;
  background: var(--blush);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.deoBestForItem:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.deoBestForMark {
  width: 97px;
  height: 97px;
  display: grid;
  place-items: center;
  margin: 0 0 26px;
  font-size: 54px;
  line-height: 1;
}

.deoBestForMark {
  width: 118px;
  height: 118px;
  margin: 0 0 30px;
  display: grid;
  place-items: center;
  align-self: flex-start;
  flex: 0 0 auto;
}

.deoBestForIconPng {
  width: 97px;
  height: 97px;
  display: block;
  object-fit: contain;
  object-position: center;
}



@media (max-width: 1100px) {
  .deoBestForMark {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
  }

  .deoBestForIconPng {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 560px) {
  .deoBestForMark {
    width: 132px;
    height: 132px;
    margin: 0 auto 22px;
    align-self: center;
  }

  .deoBestForIconPng {
    width: 96px;
    height: 96px;
  }
}

.deoBestForItem h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: var(--ink);
}

.deoBestForItem p {
  margin: 0;
  max-width: none;
  color: rgba(var(--ink-rgb), .76);
  font-weight: 600;
  line-height: 1.7;
  font-size: 16px;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {
  .deoBestForSimple {
    padding: 92px 0 92px;
  }

  .deoBestForHead {
    margin-bottom: 54px;
  }

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

  .deoBestForItem {
    padding: 32px 28px 30px;
    min-height: 330px;
  }

  .deoBestForMark {
    width: 88px;
    height: 88px;
    font-size: 48px;
    margin-bottom: 24px;
  }

  .deoBestForItem h3 {
    font-size: 22px;
  }

  .deoBestForItem p {
    font-size: 15.5px;
  }
}

@media (max-width: 980px) {
  .deoBestForSimple {
    padding: 78px 0 82px;
  }

  .deoBestForHead {
    text-align: left;
    margin: 0 0 44px;
    max-width: 760px;
  }

  .deoBestForIntro {
    margin: 0;
    max-width: 62ch;
  }

  .deoBestForChecks {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
  }

  .deoBestForItem {
    min-height: 310px;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 560px) {
  .deoBestForSimple {
    padding: 68px 0 72px;
  }

  .deoBestForHead {
    margin-bottom: 34px;
  }

  .deoBestForTitle {
    font-size: clamp(30px, 8vw, 38px);
  }

  .deoBestForIntro {
    font-size: 15px;
    line-height: 1.65;
  }

  .deoBestForChecks {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
  }

  .deoBestForItem {
    min-height: unset;
    padding: 30px 24px 28px;
    border-radius: 24px;
  }

  .deoBestForMark {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    align-self: center;
    font-size: 52px;
  }

  .deoBestForItem h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .deoBestForItem p {
    font-size: 15.5px;
    line-height: 1.68;
  }
}
/* CTA BAND */
.ctaBand {
  padding: 88px 0;
}

.ctaBandInner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ctaKicker {
  display: block;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--slate-d);
}

.ctaBandInner h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 950;
  color: var(--slate-d);
}

.ctaBandInner p {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
  color: rgba(5,21,94,.80);
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.ctaPrimary {
  background: var(--slate-d);
  color: white;
  border: 2px solid var(--slate-d);
  font-size: 16px;
  font-weight: 950;
  padding: 15px 30px;
  box-shadow: 0 14px 32px rgba(5,21,94,.28);
}

.ctaPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(5,21,94,.36);
}

.ctaGhost {
  background: #F8FBFF;
  color: var(--slate-d);
  border-color: rgba(5,21,94,.20);
  font-weight: 900;
  font-size: 15px;
  padding: 14px 22px;
}

.ctaGhost:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(5,21,94,.12);
}

/* =========================================================
   9. REVIEWS
   ========================================================= */

.deoReviews {
  padding: 80px 0;
  background: var(--cream);
}

.deoReviewsHead {
  max-width: 640px;
  margin: 0 0 48px;
}

.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reviewCard {
  background: #F8FBFF;
  border: 1px solid rgba(var(--brand-rgb), .18);
  border-radius: 22px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .16s ease, box-shadow .16s ease;
}

.reviewCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(5,21,94,.10);
}

.reviewStars {
  display: flex;
  gap: 3px;
}

.reviewStars svg {
  width: 16px; height: 16px;
  fill: #f5a623;
  stroke: none;
}

.reviewQuote {
  margin: 0;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.68;
  color: rgba(5,21,94,.80);
  font-style: italic;
  flex: 1;
}

.reviewAuthor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(5,21,94,.08);
}

.reviewAvatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), .18);
  border: 1.5px solid rgba(var(--brand-rgb), .30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 15px;
  color: var(--slate-d);
  flex-shrink: 0;
}

.reviewName {
  font-weight: 900;
  font-size: 13.5px;
  color: var(--slate-d);
  line-height: 1.2;
}

.reviewLocation {
  font-size: 12px;
  font-weight: 650;
  color: rgba(5,21,94,.50);
  margin-top: 2px;
}

/* =========================================================
   10. FAQ + FINAL CTA — bone bg wrapper (matches .tfBoneFlow)
   ========================================================= */

.deoBoneFlow {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
  isolation: isolate;
}

.deoBoneFlow::before,
.deoBoneFlow::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: url("/images/navyBonepattern.png");
  background-repeat: repeat;
  z-index: 0;
}

.deoBoneFlow::before {
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: 400px 400px;
  background-position: 90px 10px;
  opacity: 0.07;
  transform: rotate(17deg);
}

.deoBoneFlow::after {
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: 600px 600px;
  background-position: 341px 60px;
  opacity: 0.05;
  transform: rotate(1deg);
}

.deoBoneFlow .faq,
.deoBoneFlow .deoCta {
  position: relative;
  background: transparent;
  z-index: 1;
}

.deoBoneFlow .faq > .container,
.deoBoneFlow .deoCta > .container {
  position: relative;
  z-index: 1;
}

 
/* FAQ — matches turf.css .tfFaq exactly */
.tfFaq {
  padding: 80px 20px;
  background: transparent;
}
 
.faqHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
 
.faqHead h2 {
  margin: 0;
  font-size: 32px;
  color: var(--blush);
}
 
.faqHead p {
  margin: 0;
  color: rgba(var(--ink-rgb), .45);
  font-size: 16px;
}
 
.faqGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
 
@media (max-width: 860px) {
  .faqHead { flex-direction: column; align-items: flex-start; }
  .faqGrid  { grid-template-columns: 1fr; }
}
 
.faqItem {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 25px rgba(var(--ink-rgb), .06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
 
.faqItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(var(--ink-rgb), .09);
  border-color: rgba(var(--blush-rgb), .35);
}
 
.faqItem summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  transition: color .2s ease;
}
 
.faqItem summary::-webkit-details-marker { display: none; }
 
.faqItem summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: rgba(var(--blush-rgb), .55);
}
 
.faqItem[open] summary { color: var(--blush); }
.faqItem[open] summary span:first-child { color: var(--blush); }
 
.faqIcon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(var(--cream-rgb), .90);
  position: relative;
  flex: 0 0 auto;
}
 
.faqIcon::before,
.faqIcon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(var(--blush-rgb), .95);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
 
.faqIcon::after { transform: translate(-50%, -50%) rotate(90deg); }
 
.faqBody {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(var(--ink-rgb), .06);
}
 
.faqBody p {
  margin: 14px 0 0;
  color: var(--slate-l);
  font-size: 15px;
  line-height: 1.6;
}
 
.faqItem[open] .faqIcon {
  background: rgba(var(--blush-rgb), .10);
  border-color: rgba(var(--blush-rgb), .35);
}
 
.faqItem[open] .faqIcon::after { display: none; }

/* Final CTA — matches turf .tfCta */
.deoCta {
  padding: 80px 0;
}

.deoCtaInner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.deoCtaBones {
  font-size: 28px;
  letter-spacing: 8px;
  margin-bottom: 16px;
  opacity: .5;
}

.deoCtaTitle {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--newBrand);
}

.deoCtaText {
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(var(--ink-rgb), .65);
  line-height: 1.55;
}

.deoCtaBtnLg {
  font-size: 16px;
  padding: 15px 32px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .deoHeroV2Inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .deoHeroV2Copy { padding: 60px 0 0; }

  .deoHeroV2Visual { justify-content: center; }

  /* Remove skew on stacked layout — matches turf responsive */
  .deoHeroV2ImageCard {
    border-radius: 30px;
    transform: none;
    height: clamp(420px, 62vw, 580px);
  }

  .deoHeroV2Image {
    transform: none;
  }

  .deoHeroV2Trust {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .deoHeroV2TrustDivider { display: none; }
}

@media (max-width: 960px) {
  .deoExplainerInner { grid-template-columns: 1fr; gap: 40px; }
  .deoExplainerImgBadge { bottom: 8px; right: 8px; }
  .deoWhyRow { grid-template-columns: 1fr; gap: 32px; }
  .deoWhyRow--reverse { direction: ltr; }
  .benefitsGrid { grid-template-columns: repeat(2, 1fr); }
  .productizeGrid { grid-template-columns: 1fr; }
  .bestForGrid { grid-template-columns: repeat(2, 1fr); }
  .reviewsGrid { grid-template-columns: 1fr; gap: 16px; }
  .faqGrid { grid-template-columns: 1fr; }
  .faqHead { flex-direction: column; align-items: flex-start; }
  .bestForBubble { padding: 48px 32px; }
  .productizeBubble { padding: 48px 32px; }
  .deoProcessInner { padding: 48px 32px; }

  .diagGrid { grid-template-columns: 1fr; gap: 24px; }
  .diagCenter { width: 100%; }
  .diagCenterCard { max-width: 320px; margin: 0 auto; }
  .diagArrows { display: none; }
}

@media (max-width: 760px) {
  .deoHeroV2 { padding-top: 20px; }
  .deoHeroV2Copy { padding-top: 42px; }

  .deoHeroV2Title {
    font-size: clamp(46px, 14vw, 68px);
    line-height: .96;
  }

  .deoUnderline::after {
    bottom: -9px;
    height: 22px;
  }

  .deoHeroZipCta { flex-direction: column; }
  .deoHeroZipInput,
  .deoHeroZipBtn { width: 100%; }

  .deoHeroV2ImageCard {
    height: 430px;
    border-radius: 24px;
  }

  .deoHeroV2Trust { padding: 24px; border-radius: 18px; }
}

@media (max-width: 640px) {
  .benefitsGrid { grid-template-columns: 1fr; }
  .bestForGrid { grid-template-columns: 1fr; }
  .bestForBubble { padding: 36px 20px; border-radius: 22px; }
  .deoBestFor { padding: 52px 12px; }
  .productizeBubble { padding: 36px 20px; border-radius: 22px; }
  .deoProductize { padding: 52px 12px; }
  .deoProcessInner { padding: 36px 20px; border-radius: 24px; }
  .deoProcess { padding: 52px 12px; }

  .deoSteps { grid-template-columns: 1fr; gap: 28px; }
  .deoStepArrow { display: none; }

  .ctaButtons { flex-direction: column; align-items: stretch; }
  .ctaPrimary, .ctaGhost { width: 100%; justify-content: center; text-align: center; }

  .diagResult { flex-direction: column; text-align: center; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bestForCard, .benefitCard, .reviewCard, .productizeCard, .faqItem, .deoStep {
    transition: none !important; transform: none !important;
  }
}