.elementor-1211 .elementor-element.elementor-element-8ae7e8d{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1211 .elementor-element.elementor-element-d1caee6{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -70px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d1caee6 *//* ===========================================
   VELOS CASE STUDY · WASTE2WEAR · V10
   Editorial redesign. Single file.
   No !important. No HTML comments.
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,700;1,800&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

/* ===========================================
   1. TOKENS
   =========================================== */
.velos-case {
  --velos-amber:        #edac62;
  --velos-amber-light:  #f5c789;
  --velos-amber-deep:   #c8893f;
  --velos-amber-glow:   rgba(237, 172, 98, 0.40);
  --velos-amber-glow-s: rgba(237, 172, 98, 0.16);

  --velos-cream:        #fafaf7;
  --velos-cream-soft:   rgba(250, 250, 247, 0.86);
  --velos-cream-muted:  rgba(250, 250, 247, 0.62);
  --velos-cream-faint:  rgba(250, 250, 247, 0.42);

  --velos-black:        #0a0a0a;
  --bg-dark:            #111114;
  --bg-darker:          #0d0d10;
  --bg-black:           #060608;

  --glass-bg:           rgba(255, 255, 255, 0.035);
  --glass-border:       rgba(255, 255, 255, 0.08);
  --glass-hover:        rgba(255, 255, 255, 0.06);

  --rule:               rgba(250, 250, 247, 0.10);
  --rule-soft:          rgba(250, 250, 247, 0.05);

  --font-title:         'Playfair Display', Georgia, serif;
  --font-body:          'Crimson Pro', Georgia, serif;

  --container-max:      1320px;
  --container-narrow:   880px;

  --ease:               cubic-bezier(0.4, 0, 0.2, 1);

  color: var(--velos-cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.velos-case-w2w {
  --client-accent:        #2d8a6e;
  --client-accent-light:  #3eb389;
  --client-accent-lighter: #6cd0a4;
  --client-accent-glow:   rgba(45, 138, 110, 0.32);
  --client-accent-glow-s: rgba(45, 138, 110, 0.14);

  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(237, 172, 98, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(45, 138, 110, 0.05), transparent 70%),
    var(--bg-dark);
}

.velos-case *,
.velos-case *::before,
.velos-case *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.velos-case a {
  color: inherit;
  text-decoration: none;
}

.velos-case ::selection {
  background: var(--velos-amber);
  color: var(--velos-black);
}

.velos-case img {
  max-width: 100%;
  display: block;
}

/* ===========================================
   2. FADE-IN ANIMATION (CSS-only, runs on load)
   Elements default to visible. JS optionally
   adds .fade-element + .visible for scroll-in.
   =========================================== */
.velos-case .fade-element {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.velos-case .fade-element.is-hidden {
  opacity: 0;
  transform: translateY(24px);
}
.velos-case .fade-element.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes w2wDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.45); }
}
@keyframes w2wArcSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes w2wArrowShoot {
  0%, 78%   { transform: translateX(0); opacity: 1; }
  86%       { transform: translateX(28px); opacity: 0; }
  86.01%    { transform: translateX(-28px); opacity: 0; }
  96%       { transform: translateX(-3px); opacity: 1; }
  100%      { transform: translateX(0); opacity: 1; }
}
@keyframes w2wPhotoCaptionPing {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* ===========================================
   3. SHARED PRIMITIVES
   =========================================== */
.velos-case .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--velos-amber);
  margin-bottom: 24px;
}

.velos-case .tag-dot {
  width: 18px;
  height: 12px;
  border: none;
  border-radius: 0;
  background: linear-gradient(currentColor, currentColor) no-repeat;
  background-size: 13px 2px;
  background-position: 0 center;
  color: var(--velos-amber);
  display: inline-block;
  position: relative;
  animation: w2wArrowShoot 5s cubic-bezier(0.6, 0, 0.3, 1) infinite;
}
.velos-case .tag-dot::before,
.velos-case .tag-dot::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background: currentColor;
  right: 1px;
  border-radius: 1px;
  transform-origin: right center;
}
.velos-case .tag-dot::before {
  top: 3px;
  transform: rotate(40deg);
}
.velos-case .tag-dot::after {
  bottom: 3px;
  transform: rotate(-40deg);
}

.velos-case .section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(42px, 4.4vw, 64px); /* §3a: +8 */
  letter-spacing: -0.5px;
  line-height: 1.12;
  color: var(--velos-cream);
  text-wrap: balance;
}

.velos-case .section-title em {
  font-style: italic;
  font-weight: 300;
  font-size: 1.04em;
  color: var(--velos-amber);
  line-height: 1;
}

.velos-case .section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 1.3vw, 22px); /* §3a: body +4 */
  line-height: 1.65;
  color: var(--velos-cream-muted);
  max-width: 60ch;
  margin-top: 28px;
}

.velos-case .section-header {
  margin-bottom: 64px;
}
.velos-case .section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.velos-case .content-section {
  position: relative;
}
.velos-case .content-section.bg-dark    { background: var(--bg-dark); }
.velos-case .content-section.bg-darker  { background: var(--bg-darker); }
.velos-case .content-section.bg-black   { background: var(--bg-black); }

.velos-case .section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 64px);
  padding-right: clamp(24px, 5vw, 64px);
}

/* ===========================================
   4. CTA BUTTON
   =========================================== */
.velos-case .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--velos-amber);
  color: var(--velos-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.velos-case .cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.velos-case .cta-button:hover::before {
  width: 400px;
  height: 400px;
}
.velos-case .cta-button:hover {
  
  box-shadow: 0 12px 40px var(--velos-amber-glow);
}
.velos-case .cta-button-text,
.velos-case .cta-button-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  transition: transform 0.4s var(--ease);
}
.velos-case .cta-button-icon {
  width: 18px;
  height: 18px;
  justify-content: center;
}
.velos-case .cta-button-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.velos-case .cta-button:hover .cta-button-icon {
  transform: rotate(-45deg);
}

/* ===========================================
   5. HERO
   =========================================== */
