/* =================================================================
   Willow — customers page

   Shared by customers.html and nl/customers.html. Lifted out of their inline
   <style> blocks so both languages load one cacheable file and
   cannot drift apart again.
   ================================================================= */
.filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 56px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
}
.filters .lab { font-family: var(--mono); font-size: var(--t-micro); color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.filter-btn {
  padding: 6px 14px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all 0.15s;
}
.filter-btn:hover { background: var(--cream-2); }
.filter-btn.active { background: var(--ink); color: var(--cream); }

/* Featured case */
.featured-case {
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.featured-case .tag-row { display: flex; gap: 8px; margin-bottom: 16px; }
.featured-case .ftag { font-family: var(--mono); font-size: var(--t-micro); padding: 4px 10px; border-radius: var(--r-pill); background: rgba(255,255,255,0.12); color: var(--blue-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.featured-case h2 { font-size: 48px; letter-spacing: -0.022em; line-height: 1.05; margin-bottom: 16px; max-width: 24ch; }
.featured-case h2 .em { color: var(--blue-mid); }
.featured-case p { color: rgba(244,239,231,0.75); font-size: 17px; line-height: 1.55; max-width: 54ch; }
.featured-case .quote {
  margin-top: 24px;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  border-left: 2px solid var(--blue-mid);
  padding-left: 20px;
  color: var(--cream);
}
.featured-case .attrib { margin-top: 16px; font-size: 13px; font-family: var(--mono); color: rgba(244,239,231,0.55); letter-spacing: 0.02em; }
.featured-case .stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 40px;
}
/* Stat rows grouped in a hairline box — label left, number right-aligned
   so the figure stays anchored regardless of label length. */
.featured-case .stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-bottom-width: 0;
}
.featured-case .stat:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
.featured-case .stat:has(+ .feat-portrait-wrap) { border-bottom-width: 1px; border-radius: 0 0 var(--r-md) var(--r-md); }
.featured-case .stat .big { font-size: 44px; letter-spacing: -0.03em; font-weight: 600; line-height: 0.95; color: var(--cream); text-align: right; white-space: nowrap; }
.featured-case .stat .big .unit { font-size: 18px; color: rgba(244,239,231,0.55); margin-left: 2px; vertical-align: top; }
.featured-case .stat .lab { font-family: var(--mono); font-size: var(--t-micro); color: var(--blue-mid); text-transform: uppercase; letter-spacing: 0.08em; text-align: left; }
.featured-case .stat .det { display: none; }
.featured-case .feat-portrait-wrap { margin-top: 24px; }

/* Featured-case portrait — mirrors the story-page dark-hero portrait */
.feat-portrait-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  margin-top: 24px;
  max-width: 360px;
}
.feat-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -36px -52px -36px -16px;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(74,130,255,0.32) 0%, rgba(74,130,255,0) 60%),
    radial-gradient(45% 40% at 30% 80%, rgba(46,107,235,0.22) 0%, rgba(46,107,235,0) 65%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}
