/* =====================================================
   Fade Growth Partner, niche ad landing pages.
   Sits on top of conversion-websites.css and offer.css.
   Only adds what those two do not already have: the
   client-site proof block in the hero, the form section,
   and the price comparison.
   ===================================================== */

/* ---------- Nav ----------------------------------------------------------
   conversion-websites.css hides the language toggle and the call button
   under 860px because that layout swaps in a burger menu. These pages have
   no burger, and they are bilingual ad traffic landing mostly on phones, so
   both have to survive the breakpoint. */

.cw-nav--niche .cw-lang,
.cw-nav--niche .cw-nav__cta {
  display: flex;
}

.cw-nav--niche .cw-nav__cta {
  white-space: nowrap;
}

@media (max-width: 560px) {
  /* "Call 509-400-0005" wraps to two lines at 390px and shoves the logo out
     of the bar. The number on its own still reads as a call button. */
  .nl-call__word {
    display: none;
  }

  .cw-nav--niche .cw-nav__cta {
    padding: 9px 14px;
    font-size: 12px;
  }

  .cw-nav--niche .cw-nav__inner {
    gap: 10px;
  }

  .cw-nav--niche .cw-logo img {
    height: 24px;
  }
}

/* ---------- Hero: the client site is the proof --------------------------- */

.cw-hero--niche {
  padding-bottom: clamp(56px, 6vw, 88px);
}

.nl-showcase__caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 14px 0 0;
  font-family: var(--cw-mono);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.nl-showcase__caption b {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.nl-showcase__caption span {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Proof grid ---------------------------------------------------
   The site-wide grid is three across. These pages show two or four sites,
   so a fixed three leaves an orphan either way. */

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

@media (max-width: 720px) {
  .nl-workgrid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  /* the screenshot IS the argument on these pages, so it stays legible
     instead of shrinking into a two-up thumbnail */
  .nl-workgrid .cw-work__meta {
    position: static;
    display: flex;
    padding: 16px;
  }

  .nl-workgrid .cw-work__meta h3 {
    font-size: 16px;
    line-height: 1.25;
    padding-right: 0;
  }

  .nl-workgrid .cw-work__meta p {
    font-size: 14px;
    line-height: 1.45;
  }

  .nl-workgrid .cw-work__arrow {
    position: static;
    width: 34px;
    height: 34px;
  }

  .nl-workgrid .cw-work__arrow svg {
    width: 13px;
    height: 13px;
  }
}

/* ---------- The price, deliberately below the proof ---------------------- */

.nl-money {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.nl-money__lead {
  margin: 18px 0 22px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cw-body);
}

.nl-money h2 {
  margin-top: 6px;
}

.nl-money__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.nl-money__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cw-ink);
}

.nl-money__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--cw-lime);
}

.nl-money p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--cw-body);
}

.nl-math {
  background: var(--cw-white);
  border: 1px solid var(--cw-line-strong);
  border-radius: var(--cw-radius-card);
  padding: 22px 24px;
  margin-bottom: 24px;
}

.nl-math__label {
  display: block;
  font-family: var(--cw-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-body);
  margin-bottom: 10px;
}

.nl-math__label--alt {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--cw-line);
}

.nl-math__row {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--cw-body);
}

.nl-math__row b {
  color: var(--cw-ink);
  font-weight: 600;
}

.nl-math__row--win b {
  color: var(--cw-ink);
}

.nl-math__row--win {
  color: var(--cw-ink);
}

/* ---------- The one call to action -------------------------------------- */

.nl-talk__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.nl-talk__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 480px;
}

.nl-talk__copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cw-dark-body);
}

.nl-talk__copy .cw-proofline {
  margin: 0;
}

.nl-talk__form .of-form {
  justify-self: stretch;
  max-width: 560px;
  margin-left: auto;
}

/* The form card is white but it sits inside .cw-section--dark, which repaints
   every h2 white and every p translucent-white. On a white card that erases
   the form's own heading entirely. Put the light-background colors back. */

.nl-talk .of-form h2 {
  color: var(--cw-ink);
}

.nl-talk .of-form p {
  color: var(--cw-body);
}

.nl-talk .of-form__foot a {
  color: var(--cw-ink);
}