.velos-case .hero {
  position: relative;
  padding-top: clamp(140px, 16vh, 200px);
  padding-bottom: clamp(80px, 10vh, 140px);
  overflow: hidden;
  /* v15.1 — match .pain backdrop; consistent met ads/VM/SMM/team/cases-overview hero */
  background: rgba(17, 17, 17, 0.52);
}
.velos-case .hero::before {
  content: '';
  position: absolute;
  inset: -10% 30% 50% -10%;
  background: radial-gradient(ellipse at 30% 50%, rgba(237, 172, 98, 0.10), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.velos-case .hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.velos-case .hero-content {
  padding-left: clamp(24px, 5vw, 96px);
  padding-right: clamp(24px, 4vw, 64px);
  padding-top: 24px;
  padding-bottom: 24px;
  max-width: 760px;
}

.velos-case .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--velos-cream-muted);
  margin-bottom: 36px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass-bg);
}
.velos-case .hero-eyebrow-dot {
  width: 16px;
  height: 11px;
  border-radius: 0;
  background: linear-gradient(currentColor, currentColor) no-repeat;
  background-size: 11px 2px;
  background-position: 0 center;
  color: #edac62; /* R3 1.6: hero section-tag pijl groen -> Velos amber */
  position: relative;
  display: inline-block;
  animation: w2wArrowShoot 5s cubic-bezier(0.6, 0, 0.3, 1) infinite;
}
.velos-case .hero-eyebrow-dot::before,
.velos-case .hero-eyebrow-dot::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  background: currentColor;
  right: 1px;
  border-radius: 1px;
  transform-origin: right center;
}
.velos-case .hero-eyebrow-dot::before {
  top: 2px;
  transform: rotate(40deg);
}
.velos-case .hero-eyebrow-dot::after {
  bottom: 2px;
  transform: rotate(-40deg);
}

.velos-case .hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 0.98;
  color: var(--velos-cream);
  display: grid;
  gap: 4px;
  margin-bottom: 36px;
}
.velos-case .hero-title-line {
  display: block;
  font-size: clamp(36px, 3.2vw, 52px); /* §3a: +8 */
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--velos-cream-soft);
  font-family: var(--font-title);
}
.velos-case .hero-title-line-tail {
  margin-top: 0;
}

.velos-case .hero-mega-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 0.88;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  color: var(--velos-amber);
  margin: 4px 0 12px -6px;
  letter-spacing: -6px;
  height: clamp(140px, 16vw, 220px);
}
.velos-case .hero-mega-stat-num {
  font-size: clamp(140px, 16vw, 220px);
  font-weight: 400;
  text-shadow: 0 0 80px var(--velos-amber-glow-s);
  line-height: 1;
}
.velos-case .hero-mega-stat-x {
  font-size: clamp(80px, 8vw, 120px);
  font-style: italic;
  font-weight: 300;
  color: var(--velos-amber-light);
  letter-spacing: 0;
  margin-left: 2px;
  line-height: 1;
}
.velos-case .hero-title-line-tail {
  margin-top: 12px;
}

.velos-case .hero-lead {
  font-family: var(--font-body);
  font-size: clamp(21px, 1.3vw, 23px); /* §3a: body +4 */
  line-height: 1.65;
  color: var(--velos-cream-soft);
  max-width: 56ch;
  margin-bottom: 36px;
}

.velos-case .hero-trust-line {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 28px;
  padding: 22px 0;
  margin-bottom: 36px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--velos-cream-muted);
}
.velos-case .hero-trust-line li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.velos-case .hero-trust-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--velos-cream);
}
.velos-case .hero-trust-line li:nth-child(1) .hero-trust-num { color: var(--client-accent-light); }
.velos-case .hero-trust-line li:nth-child(2) .hero-trust-num { color: var(--velos-cream); }
.velos-case .hero-trust-line li:nth-child(3) .hero-trust-num { color: var(--velos-amber); }

/* hero photo, full-bleed right */
.velos-case .hero-photo {
  position: relative;
  height: 100%;
  min-height: 540px;
  align-self: stretch;
}
.velos-case .hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.velos-case .hero-photo-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-dark) 0%, rgba(17, 17, 20, 0.6) 12%, rgba(17, 17, 20, 0) 32%),
    linear-gradient(180deg, rgba(17, 17, 20, 0.6) 0%, rgba(17, 17, 20, 0) 18%, rgba(17, 17, 20, 0) 70%, rgba(17, 17, 20, 0.85) 100%);
  pointer-events: none;
}
.velos-case .hero-photo-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.velos-case .hero-photo-caption {
  position: absolute;
  bottom: 28px;
  left: 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--velos-cream-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.velos-case .hero-photo-caption-marker {
  width: 28px;
  height: 1px;
  background: var(--client-accent-light);
  animation: w2wPhotoCaptionPing 3s infinite var(--ease);
}

/* ===========================================
   6. OVERVIEW BAR
   =========================================== */
.velos-case .overview-bar {
  position: relative;
  background: var(--bg-darker);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.velos-case .overview-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
.velos-case .overview-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.velos-case .overview-item + .overview-item::before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: -16px;
  width: 1px;
  background: var(--rule);
}
.velos-case .overview-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--velos-cream-faint);
}
.velos-case .overview-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.25px;
  color: var(--velos-cream);
}
.velos-case .overview-cta {
  display: none;
}

/* ===========================================
   7. STORY SECTION
   =========================================== */
.velos-case .story-section {
  padding-top: clamp(120px, 14vh, 180px);
  padding-bottom: clamp(120px, 14vh, 180px);
}
.velos-case .story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
  margin-bottom: 64px;
}

.velos-case .story-body {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--font-body);
  font-size: clamp(21px, 1.2vw, 22px); /* §3a: body +4 */
  line-height: 1.7;
  color: var(--velos-cream-soft);
}
.velos-case .story-body strong {
  color: var(--velos-cream);
  font-weight: 700;
}
.velos-case .story-body p {
  text-wrap: pretty;
  max-width: 62ch;
}

.velos-case .story-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.velos-case .story-pull {
  position: relative;
  padding: 32px 28px 28px;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 1.5vw, 26px); /* §3a: body +4 (pull-quote) */
  line-height: 1.4;
  color: var(--velos-cream);
  background:
    radial-gradient(ellipse at top right, var(--velos-amber-glow-s), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--rule);
  border-top: 1px solid var(--velos-amber);
}
.velos-case .story-pull em {
  display: block;
  margin-top: 10px;
  color: var(--velos-amber);
  font-size: 0.95em;
}
.velos-case .story-pull-mark {
  position: absolute;
  top: -22px;
  left: 18px;
  font-family: var(--font-title);
  font-size: 100px;
  line-height: 1;
  font-style: italic;
  color: var(--velos-amber);
  opacity: 0.34;
  font-weight: 400;
}
.velos-case .story-pull-attr {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--velos-cream-muted);
}