.feat-portrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg, 18px);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 8px, rgba(255,255,255,0) 8px 16px),
    var(--ink-2, #1c2438);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(74,130,255,0.18) inset;
}
.feat-portrait-frame image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  --is-bg: transparent; --is-border: transparent;
  --is-text: rgba(244,239,231,0.55);
}
.feat-portrait-frame image-slot::part(image) { filter: contrast(1.06) saturate(0.92); }
.feat-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,48,0) 55%, rgba(20,28,48,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}
.feat-portrait-frame .ticks { position: absolute; inset: 8px; pointer-events: none; z-index: 3; }
.feat-portrait-frame .ticks i { position: absolute; width: 14px; height: 14px; border: 1px solid rgba(244,239,231,0.55); }
.feat-portrait-frame .ticks i.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.feat-portrait-frame .ticks i.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.feat-portrait-frame .ticks i.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.feat-portrait-frame .ticks i.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.feat-portrait-frame .corner-tag {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  font-family: var(--mono); font-size: var(--t-micro); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cream); background: rgba(20,28,48,0.7); backdrop-filter: blur(8px);
  padding: 5px 9px; border-radius: var(--r-pill, 999px);
  border: 1px solid rgba(255,255,255,0.18); white-space: nowrap;
}
.feat-portrait-frame .float-stat {
  position: absolute; bottom: 14px; right: 14px; z-index: 4;
  background: var(--blue); color: var(--white);
  border-radius: var(--r-md, 12px); padding: 10px 14px;
  box-shadow: 0 12px 24px -6px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.18) inset;
  display: flex; flex-direction: column; gap: 2px; min-width: 110px;
  transform: rotate(-1.5deg);
}
.feat-portrait-frame .float-stat .n { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.feat-portrait-frame .float-stat .l { font-family: var(--mono); font-size: var(--t-micro); text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.78; }
.feat-portrait-cap {
  font-family: var(--mono); font-size: var(--t-micro); text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(244,239,231,0.6);
  display: flex; align-items: baseline; gap: 10px; position: relative; z-index: 1;
}
.feat-portrait-cap .nm { color: var(--cream); white-space: nowrap; }
.feat-portrait-cap .sep { color: rgba(244,239,231,0.3); }

/* ======= Featured carousel ======= */
.featured-carousel { margin-bottom: 56px; }
.fc-viewport { overflow: hidden; border-radius: 28px; }
.fc-track { display: flex; transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1); will-change: transform; }
.fc-track > .featured-case { flex: 0 0 100%; width: 100%; margin-bottom: 0; }
.fc-controls { display: flex; align-items: center; gap: 20px; margin-top: 20px; }
.fc-counter { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-3); white-space: nowrap; flex: 1; }
.fc-counter b { color: var(--ink); font-weight: 600; }
.fc-dots { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; justify-content: flex-end; }
.fc-dot { width: 26px; height: 6px; padding: 0; cursor: pointer; background: var(--rule); border: none; border-radius: 2px; transition: background 0.2s; }
.fc-dot:hover { background: var(--ink-3); }
.fc-dot.active { background: var(--blue); }
@media (max-width: 720px) { .fc-dots .fc-dot { width: 16px; } }

/* Cases grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.case:hover { border-color: var(--ink); }
.case .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case .tag-s { font-family: var(--mono); font-size: var(--t-micro); padding: 3px 8px; border-radius: var(--r-pill); background: var(--cream-2); color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.case .tag-s.b { background: var(--blue-soft); color: var(--blue); }
.case h3 { font-size: 22px; letter-spacing: -0.014em; line-height: 1.15; }
.case h3 .em { color: var(--blue); }
.case .firm { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.case .lift {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.case .lift .v { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--blue); }
.case .lift .l { font-size: var(--t-micro); color: var(--ink-3); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* Logos band */
.logos {
  padding: 64px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 32px;
  border: 1px solid var(--rule);
}
.logo-cell {
  background: var(--paper);
  padding: 32px 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  letter-spacing: 0.02em;
}