.nl-talk .of-status--ok {
  color: #33461a;
}

.nl-talk .of-status--err {
  color: #7c1d1d;
}

@media (max-width: 1024px) {
  .nl-money,
  .nl-talk__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .nl-talk__copy {
    max-width: 640px;
  }

  .nl-talk__form .of-form {
    margin-left: 0;
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .nl-talk__form .of-form {
    max-width: none;
    padding: 22px;
  }
}

/* =====================================================
   Proof blocks, added 2026-08-06.
   The niche pages showed the work but never the owner.
   These four blocks carry the same proof the main
   websites page carries: an owner quote next to the
   headline, the client list, the numbers, and a way
   into the long-form case studies.
   ===================================================== */

/* ---------- 1. The owner quote, in the hero ------------------------------
   Highest-leverage placement on the page. It has to survive the hero's
   dark photo background, so it is a glass card, not a light one. */

.nl-vouch {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  /* <figure> carries a 40px inline margin by default, which pushed the card
     off the copy column's left edge on a phone. */
  margin: 26px 0 0;
  padding: 16px 18px;
  max-width: 520px;
  border-radius: var(--cw-radius-card);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-align: left;
}

.nl-vouch__face {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nl-vouch__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.nl-vouch__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.nl-vouch__who {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--cw-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.nl-vouch__who b {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.nl-vouch__link {
  color: var(--cw-lime);
  border-bottom: 1px solid rgba(214, 253, 112, 0.4);
  padding-bottom: 1px;
}

.nl-vouch__link:hover {
  border-bottom-color: var(--cw-lime);
}

@media (max-width: 560px) {
  .nl-vouch {
    padding: 14px;
    gap: 12px;
  }

  .nl-vouch__face {
    width: 44px;
    height: 44px;
  }

  .nl-vouch__text {
    font-size: 14px;
  }
}

/* ---------- 2. The numbers ----------------------------------------------
   Same block the main websites page uses. Stacks two-up on a phone rather
   than shrinking four columns into unreadable slivers. */

.nl-stats {
  border-bottom: 1px solid var(--cw-line);
}

@media (max-width: 720px) {
  .nl-stats .cw-stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .nl-stats .cw-stat {
    padding-left: 16px;
  }

  .nl-stats .cw-stat:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
}

/* ---------- 3. The client strip -----------------------------------------
   Answers "do you work with businesses like mine" before the reader has
   to hunt for it. Names and trades, each one a live site. */

.nl-clients {
  padding: 34px var(--cw-pad);
  background: var(--cw-soft);
  border-bottom: 1px solid var(--cw-line);
}

.nl-clients__label {
  display: block;
  margin-bottom: 18px;
  font-family: var(--cw-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cw-body);
}

.nl-clients__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.nl-client {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px;
  border-radius: var(--cw-radius-sm);
  background: var(--cw-white);
  border: 1px solid var(--cw-line);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.nl-client:hover {
  border-color: var(--cw-line-strong);
  transform: translateY(-2px);
}

.nl-client b {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--cw-ink);
}

.nl-client span {
  font-family: var(--cw-mono);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--cw-body);
}

@media (max-width: 1024px) {
  .nl-clients__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .nl-clients__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-client {
    padding: 12px;
  }
}

/* ---------- 4. Into the case studies -------------------------------------
   The niche pages had no route to the long-form write-ups, so a reader who
   wanted the whole story had nowhere to go. */

.nl-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.nl-case {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--cw-radius-card);
  background: var(--cw-white);
  border: 1px solid var(--cw-line);
  box-shadow: var(--cw-card-shadow);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.nl-case:hover {
  transform: translateY(-4px);
  border-color: var(--cw-line-strong);
}

.nl-case img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.nl-case__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.nl-case__eyebrow {
  font-family: var(--cw-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cw-body);
}

.nl-case h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--cw-ink);
}

.nl-case p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cw-body);
}

.nl-case__more {
  margin-top: 2px;
  font-family: var(--cw-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-ink);
}

@media (max-width: 860px) {
  .nl-cases {
    grid-template-columns: minmax(0, 1fr);
  }

  .nl-case img {
    height: 148px;
  }
}