.velos-case .story-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.velos-case .story-facts li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.velos-case .story-facts li:last-child {
  border-bottom: 1px solid var(--rule);
}
.velos-case .story-fact-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -1px;
  line-height: 0.95;
  color: var(--client-accent-light);
  text-align: right;
}
.velos-case .story-fact-label {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--velos-cream-soft);
}

/* story-bridge verwijderd (R3 1.1) */

/* ===========================================
   8. CHALLENGES EDITORIAL LIST
   (no card grid, numbered editorial list with rules)
   =========================================== */
.velos-case .challenges-editorial {
  margin-top: 32px;
}
.velos-case .challenges-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.4px;
  color: var(--velos-cream);
  margin-bottom: 48px;
  line-height: 1.15;
}
.velos-case .challenges-title-prefix {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--velos-cream-muted);
  font-size: 0.6em;
  letter-spacing: 0;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.velos-case .challenges-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}
.velos-case .challenge-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: baseline;
  column-gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.velos-case .challenge-row:hover {
  background: linear-gradient(90deg, var(--velos-amber-glow-s), transparent 70%);
  padding-left: 12px;
  padding-right: 12px;
}
.velos-case .challenge-row-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -1px;
  color: var(--velos-amber);
  line-height: 0.9;
}
.velos-case .challenge-row-body {
  max-width: 68ch;
}
.velos-case .challenge-row-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.25px;
  color: var(--velos-cream);
  margin-bottom: 8px;
}
.velos-case .challenge-row-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--velos-cream-soft);
  max-width: 60ch;
}
.velos-case .challenge-row-text strong {
  color: var(--velos-cream);
  font-weight: 700;
}
.velos-case .challenge-row-tag {
  align-self: center;
  justify-self: end;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--velos-cream-muted);
  padding: 4px 12px;
  border: 1px solid var(--rule);
  border-radius: 100px;
}

/* ===========================================
   9. IMAGE STRIP (between story and approach)
   =========================================== */
.velos-case .image-strip {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 0;
  background: var(--bg-black);
}
.velos-case .image-strip-fig {
  position: relative;
  height: clamp(400px, 42vw, 580px);
  overflow: hidden;
}
.velos-case .image-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center !important;
  transition: transform 0.8s var(--ease);
}
.velos-case .image-strip-fig:hover .image-strip-img {
  transform: scale(1.04);
}
.velos-case .image-strip-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--velos-cream);
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

/* ===========================================
   10. APPROACH SECTION
   =========================================== */
.velos-case .approach-section {
  padding-top: clamp(120px, 14vh, 180px);
  padding-bottom: clamp(120px, 14vh, 180px);
}
.velos-case .approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.velos-case .approach-narrative .section-header {
  margin-bottom: 36px;
}
.velos-case .approach-credo {
  margin-top: 32px;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--velos-cream);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  max-width: 60ch;
}
.velos-case .approach-credo em {
  font-style: italic;
  font-weight: 500;
  color: var(--velos-amber);
}

.velos-case .approach-list {
  list-style: none;
  display: grid;
  gap: 0;
  position: sticky;
  top: 80px;
  align-self: start;
}
.velos-case .approach-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 20px;
  padding: 22px 4px;
  border-top: 1px solid var(--rule);
  transition: background 0.3s var(--ease);
}
.velos-case .approach-item:last-child {
  border-bottom: 1px solid var(--rule);
}
.velos-case .approach-item:hover {
  background: linear-gradient(90deg, transparent, var(--velos-amber-glow-s), transparent);
}
.velos-case .approach-item-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--velos-amber);
  padding-top: 4px;
}
.velos-case .approach-item-body h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.25px;
  color: var(--velos-cream);
  margin-bottom: 6px;
}
.velos-case .approach-item-body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--velos-cream-soft);
}
.velos-case .approach-item-body p strong {
  color: var(--velos-cream);
  font-weight: 700;
}

/* ===========================================
   11. RESULTS SECTION + CHARTS
   =========================================== */
.velos-case .results-section {
  padding-top: clamp(140px, 16vh, 200px);
  padding-bottom: clamp(120px, 14vh, 180px);
  background:
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(45, 138, 110, 0.08), transparent 70%),
    var(--bg-black);
}

.velos-case .results-mega {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: 80px;
  padding: 56px clamp(28px, 4vw, 64px);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(45, 138, 110, 0.12), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.velos-case .results-mega::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--client-accent-light), var(--client-accent));
}
.velos-case .results-mega-eyebrow {
  grid-column: 1 / -1;
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--client-accent-lighter);
  margin-bottom: 8px;
}
.velos-case .results-mega-stat {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.velos-case .results-mega-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(120px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -6px;
  color: var(--velos-cream);
  display: inline-flex;
  align-items: baseline;
}
.velos-case .results-mega-pct {
  font-family: var(--font-title);
  font-weight: 300;
  font-style: italic;
  font-size: 0.55em;
  color: var(--client-accent-light);
  letter-spacing: -2px;
  margin-left: 4px;
}
.velos-case .results-mega-context {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--velos-cream-soft);
  max-width: 38ch;
}
.velos-case .results-mega-context em {
  font-style: italic;
  font-weight: 500;
  color: var(--client-accent-lighter);
}

.velos-case .charts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.velos-case .chart-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.velos-case .chart-card:hover {
  border-color: rgba(237, 172, 98, 0.25);
  background: var(--glass-hover);
}
.velos-case .chart-card-head {
  margin-bottom: 24px;
}
.velos-case .chart-card-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--velos-cream-muted);
  margin-bottom: 8px;
}
.velos-case .chart-card-head h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.25px;
  color: var(--velos-cream);
  margin-bottom: 6px;
}
.velos-case .chart-card-sub {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--velos-cream-muted);
}
.velos-case .chart-card-canvas {
  width: 100%;
  position: relative;
}
.velos-case .chart-card-canvas svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* SVG inner styling */
.velos-case .chart-axis line,
.velos-case .chart-axis-baseline {
  stroke: var(--rule);
  stroke-width: 1;
}
.velos-case .chart-grid-lines line {
  stroke: var(--rule-soft);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}