.page-head .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: end;
}
/* Split hero — the Trustpilot proof panel sits in the right column */
.page-head .hero-grid h1 {
  font-size: var(--hero-h1-split);
  max-width: var(--hero-max-split);
}
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  justify-self: end;
}
.hero-proof .hp-cap {
  font-family: var(--mono);
  font-size: var(--t-micro);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-proof .hp-cap::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-proof .hp-tp {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  transition: border-color 0.15s;
}
.hero-proof .hp-tp:hover { border-color: var(--ink); }
.hero-proof .hp-tp .hp-stars { display: inline-flex; gap: 2px; }
.hero-proof .hp-tp .hp-stars span {
  width: 20px; height: 20px;
  background: #00b67a;
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--t-micro); line-height: 1;
}
.hero-proof .hp-tp .hp-stars span.empty { background: var(--rule); color: rgba(12,19,56,0.3); }
.hero-proof .hp-tp .hp-score { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.hero-proof .hp-tp .hp-score .big { font-size: 15px; font-weight: 600; letter-spacing: -0.008em; }
.hero-proof .hp-tp .hp-score .sub {
  font-family: var(--mono); font-size: var(--t-micro);
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 3px;
}
.hero-proof .hp-note {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
  padding-left: 4px;
}

@media (max-width: 1100px) {
  .page-head .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-proof { justify-self: start; }
  /* single column below 1100px, so the full-width scale applies again */
  .page-head .hero-grid h1 { font-size: var(--hero-h1); max-width: var(--hero-max); }
}

/* ======= People behind these stories ======= */
.people-strip {
  margin: 40px 0 16px;
  padding: 28px 28px 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 24px;
}
.people-strip .lead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.people-strip .lead .h {
  font-family: var(--mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.people-strip .lead .note {
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
}
.people-strip .lead .note .em { color: var(--blue); font-style: normal; font-weight: 500; }
.people-strip .grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.people-strip .p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.15s;
}
.people-strip .p:hover { transform: translateY(-2px); }
.people-strip .face {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-2);
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px -4px rgba(20,28,48,0.25);
}
.people-strip .face image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  --is-bg: transparent; --is-border: transparent;
  --is-text: rgba(20,28,48,0.4);
  font-size: 10px;
}
.people-strip .nm { font-weight: 600; font-size: 13px; letter-spacing: -0.005em; line-height: 1.2; }
.people-strip .firm { font-family: var(--mono); font-size: var(--t-micro); color: var(--ink-3); letter-spacing: 0.02em; line-height: 1.3; }
.people-strip .p:hover .nm { color: var(--blue); }

@media (max-width: 1100px) {
  .people-strip .grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .people-strip .grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .people-strip .face { width: 60px; height: 60px; }
}

/* ======= Voices ribbon (warm quotes) ======= */
.voices {
  padding: 96px 0 64px;
  background: var(--white);
}
.voices .head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
}
.voices .head .lab {
  font-family: var(--mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.voices .head h2 {
  font-size: 32px;
  letter-spacing: -0.018em;
  line-height: 1.1;
}
.voices .head h2 .em { color: var(--blue); font-style: italic; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}
.voice .mark {
  font-family: 'DM Serif Display', 'Times New Roman', serif;
  font-size: 60px;
  line-height: 0.6;
  color: var(--blue);
  opacity: 0.35;
}
.voice .q {
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.003em;
  flex: 1;
  text-wrap: pretty;
}
.voice .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
}
.voice .face {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-2);
  border: 2px solid var(--white);
  box-shadow: 0 3px 8px -3px rgba(20,28,48,0.25);
  flex-shrink: 0;
}
.voice .face image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  --is-bg: transparent; --is-border: transparent;
  --is-text: rgba(20,28,48,0.4); font-size: 9px;
}
.voice .who .nm { font-weight: 600; font-size: 14px; letter-spacing: -0.005em; line-height: 1.2; }
.voice .who .firm { font-family: var(--mono); font-size: var(--t-micro); color: var(--ink-3); margin-top: 2px; }

@media (max-width: 1100px) {
  .voices-grid { grid-template-columns: 1fr 1fr; }
  .featured-case { grid-template-columns: 1fr; padding: 40px; }
  .featured-case .stats { padding-left: 0; padding-top: 32px; }
  .featured-case .side { gap: 28px; }
  .feat-portrait-wrap { max-width: 360px; }
}
@media (max-width: 720px) {
  .voices-grid { grid-template-columns: 1fr; }
  .voices .head { flex-direction: column; gap: 8px; }
}
@media (max-width: 1100px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}
/* 720, not 560: these were on a one-off 620px breakpoint. Collapsing them at
   560 instead left .cases-grid multi-column between 560 and 620, where the
   cards overflow the viewport (measured: 689px of content in a 590px window).
   Collapsing at the next tier up is the fail-safe direction — a single column
   is never broken, just roomier. */
@media (max-width: 720px) {
  .cases-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}