.velos-case .chart-axis-tick {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  fill: var(--velos-cream-faint);
}
.velos-case .chart-row-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--velos-cream-soft);
}
.velos-case .chart-row-label-right {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--velos-cream-soft);
}
.velos-case .chart-row-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  fill: var(--velos-cream);
}
.velos-case .chart-row-value-light {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  fill: var(--velos-cream-muted);
}
.velos-case .chart-row-value-faint {
  font-family: var(--font-title);
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  fill: var(--velos-cream-faint);
}
.velos-case .chart-bar-mid {
  fill: rgba(237, 172, 98, 0.32);
}
.velos-case .chart-bar-muted {
  fill: rgba(250, 250, 247, 0.10);
}
.velos-case .chart-bar-muted-light {
  fill: rgba(250, 250, 247, 0.05);
}
.velos-case .chart-line {
  fill: none;
  stroke: var(--client-accent-light);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.velos-case .chart-line-marker {
  fill: var(--bg-black);
  stroke: var(--velos-amber);
  stroke-width: 2;
}
.velos-case .chart-marker-line {
  stroke: var(--velos-amber);
  stroke-width: 1;
  stroke-dasharray: 3 3;
  opacity: 0.5;
}
.velos-case .chart-line-dot {
  fill: var(--client-accent-light);
  stroke: var(--bg-black);
  stroke-width: 2;
}
.velos-case .chart-annotation {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  fill: var(--velos-amber);
}
.velos-case .chart-annotation-strong {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  fill: var(--client-accent-lighter);
}
.velos-case .chart-bar-positive {
  fill: url(#chartGradPositive);
}
.velos-case .chart-card-content svg .chart-bar-positive,
.velos-case .chart-bar-positive {
  fill: rgba(62, 179, 137, 0.85);
}
.velos-case .chart-bar-negative {
  fill: rgba(207, 87, 87, 0.7);
}
.velos-case .chart-bar-zero {
  fill: var(--velos-cream-faint);
}

.velos-case .results-prose {
  max-width: 68ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--velos-cream-soft);
}
.velos-case .results-prose strong {
  color: var(--velos-cream);
  font-weight: 700;
}

.velos-case .mini-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 96px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.velos-case .mini-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 36px 28px;
  border-left: 1px solid var(--rule);
}
.velos-case .mini-stat:first-child {
  border-left: none;
}
.velos-case .mini-stat-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--velos-cream);
}
.velos-case .mini-stat:nth-child(1) .mini-stat-value { color: var(--client-accent-light); }
.velos-case .mini-stat:nth-child(2) .mini-stat-value { color: var(--velos-amber); }
.velos-case .mini-stat:nth-child(3) .mini-stat-value { color: var(--velos-cream); }
.velos-case .mini-stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--velos-cream);
  margin-top: 4px;
}
.velos-case .mini-stat-context {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--velos-cream-muted);
}

/* ===========================================
   12. QUOTE SECTION + 3D PHONE MOCKUP
   =========================================== */
.velos-case .quote-section {
  padding: clamp(120px, 14vh, 180px) clamp(24px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.velos-case .quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, var(--client-accent-glow-s), transparent 70%);
  pointer-events: none;
}
.velos-case .quote-card-with-video {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.velos-case .quote-video-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2400px;
  min-height: 640px;
}

.velos-case .phone-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.velos-case .phone-stage-glow {
  position: absolute;
  inset: 10% -10% 0 -10%;
  background:
    radial-gradient(ellipse at center, var(--velos-amber-glow), transparent 60%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.velos-case .phone-mockup-3d {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-12deg) rotateX(6deg) rotateZ(-1.5deg);
  transition: transform 0.6s var(--ease);
  z-index: 2;
}
.velos-case .phone-mockup-3d:hover {
  transform: rotateY(-8deg) rotateX(4deg) rotateZ(-1deg) translateY(-6px);
}
/* §3 — testimonial videospeler-telefoon staat recht (geen mouse-tilt, kijk hem head-on) */
.velos-case .phone-stage .phone-mockup-3d,
.velos-case .phone-stage .phone-mockup-3d:hover {
  transform: none;
}
.velos-case .phone-mockup-frame {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
  border-radius: 44px;
  padding: 10px;
  transform-style: preserve-3d;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1.5px rgba(255, 255, 255, 0.04) inset,
    -28px 32px 60px rgba(0, 0, 0, 0.55),
    -12px 16px 28px rgba(0, 0, 0, 0.45),
    0 60px 100px rgba(45, 138, 110, 0.28);
}
.velos-case .phone-mockup-side {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 4px;
  width: 6px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  border-radius: 2px;
  transform: translateZ(-6px);
  opacity: 0.6;
}
.velos-case .phone-mockup-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #000;
  border-radius: 100px;
  z-index: 6;
}
.velos-case .phone-mockup-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
}
.velos-case .phone-mockup-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.velos-case .phone-video-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.velos-case .phone-video-overlay-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.velos-case .phone-video-caption {
  position: absolute;
  bottom: 24px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  pointer-events: none;
}
.velos-case .phone-video-caption-handle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--velos-cream);
  letter-spacing: 0.02em;
}
.velos-case .phone-video-caption-meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--client-accent-lighter);
}
.velos-case .phone-mockup-reflection {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
  z-index: 8;
  mix-blend-mode: overlay;
}

.velos-case .video-testimonial {
  cursor: pointer;
}
.velos-case .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 5;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.5),
    0 0 0 8px rgba(255, 255, 255, 0.06);
}
.velos-case .video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}
.velos-case .video-play-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--velos-amber-deep);
  margin-left: 4px;
}

.velos-case .phone-stage-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--client-accent-lighter);
}
.velos-case .phone-stage-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--client-accent-light);
  box-shadow: 0 0 12px var(--client-accent-light);
}

.velos-case .quote-text-side {
  padding: clamp(32px, 4vw, 56px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.velos-case .quote-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.velos-case .quote-star {
  font-size: 20px;
  color: var(--velos-amber);
}
.velos-case .quote-text {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--velos-cream);
  margin-bottom: 32px;
  text-wrap: pretty;
}
.velos-case .quote-text .highlight {
  color: var(--velos-amber);
  font-weight: 500;
}
.velos-case .quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.velos-case .author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: none;
}
.velos-case .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.velos-case .author-info {
  display: flex;
  flex-direction: column;
}
.velos-case .author-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 17px;
  color: var(--velos-cream);
  letter-spacing: -0.25px;
}
.velos-case .author-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--velos-cream-muted);
}

/* ===========================================
   13. TAKEAWAYS MAGAZINE SPREADS
   =========================================== */
.velos-case .takeaways-section {
  padding-top: clamp(140px, 16vh, 200px);
  padding-bottom: clamp(140px, 16vh, 200px);
  background:
    radial-gradient(ellipse 40% 25% at 100% 50%, rgba(237, 172, 98, 0.05), transparent 70%),
    var(--bg-black);
}
.velos-case .takeaways-magazine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 32px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.velos-case .takeaway-spread {
  position: relative;
  padding: 56px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--rule);
}
.velos-case .takeaway-spread:last-child {
  border-bottom: 1px solid var(--rule);
}
.velos-case .takeaway-num {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--velos-amber);
  margin-bottom: 16px;
}
.velos-case .takeaway-h {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--velos-cream);
  margin-bottom: 20px;
  max-width: 18ch;
}
.velos-case .takeaway-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--velos-cream-soft);
  max-width: 60ch;
}
.velos-case .takeaway-body strong {
  color: var(--velos-cream);
  font-weight: 700;
}

/* spread A — drop figure, full width, padded right */
.velos-case .spread-a {
  padding-top: 80px;
  padding-bottom: 72px;
  padding-right: 28%;
  background:
    radial-gradient(circle at 92% 50%, rgba(207, 87, 87, 0.08), transparent 50%);
}
.velos-case .takeaway-figure-drop {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 24px 32px;
  border-left: 2px solid rgba(207, 87, 87, 0.55);
}
.velos-case .figure-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--velos-cream-muted);
}
.velos-case .figure-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -3px;
  color: #cf5757;
}
.velos-case .figure-context {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--velos-cream-muted);
}
.velos-case .takeaway-figure-positive .figure-value {
  color: var(--client-accent-light);
}
.velos-case .takeaway-figure-positive {
  border-left-color: var(--client-accent-light);
}
.velos-case .spread-d {
  padding-top: 80px;
  padding-bottom: 72px;
  padding-right: 28%;
  background:
    radial-gradient(circle at 92% 50%, rgba(45, 138, 110, 0.08), transparent 50%);
}

/* spread B — proportional strip showing static vs video */
.velos-case .spread-b {
  padding-top: 56px;
  padding-bottom: 80px;
}
.velos-case .takeaway-strip {
  display: flex;
  margin-top: 32px;
  height: 110px;
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
}
.velos-case .strip-segment {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 22px;
  color: var(--velos-cream);
}
.velos-case .strip-static {
  background: rgba(250, 250, 247, 0.08);
  border: 1px solid var(--rule);
}
.velos-case .strip-video {
  background: linear-gradient(135deg, var(--velos-amber-deep), var(--velos-amber));
  color: var(--velos-black);
}
.velos-case .strip-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.velos-case .strip-video .strip-label { opacity: 0.7; }
.velos-case .strip-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.5px;
  margin-top: 2px;
}

/* spread C — inline callout, two-col flow */
.velos-case .spread-c {
  padding-top: 80px;
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}
.velos-case .spread-c-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.velos-case .spread-c-callout {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  position: relative;
}
.velos-case .spread-c-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--velos-amber-glow-s), transparent 70%);
  pointer-events: none;
}
.velos-case .callout-val {
  font-family: var(--font-title);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(72px, 8vw, 110px);
  line-height: 1;
  letter-spacing: -3px;
  color: var(--velos-amber);
}
.velos-case .callout-cap {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--velos-cream-muted);
}

/* spread E — head-to-head ratio */
.velos-case .spread-e {
  padding-top: 64px;
  padding-bottom: 72px;
}
.velos-case .takeaway-ratio {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  max-width: 720px;
}
.velos-case .ratio-row {
  display: grid;
  grid-template-columns: minmax(80px, var(--w)) auto auto;
  align-items: center;
  gap: 16px;
  position: relative;
}
.velos-case .ratio-bar {
  height: 32px;
  border-radius: 2px;
  display: block;
  width: var(--w);
  min-width: 32px;
}
.velos-case .ratio-bar-themed {
  background: linear-gradient(90deg, rgba(207, 87, 87, 0.6), rgba(207, 87, 87, 0.2));
  width: var(--w);
}
.velos-case .ratio-bar-own {
  background: linear-gradient(90deg, var(--client-accent), var(--client-accent-light));
  width: var(--w);
  box-shadow: 0 0 24px var(--client-accent-glow);
}
.velos-case .ratio-row {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
}
.velos-case .ratio-row .ratio-bar {
  grid-column: 1 / -1;
  grid-row: 1;
}
.velos-case .ratio-row .ratio-label {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--velos-cream);
  padding-top: 6px;
}
.velos-case .ratio-row .ratio-value {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--velos-cream-soft);
  padding-top: 6px;
}

/* spread F — versus block */
.velos-case .spread-f {
  padding-top: 72px;
  padding-bottom: 96px;
}
.velos-case .spread-f-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.velos-case .spread-f-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--glass-bg);
}
.velos-case .versus-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.velos-case .versus-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--velos-cream-muted);
}
.velos-case .versus-val {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(34px, 3.5vw, 48px);
  letter-spacing: -1px;
  line-height: 1;
}
.velos-case .versus-loser .versus-val { color: #cf5757; }
.velos-case .versus-winner .versus-val { color: var(--client-accent-light); }
.velos-case .versus-divider {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--velos-cream-faint);
}

/* ===========================================
   14. FINAL CTA
   =========================================== */
.velos-case .final-cta {
  padding: clamp(140px, 16vh, 200px) clamp(24px, 5vw, 64px);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(237, 172, 98, 0.10), transparent 60%),
    var(--bg-dark);
}
.velos-case .cta-inner {
  max-width: 1000px; /* §2a: breder zodat de (grotere) CTA-titel max ~2 regels is i.p.v. 3 */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.velos-case .cta-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(44px, 4.4vw, 64px); /* §3a: +8 */
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--velos-cream);
  margin: 24px 0 20px;
  text-wrap: balance;
}
.velos-case .cta-title em {
  font-style: italic;
  font-weight: 300;
  font-size: 1.04em; /* §2b/§3b: highlight minstens even groot + optisch iets groter (was 0.92em, te klein) */
  color: var(--velos-amber);
}
.velos-case .cta-text {
  font-family: var(--font-body);
  font-size: 22px; /* §3a: body +4 */
  line-height: 1.65;
  color: var(--velos-cream-soft);
  max-width: 56ch;
  margin-bottom: 40px;
}
.velos-case .cta-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  width: 100%;
  max-width: 720px;
}
.velos-case .cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--velos-cream-soft);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.velos-case .cta-trust li:hover {
  border-color: rgba(237, 172, 98, 0.4);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--velos-amber-glow-s), rgba(255, 255, 255, 0.01));
}
.velos-case .cta-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--velos-amber), var(--velos-amber-deep));
  color: var(--velos-black);
  flex: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 4px 14px rgba(237, 172, 98, 0.32);
}
.velos-case .cta-trust-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.velos-case .cta-trust-text strong {
  color: var(--velos-cream);
  font-weight: 700;
  margin-right: 2px;
}

/* ===========================================
   15. CASE NAV
   =========================================== */
.velos-case .case-nav {
  background: var(--bg-black);
  border-top: 1px solid var(--rule);
}
/* R8-4: tech-button gecentreerd tussen de prev/next pijlen (3-koloms grid). */
.velos-case .case-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.velos-case .case-nav-item.prev { justify-self: start; }
.velos-case .case-nav-center { justify-self: center; }
.velos-case .case-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--velos-cream-muted);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.velos-case .case-nav-item:hover {
  color: var(--velos-cream);
  gap: 20px;
}
.velos-case .case-nav-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--velos-cream-faint);
  margin-bottom: 2px;
}
.velos-case .case-nav-title {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.25px;
  color: var(--velos-cream);
}
.velos-case .case-nav-item.next {
  text-align: right;
  justify-self: end;
}

/* ===========================================
   16. RESPONSIVE
   =========================================== */
@media (max-width: 1180px) {
  .velos-case .charts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .velos-case .chart-card-content {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .velos-case .story-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .velos-case .story-sidebar {
    position: static;
  }
  .velos-case .quote-card-with-video {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .velos-case .quote-video-side {
    min-height: 540px;
  }
  .velos-case .phone-mockup-3d {
    transform: rotateY(-6deg) rotateX(3deg) rotateZ(-1deg);
  }
  .velos-case .hero-grid {
    grid-template-columns: 1fr;
  }
  .velos-case .hero-photo {
    min-height: 420px;
    margin-top: 32px;
  }
  .velos-case .hero-photo-fade {
    background:
      linear-gradient(180deg, rgba(17, 17, 20, 0.5) 0%, rgba(17, 17, 20, 0) 30%, rgba(17, 17, 20, 0) 60%, rgba(17, 17, 20, 0.9) 100%);
  }
  .velos-case .hero-content {
    padding-right: clamp(24px, 5vw, 96px);
  }
  .velos-case .overview-inner {
    grid-template-columns: repeat(2, 1fr) auto;
    grid-template-rows: auto auto auto;
    row-gap: 20px;
  }
  .velos-case .overview-cta {
    display: block;
    grid-column: 1 / -1;
  }
  .velos-case .overview-cta .cta-button {
    width: 100%;
    justify-content: center;
  }
  .velos-case .overview-item + .overview-item::before {
    display: none;
  }
  .velos-case .approach-grid {
    grid-template-columns: 1fr;
  }
  .velos-case .approach-list {
    position: static;
  }
  .velos-case .image-strip {
    grid-template-columns: 1fr;
  }
  .velos-case .results-mega-stat {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .velos-case .mini-stats-row {
    grid-template-columns: 1fr;
  }
  .velos-case .mini-stat {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 28px;
  }
  .velos-case .mini-stat:first-child {
    border-top: none;
  }
  .velos-case .spread-a,
  .velos-case .spread-d {
    padding-right: clamp(24px, 5vw, 64px);
    padding-bottom: 120px;
  }
  .velos-case .takeaway-figure-drop {
    position: static;
    transform: none;
    margin-top: 28px;
    align-items: flex-start;
    text-align: left;
    border-left: 2px solid rgba(207, 87, 87, 0.55);
  }
  .velos-case .takeaway-figure-positive {
    border-left-color: var(--client-accent-light);
  }
  .velos-case .spread-c-inner,
  .velos-case .spread-f-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .velos-case .hero {
    padding-top: 100px;
  }
  /* §3c: op mobiel stond er een dubbele CTA (boven + onder de foto). De
     bovenste (in de hero) gaat weg; de onderste (overview-bar) blijft en
     spant netjes de volle breedte onder de foto. */
  .velos-case .hero-cta-button { display: none; }
  .velos-case .overview-cta { grid-column: 1 / -1; }
  .velos-case .hero-title-line {
    font-size: clamp(24px, 7vw, 32px);
  }
  .velos-case .hero-mega-stat-num {
    font-size: clamp(120px, 28vw, 180px);
  }
  .velos-case .hero-mega-stat-x {
    font-size: clamp(64px, 14vw, 96px);
  }
  .velos-case .hero-trust-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .velos-case .charts-grid {
    grid-template-columns: 1fr;
  }
  .velos-case .charts-grid .chart-card-content {
    grid-column: auto;
  }
  .velos-case .overview-inner {
    grid-template-columns: 1fr 1fr;
  }
  .velos-case .challenge-row {
    grid-template-columns: 60px 1fr;
    column-gap: 20px;
  }
  .velos-case .challenge-row-tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 12px;
  }
  .velos-case .section-title,
  .velos-case .cta-title {
    text-align: center;
  }
  .velos-case .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .velos-case .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .velos-case .spread-f-versus {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .velos-case .versus-divider {
    padding: 8px 0;
  }
  .velos-case .results-mega {
    padding: 36px 24px;
  }
  .velos-case .results-mega-value {
    font-size: clamp(90px, 26vw, 140px);
  }
  .velos-case .case-nav-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
  .velos-case .case-nav-item.next {
    flex-direction: row-reverse;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .velos-case .overview-inner {
    grid-template-columns: 1fr;
  }
  .velos-case .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/* ============================================================
   ELEMENTOR TYPOGRAPHY OVERRIDE — force Title Case
   ============================================================ */
.velos-case h1,
.velos-case h2,
.velos-case h3,
.velos-case h4,
.velos-case .hero-title,
.velos-case .hero-title-line,
.velos-case .section-title,
.velos-case .section-tag,
.velos-case .hero-eyebrow,
.velos-case .overview-label,
.velos-case .overview-value,
.velos-case .approach-title,
.velos-case .takeaway-title,
.velos-case .figure-label,
.velos-case .mini-stat-label,
.velos-case .quote-author,
.velos-case .results-prose h3,
.velos-case .chart-card-title,
.velos-case .cta-title,
.velos-case .case-nav-item .case-nav-name {
  text-transform: none !important;
}



/* ============================================================
   v13 ADDENDUM — Bg transparency + photo crop + bridge alignment
   ============================================================ */
.velos-case-w2w {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(237, 172, 98, 0.06), transparent 60%),
    rgba(20, 20, 23, 0.55) !important;
}
.elementor-element:has(> .velos-case-w2w),
.elementor-widget-html:has(.velos-case-w2w),
.elementor-widget-html:has(.velos-case-w2w) .elementor-widget-container,
.elementor-section:has(.velos-case-w2w),
.elementor-section:has(.velos-case-w2w) > .elementor-container,
.elementor-section:has(.velos-case-w2w) .elementor-column-wrap {
  background: transparent !important;
  background-color: transparent !important;
}
.velos-case-w2w { position: relative !important; z-index: 2 !important; }

/* Photo crop fix — keep heads visible */
.velos-case .image-strip-img {
  object-position: top center !important;
}

/* Story-bridge alignment — bridge moved inside story-body, pushed to bottom */
.velos-case .story-body {
  display: flex !important;
  flex-direction: column !important;
}
.velos-case .story-body > p:not(:last-child) {
  margin-bottom: 18px !important;
}
/* story-body .story-bridge verwijderd (R3 1.1) */


/* ============================================================
   SHOWCASE SECTION — Phone (IG post) + Tablet (placeholder)
   Waste2Wear only. Sits between results en quote section.
   ============================================================ */
.velos-case .showcase-section {
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 56px) !important;
}
.velos-case .showcase-section .section-header {
  text-align: center !important;
  max-width: 720px !important;
  margin: 0 auto 64px !important;
}
.velos-case .showcase-stage {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) !important;
  gap: clamp(40px, 5vw, 80px) !important;
  align-items: center !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  perspective: 2200px !important;
  position: relative !important;
}
.velos-case .showcase-tablet-wrap,
.velos-case .showcase-phone-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

/* TABLET — landscape rectangle, 2:1 ratio (2 squares wide × 1 square tall) */
.velos-case .showcase-tablet {
  position: relative !important;
  width: 100% !important;
  max-width: 580px !important;
  aspect-ratio: 2 / 1 !important;
  transform-style: preserve-3d !important;
  transform: rotateY(8deg) rotateX(3deg) rotateZ(-1deg) !important;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.velos-case .showcase-tablet:hover {
  transform: rotateY(4deg) rotateX(2deg) rotateZ(-0.5deg) translateY(-6px) !important;
}
.velos-case .showcase-tablet-side {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  border-radius: 28px !important;
  transform: translateZ(-8px) !important;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.55),
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}
.velos-case .showcase-tablet-frame {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  padding: 14px !important;
  background: linear-gradient(145deg, #2a2a2a 0%, #0a0a0a 100%) !important;
  border-radius: 26px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}
.velos-case .showcase-tablet-cam {
  position: absolute !important;
  top: 50% !important;
  left: 8px !important;
  transform: translateY(-50%) !important;
  width: 6px !important;
  height: 6px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border-radius: 50% !important;
  z-index: 3 !important;
}
.velos-case .showcase-tablet-screen {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(237, 172, 98, 0.06) 0%, rgba(45, 138, 110, 0.04) 100%), var(--bg-dark) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.velos-case .showcase-tablet-placeholder {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: center !important;
  padding: 24px !important;
}
.velos-case .showcase-tablet-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
  border-radius: 18px !important;
}
.velos-case .showcase-placeholder-label {
  font-family: var(--font-title) !important;
  font-size: clamp(20px, 1.8vw, 28px) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: rgba(250, 250, 247, 0.45) !important;
}
.velos-case .showcase-placeholder-hint {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  letter-spacing: 0.4px !important;
  color: rgba(250, 250, 247, 0.30) !important;
  text-transform: uppercase !important;
}
.velos-case .showcase-tablet-reflection {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.04) 0%, transparent 35%) !important;
  border-radius: 26px !important;
  pointer-events: none !important;
  mix-blend-mode: screen !important;
}

/* PHONE — reuse phone-mockup-3d styling, override scale + tilt */
.velos-case .showcase-phone-wrap .phone-mockup-3d {
  width: 100% !important;
  max-width: 280px !important;
  transform: rotateY(-12deg) rotateX(3deg) rotateZ(1.5deg) !important;
}
.velos-case .showcase-phone-wrap .phone-mockup-3d:hover {
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(1deg) translateY(-6px) !important;
}
.velos-case .showcase-phone-screen {
  background: #000 !important;
  position: relative !important;
}
.velos-case .showcase-phone-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 900px) {
  .velos-case .showcase-stage {
    grid-template-columns: 1fr !important;
    gap: 56px !important;
  }
  .velos-case .showcase-tablet {
    max-width: 480px !important;
    transform: rotateY(0) rotateX(0) rotateZ(0) !important;
  }
  .velos-case .showcase-phone-wrap .phone-mockup-3d {
    transform: rotateY(0) rotateX(0) rotateZ(0) !important;
  }
  .velos-case .showcase-phone-wrap {
    order: -1 !important;
  }
}


/* ============================================================
   v15 ADDENDUM: Verhaal-pivot + Wat-We-Leerden editorial grid
   Audit: impeccable / ui-ux-pro-max / emil-design-eng
   ============================================================ */

/* story-bridge verwijderd (R3 1.1); spacing verhaal -> knelpunten behouden */
.velos-case .story-layout {
  margin-bottom: 0 !important;
}
.velos-case .challenges-editorial {
  margin-top: clamp(72px, 9vh, 110px) !important;
}

/* Wat We Leerden: magazine wordt editorial grid van twee kolommen.
   Les 01|02 naast elkaar, 03 breed, 04|05 naast elkaar, 06 breed. */
.velos-case .takeaways-magazine {
  grid-template-columns: 1fr 1fr !important;
  column-gap: 0 !important;
}
.velos-case .spread-c,
.velos-case .spread-f {
  grid-column: 1 / -1 !important;
}
.velos-case .spread-a,
.velos-case .spread-d {
  border-right: 1px solid var(--rule) !important;
  padding-right: clamp(24px, 4vw, 56px) !important;
  background: none !important;
}
.velos-case .spread-b,
.velos-case .spread-e {
  padding-left: clamp(24px, 4vw, 56px) !important;
}
.velos-case .spread-a,
.velos-case .spread-b,
.velos-case .spread-d,
.velos-case .spread-e {
  padding-top: 72px !important;
  padding-bottom: 64px !important;
}

/* Groot cijfer: in flow met top-rule, niet meer absoluut met side-stripe. */
.velos-case .takeaway-figure-drop,
.velos-case .takeaway-figure-positive {
  position: static !important;
  transform: none !important;
  margin-top: 32px !important;
  padding: 20px 0 0 !important;
  align-items: flex-start !important;
  text-align: left !important;
  border-left: none !important;
  border-top: 2px solid rgba(207, 87, 87, 0.55) !important;
  max-width: 360px !important;
}
.velos-case .takeaway-figure-positive {
  border-top-color: var(--client-accent-light) !important;
}
.velos-case .figure-value {
  font-size: clamp(56px, 5.5vw, 92px) !important;
}

@media (max-width: 1024px) {
  .velos-case .takeaways-magazine {
    grid-template-columns: 1fr !important;
  }
  .velos-case .spread-a,
  .velos-case .spread-d {
    border-right: none !important;
  }
  .velos-case .spread-b,
  .velos-case .spread-e {
    padding-left: clamp(24px, 5vw, 64px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .velos-case .takeaway-spread {
    transition: none !important;
  }
}
/* ============================================================
   R3 1.5 — "Terug naar alle case studies" tech-button (Velos tech-btn stijl)
   ============================================================ */
.velos-case .case-back-wrap { text-align: center !important; padding: clamp(40px,6vh,72px) clamp(24px,5vw,48px) 0 !important; }
.velos-case .velos-tech-btn {
  position: relative !important; display: inline-flex !important; align-items: center !important; justify-content: center !important;
  padding: 14px 24px !important; font-family: var(--font-body) !important; font-size: 18px !important; font-weight: 500 !important;
  color: #fafaf7 !important; text-decoration: none !important; background: transparent !important;
  border: 1px solid rgba(255,255,255,0.5) !important; cursor: pointer !important; overflow: visible !important; z-index: 1 !important;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, color .35s ease !important;
}
.velos-case .velos-tech-btn:hover { background: rgba(255,255,255,0.08) !important; border-color: #edac62 !important; box-shadow: 0 8px 30px rgba(237,172,98,0.28) !important; }
.velos-case .velos-tech-btn .line { position:absolute !important; opacity:0 !important; z-index:10 !important; pointer-events:none !important; }
.velos-case .velos-tech-btn .line-top, .velos-case .velos-tech-btn .line-bottom { height:1px !important; background-image: linear-gradient(90deg, rgba(255,255,255,0.4) 50%, transparent 50%) !important; background-size:6px 1px !important; }
.velos-case .velos-tech-btn:hover .line-top, .velos-case .velos-tech-btn:hover .line-bottom { background-image: linear-gradient(90deg, #edac62 50%, transparent 50%) !important; }
.velos-case .velos-tech-btn .line-left, .velos-case .velos-tech-btn .line-right { width:1px !important; background-image: linear-gradient(180deg, rgba(255,255,255,0.4) 50%, transparent 50%) !important; background-size:1px 6px !important; }
.velos-case .velos-tech-btn:hover .line-left, .velos-case .velos-tech-btn:hover .line-right { background-image: linear-gradient(180deg, #edac62 50%, transparent 50%) !important; }
.velos-case .velos-tech-btn .line-top { top:-6px !important; left:-6px !important; width:0 !important; transition: width .2s linear .6s, opacity 0s .8s !important; }
.velos-case .velos-tech-btn:hover .line-top { width: calc(100% + 12px) !important; opacity:1 !important; transition: opacity 0s 0s, width .2s linear 0s !important; }
.velos-case .velos-tech-btn .line-right { top:-6px !important; right:-6px !important; height:0 !important; transition: height .2s linear .4s, opacity 0s .6s !important; }
.velos-case .velos-tech-btn:hover .line-right { height: calc(100% + 12px) !important; opacity:1 !important; transition: opacity 0s .2s, height .2s linear .2s !important; }
.velos-case .velos-tech-btn .line-bottom { bottom:-6px !important; right:-6px !important; width:0 !important; transition: width .2s linear .2s, opacity 0s .4s !important; }
.velos-case .velos-tech-btn:hover .line-bottom { width: calc(100% + 12px) !important; opacity:1 !important; transition: opacity 0s .4s, width .2s linear .4s !important; }
.velos-case .velos-tech-btn .line-left { bottom:-6px !important; left:-6px !important; height:0 !important; transition: height .2s linear 0s, opacity 0s .2s !important; }
.velos-case .velos-tech-btn:hover .line-left { height: calc(100% + 12px) !important; opacity:1 !important; transition: opacity 0s .6s, height .2s linear .6s !important; }
.velos-case .velos-tech-btn .corner { position:absolute !important; width:5px !important; height:5px !important; background-color: rgba(255,255,255,0.4) !important; opacity:0 !important; z-index:11 !important; transition: opacity 0s !important; }
.velos-case .velos-tech-btn:hover .corner { background-color: #edac62 !important; }
.velos-case .corner-tl { top:-8px !important; left:-8px !important; }
.velos-case .corner-tr { top:-8px !important; right:-8px !important; }
.velos-case .corner-br { bottom:-8px !important; right:-8px !important; }
.velos-case .corner-bl { bottom:-8px !important; left:-8px !important; }
.velos-case .velos-tech-btn:hover .corner-tr { opacity:1 !important; transition-delay:.2s !important; }
.velos-case .velos-tech-btn:hover .corner-br { opacity:1 !important; transition-delay:.4s !important; }
.velos-case .velos-tech-btn:hover .corner-bl { opacity:1 !important; transition-delay:.6s !important; }
.velos-case .velos-tech-btn:hover .corner-tl { opacity:1 !important; transition-delay:.8s !important; }
@media (prefers-reduced-motion: reduce) { .velos-case .velos-tech-btn .line, .velos-case .velos-tech-btn .corner { transition: none !important; } }
/* ============================================================
   FASE B: mobiel (<=767px) koppen + korte tekst gecentreerd; lange
   paragrafen/lijsten/formulier blijven links (leesbaarheid).
   Tablet/desktop ongemoeid.
   ============================================================ */
@media (max-width: 767px) {
  .velos-case .section-header { text-align: center !important; align-items: center !important; }
  .velos-case .section-title,
  .velos-case .section-subtitle,
  .velos-case .section-tag,
  .velos-case .section-eyebrow { text-align: center !important; }
  .velos-case .section-tag { margin-left: auto !important; margin-right: auto !important; }
  .velos-case .hero-title,
  .velos-case .hero-subtitle,
  .velos-case .hero-sub,
  .velos-case .hero-lead { text-align: center !important; }
  .velos-case .final-cta,
  .velos-case .cta-title { text-align: center !important; }
}/* End custom CSS */