.elementor-2843 .elementor-element.elementor-element-01a247c{--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-2843 .elementor-element.elementor-element-43485c9{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -10px) 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-43485c9 *//* ===========================================
   VELOS CASE STUDY — LA CASA FLOORING (V3)
   Standalone CSS — matches Waste2Wear design system
   
   CHANGES FROM V2:
   - Removed client-badge from hero (cleaner cinematic feel)
   - Removed orange underline (.highlight::after)
   - Cinematic tablet refinements (W2W pattern)
   - Hero gecentreerd op tablet (iPad Air, Pro 11", Pro 12.9")
   - Hero-stats visible on tablet/mobile (was display: none)
   - Results-grid 3-col on tablet (no orphan cards)
   - Section padding compacter op tablet
   - All titles centered on mobile (advertentiebeheer pattern)
   - overview-cta added for tablet/mobile CTA pattern
   - Featured image bigger op tablet (520px)
   =========================================== */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
.velos-case {
  /* Brand colors */
  --velos-orange: #e47f0a;
  --velos-orange-light: #f5a623;
  --velos-orange-glow: rgba(228, 127, 10, 0.4);
  --velos-maroon: #801414;
  --velos-maroon-light: #a41917;
  --velos-maroon-glow: rgba(128, 20, 20, 0.4);
  --velos-slate: #5f6275;
  --velos-cream: #ede0d4;
  --velos-black: #0a0a0a;
  --velos-cyan: #00bfb3;
  
  /* Readable text */
  --text-readable: rgba(237, 224, 212, 0.88);
  --text-readable-light: rgba(237, 224, 212, 0.78);
  --text-readable-muted: rgba(237, 224, 212, 0.65);
  
  /* Default client accent */
  --client-accent: #2d8a6e;
  --client-accent-glow: rgba(45, 138, 110, 0.3);
  
  /* Backgrounds */
  --bg-primary: #0d0d0d;
  --section-bg-dark: rgba(17, 17, 17, 0.76);
  --section-bg-darker: rgba(13, 13, 13, 0.76);
  --section-bg-black: rgba(10, 10, 10, 0.76);
  
  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.06);
  
  /* Typography */
  --font-titles: 'Anton', sans-serif;
  --font-creative: 'Great Vibes', cursive;
  --font-supporting: 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Pro', Georgia, serif;
  
  /* Spacing */
  --section-padding: clamp(80px, 12vh, 140px);
  --container-max: 1600px;
  --container-narrow: 1066px;
  
  /* Effects */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  
  font-family: var(--font-body);
  color: var(--velos-cream);
  line-height: 1.6;
  overflow-x: clip !important;
  -webkit-font-smoothing: antialiased;
}

/* LC client accent — warm wood/terracotta */
.velos-case-lc {
  --client-accent: #8B6F47;
  --client-accent-glow: rgba(139, 111, 71, 0.3);
}

.velos-case * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.velos-case ::selection {
  background: var(--velos-orange);
  color: var(--velos-black);
}

.velos-case a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   2. KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -15px) scale(1.02); }
  50% { transform: translate(-5px, 10px) scale(0.98); }
  75% { transform: translate(-10px, -5px) scale(1.01); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* ============================================
   3. COMMON ELEMENTS
   ============================================ */
.velos-case .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--velos-orange);
  margin-bottom: 20px;
}

.velos-case .tag-dot {
  width: 8px;
  height: 8px;
  background: var(--velos-orange);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

.velos-case .section-title {
  font-family: var(--font-titles);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.25px;
  color: var(--velos-cream);
  margin-bottom: 20px;
  text-transform: none;
}

.velos-case .section-title .accent {
  color: var(--velos-orange);
}

.velos-case .section-title .accent-red {
  color: var(--velos-maroon-light);
  text-shadow: 0 0 30px var(--velos-maroon-glow), 0 0 60px rgba(128, 20, 20, 0.25);
}

.velos-case .section-subtitle {
  font-family: var(--font-supporting);
  font-size: 18px;
  font-style: italic;
  color: rgba(237, 224, 212, 0.7);
  max-width: 700px;
  line-height: 1.7;
}

/* ============================================
   4. CTA BUTTON
   ============================================ */
.velos-case .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--velos-orange);
  color: #0d0d0d;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
  z-index: 2;
}

.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 {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--velos-orange-glow);
}

.velos-case .cta-button-text { position: relative; z-index: 2; }

.velos-case .cta-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--transition-smooth);
}

.velos-case .cta-button:hover .cta-button-icon { transform: rotate(-45deg); }

.velos-case .cta-button-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #000000;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.velos-case .hero {
  min-height: 90vh;
  padding: 160px 64px 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.velos-case .hero::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, 
    rgba(228, 127, 10, 0.08) 0%, 
    rgba(228, 127, 10, 0.02) 40%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite, orbPulse 10s ease-in-out infinite;
  filter: blur(60px);
  z-index: 0;
}

.velos-case .hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, 
    var(--client-accent-glow) 0%, 
    rgba(45, 138, 110, 0.05) 40%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 25s ease-in-out infinite reverse, orbPulse 12s ease-in-out infinite 3s;
  filter: blur(80px);
  z-index: 0;
}

.velos-case .hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.velos-case .hero-content { max-width: 760px; }

.velos-case .hero-title {
  font-family: var(--font-titles);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.25px;
  color: var(--velos-cream);
  margin-bottom: 28px;
  text-transform: none;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.velos-case .hero-title .highlight {
  color: var(--velos-orange);
}

.velos-case .hero-lead {
  font-family: var(--font-supporting);
  font-size: 20px;
  font-style: italic;
  color: rgba(237, 224, 212, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 640px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

/* Hero Stats */
.velos-case .hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.velos-case .hero-stat { display: flex; flex-direction: column; }

.velos-case .stat-value {
  font-family: var(--font-titles);
  font-size: 48px;
  font-weight: 700;
  color: var(--velos-orange);
  line-height: 1;
  margin-bottom: 6px;
}

.velos-case .stat-label { font-size: 14px; color: rgba(237, 224, 212, 0.6); }

.velos-case .hero-services {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.35s forwards;
  opacity: 0;
}

.velos-case .service-pill {
  padding: 10px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 14px;
  color: rgba(237, 224, 212, 0.8);
  transition: all 0.3s ease;
}

.velos-case .service-pill:hover {
  border-color: var(--velos-orange);
  color: var(--velos-orange);
}

.velos-case .hero-cta {
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

/* ============================================
   6. HERO VISUAL — FEATURED IMAGE
   ============================================ */
.velos-case .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.velos-case .hero-featured-image {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: scaleIn 0.8s ease 0.3s forwards;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.velos-case .hero-featured-image:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 127, 10, 0.4);
  box-shadow: 0 30px 80px rgba(228, 127, 10, 0.15);
}

.velos-case .hero-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.velos-case .hero-featured-image:hover .hero-featured-img {
  transform: scale(1.06);
}

.velos-case .hero-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.velos-case .hero-featured-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(237, 224, 212, 0.8);
  letter-spacing: 0.3px;
  z-index: 2;
}

.velos-case .featured-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--velos-orange);
}

/* Hero featured image fade animation */
.velos-case .hero-featured-image.fade-element {
  opacity: 0 !important;
  transform: scale(0.95) translateY(20px) !important;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.velos-case .hero-featured-image.fade-element.visible {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}

/* ============================================
   7. OVERVIEW BAR (with tablet/mobile CTA)
   ============================================ */
.velos-case .overview-bar {
  padding: 0 64px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.velos-case .overview-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px 48px;
  background: linear-gradient(
    145deg,
    rgba(228, 127, 10, 0.06) 0%,
    rgba(22, 22, 22, 0.95) 15%,
    rgba(22, 22, 22, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.velos-case .overview-item { display: flex; flex-direction: column; gap: 6px; }

.velos-case .overview-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(237, 224, 212, 0.4);
}

.velos-case .overview-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--velos-cream);
}

/* OVERVIEW CTA — only visible on tablet/mobile */
.velos-case .overview-cta {
  display: none;
  width: 100%;
}

/* ============================================
   8. CONTENT SECTIONS
   ============================================ */
.velos-case .content-section {
  padding: var(--section-padding) 64px;
  position: relative;
}

.velos-case .content-section.bg-dark { background: var(--section-bg-dark); }
.velos-case .content-section.bg-darker { background: var(--section-bg-darker); }
.velos-case .content-section.bg-black { background: var(--section-bg-black); }

.velos-case .section-inner { max-width: var(--container-max); margin: 0 auto; }
.velos-case .section-narrow { max-width: var(--container-narrow); margin: 0 auto; }

.velos-case .section-header { margin-bottom: 56px; }
.velos-case .section-header.center { text-align: center; }
.velos-case .section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   9. TWO COLUMN LAYOUTS
   ============================================ */
.velos-case .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.velos-case .two-col.gap-lg { gap: 100px; }

.velos-case .approach-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.velos-case .approach-right-col { padding-top: 52px; }

/* ============================================
   10. STORY TEXT
   ============================================ */
.velos-case .story-block { margin-bottom: 36px; }

.velos-case .story-text {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(237, 224, 212, 0.85);
}

.velos-case .story-text p { margin-bottom: 24px; }
.velos-case .story-text p:last-child { margin-bottom: 0; }

.velos-case .story-text strong {
  color: var(--velos-cream);
  font-weight: 600;
}

.velos-case .story-text em {
  font-family: var(--font-supporting);
  font-style: italic;
  color: var(--velos-orange);
}

.velos-case .story-lead {
  font-family: var(--font-supporting);
  font-size: 24px;
  font-style: italic;
  color: rgba(237, 224, 212, 0.9);
  line-height: 1.6;
  padding: 32px 40px;
  border-left: 4px solid var(--velos-orange);
  background: linear-gradient(90deg, rgba(228, 127, 10, 0.06), transparent);
  border-radius: 0 14px 14px 0;
  margin: 40px 0;
}

/* ============================================
   11. IMAGES
   ============================================ */
.velos-case .image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.velos-case .case-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.velos-case .case-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   12. CHALLENGES — LC uses AMBER (not maroon)
   ============================================ */
.velos-case .challenges-wrapper { display: flex; flex-direction: column; }

.velos-case .challenges-title {
  font-family: var(--font-titles);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.25px;
  color: var(--velos-orange);
  margin-bottom: 28px;
  text-transform: none;
  text-shadow: 0 0 30px var(--velos-orange-glow), 0 0 60px rgba(228, 127, 10, 0.2);
}

.velos-case .challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.velos-case .challenge-card {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.velos-case .challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--velos-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.velos-case .challenge-card:hover {
  border-color: rgba(228, 127, 10, 0.4);
  transform: translateY(-4px);
  background: rgba(228, 127, 10, 0.03);
}

.velos-case .challenge-card:hover::before { opacity: 1; }

.velos-case .challenge-icon {
  width: 50px;
  height: 50px;
  background: rgba(228, 127, 10, 0.1);
  border: 1px solid rgba(228, 127, 10, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--velos-orange);
}

.velos-case .challenge-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.velos-case .challenge-card h4 {
  font-family: var(--font-titles);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.25px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: none;
}

.velos-case .challenge-card p {
  font-size: 15px;
  color: rgba(237, 224, 212, 0.6);
  line-height: 1.55;
}

/* ============================================
   13. APPROACH (de aanpak)
   ============================================ */
.velos-case .approach-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.velos-case .approach-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  position: relative;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.4s ease,
              background 0.4s ease;
}

.velos-case .approach-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.velos-case .approach-item:nth-child(1) { transition-delay: 0s; }
.velos-case .approach-item:nth-child(2) { transition-delay: 0.1s; }
.velos-case .approach-item:nth-child(3) { transition-delay: 0.2s; }
.velos-case .approach-item:nth-child(4) { transition-delay: 0.3s; }
.velos-case .approach-item:nth-child(5) { transition-delay: 0.4s; }
.velos-case .approach-item:nth-child(6) { transition-delay: 0.5s; }

.velos-case .approach-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--velos-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.velos-case .approach-item:hover {
  border-color: var(--velos-orange);
  transform: translateX(8px);
  background: var(--glass-hover);
}

.velos-case .approach-item.revealed:hover { transform: translateX(8px); }
.velos-case .approach-item:hover::before { opacity: 1; }

.velos-case .approach-number {
  font-family: var(--font-titles);
  font-size: 28px;
  font-weight: 700;
  color: var(--velos-orange);
  min-width: 40px;
  line-height: 1;
}

.velos-case .approach-content { flex: 1; }

.velos-case .approach-content h4 {
  font-family: var(--font-titles);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.25px;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: none;
}

.velos-case .approach-content p {
  font-size: 14px;
  color: var(--text-readable);
  line-height: 1.55;
}

/* ============================================
   14. EXECUTION GRID — LC SPECIFIC
   ============================================ */
.velos-case .execution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.velos-case .execution-card {
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.velos-case .execution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--velos-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.velos-case .execution-card:hover {
  border-color: rgba(228, 127, 10, 0.3);
  transform: translateY(-4px);
}

.velos-case .execution-card:hover::before { opacity: 1; }

.velos-case .execution-icon {
  width: 50px;
  height: 50px;
  background: rgba(228, 127, 10, 0.1);
  border: 1px solid rgba(228, 127, 10, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--velos-orange);
}

.velos-case .execution-icon svg { width: 24px; height: 24px; }

.velos-case .execution-card h4 {
  font-family: var(--font-titles);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.25px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: none;
}

.velos-case .execution-card p {
  font-size: 14px;
  color: rgba(237, 224, 212, 0.6);
  line-height: 1.55;
}

/* ============================================
   15. RESULTS (cijfers die spreken) — 3 COL
   ============================================ */
.velos-case .results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.velos-case .result-card {
  padding: 44px 36px;
  background: linear-gradient(
    145deg,
    rgba(228, 127, 10, 0.08) 0%,
    rgba(22, 22, 22, 0.95) 25%,
    rgba(22, 22, 22, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.velos-case .result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--velos-orange), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.velos-case .result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 127, 10, 0.3);
  box-shadow: 0 30px 70px rgba(228, 127, 10, 0.1);
}

.velos-case .result-card:hover::before { opacity: 1; }

.velos-case .result-value {
  font-family: var(--font-titles);
  font-size: 60px;
  font-weight: 700;
  color: var(--velos-orange);
  line-height: 1;
  margin-bottom: 10px;
}

.velos-case .result-label {
  font-size: 17px;
  color: var(--velos-cream);
  margin-bottom: 8px;
}

.velos-case .result-context {
  font-size: 13px;
  color: rgba(237, 224, 212, 0.45);
  font-style: italic;
}

/* ============================================
   16. TAKEAWAYS — 3 COL
   ============================================ */
.velos-case .takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.velos-case .takeaway-card {
  padding: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s var(--transition-smooth);
}

.velos-case .takeaway-card:hover {
  border-color: rgba(228, 127, 10, 0.3);
  transform: translateY(-4px);
}

.velos-case .takeaway-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(228, 127, 10, 0.2), rgba(228, 127, 10, 0.1));
  border: 1px solid rgba(228, 127, 10, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--velos-orange);
}

.velos-case .takeaway-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.velos-case .takeaway-card h4 {
  font-family: var(--font-titles);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.25px;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
}

.velos-case .takeaway-card p {
  font-size: 15px;
  color: rgba(237, 224, 212, 0.6);
  line-height: 1.6;
}

/* ============================================
   17. FINAL CTA
   ============================================ */
.velos-case .final-cta {
  padding: var(--section-padding) 64px;
  text-align: center;
  position: relative;
}

.velos-case .final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(228, 127, 10, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.velos-case .cta-inner {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.velos-case .cta-title {
  font-family: var(--font-titles);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.25px;
  color: var(--velos-cream);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: none;
}

.velos-case .cta-title .highlight { color: var(--velos-orange); }

.velos-case .cta-text {
  font-family: var(--font-supporting);
  font-size: 20px;
  font-style: italic;
  color: rgba(237, 224, 212, 0.7);
  margin-bottom: 44px;
}

.velos-case .cta-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.velos-case .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(237, 224, 212, 0.6);
}

.velos-case .trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--velos-orange);
  stroke-width: 3;
  fill: none;
}

/* ============================================
   18. CASE NAVIGATION
   ============================================ */
.velos-case .case-nav {
  padding: 72px 64px;
  background: var(--section-bg-black);
  border-top: 1px solid var(--glass-border);
}

.velos-case .case-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.velos-case .case-nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  max-width: 360px;
}

.velos-case .case-nav-item:hover {
  border-color: var(--velos-orange);
  transform: translateX(4px);
}

.velos-case .case-nav-item.prev:hover { transform: translateX(-4px); }

.velos-case .case-nav-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(237, 224, 212, 0.4);
  margin-bottom: 6px;
}

.velos-case .case-nav-title {
  font-family: var(--font-titles);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.25px;
  color: #ffffff;
  text-transform: none;
}

/* ============================================
   19. SCROLL ANIMATIONS
   ============================================ */
.velos-case .fade-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.velos-case .fade-element.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

/* Hero stats — morph counter reveal */
.velos-case .hero-stat {
  opacity: 0 !important;
  transform: translateY(20px) scale(0.7) !important;
  filter: blur(8px) !important;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.velos-case .hero-stat:nth-child(1) { transition-delay: 0s !important; }
.velos-case .hero-stat:nth-child(2) { transition-delay: 0.18s !important; }
.velos-case .hero-stat:nth-child(3) { transition-delay: 0.36s !important; }

.velos-case .hero-stat.stat-revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

.velos-case .stat-value {
  display: inline-block !important;
  transition: transform 0.1s ease !important;
}

.velos-case .hero-stats {
  animation: none !important;
  opacity: 1 !important;
}

/* Result/Takeaway cards — morph */
.velos-case .result-card.fade-element,
.velos-case .takeaway-card.fade-element {
  opacity: 0;
  transform: scale(0.88) translateY(30px);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.velos-case .result-card.fade-element.visible,
.velos-case .takeaway-card.fade-element.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

/* Execution cards animation */
.velos-case .execution-card.fade-element {
  opacity: 0;
  transform: scale(0.88) translateY(30px);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.velos-case .execution-card.fade-element.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

/* Challenge cards */
.velos-case .challenge-card.fade-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.4s ease,
              background 0.4s ease;
}

.velos-case .challenge-card.fade-element.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

/* Image row animation */
.velos-case .image-row.fade-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.velos-case .image-row.fade-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Overview bar */
.velos-case .overview-bar.fade-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.velos-case .overview-bar.fade-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service pills */
.velos-case .service-pill.fade-element {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.velos-case .service-pill.fade-element.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.3s ease;
  transition-delay: 0s;
}

/* ============================================
   ============================================
   20. RESPONSIVE
   
   Strategy:
   1400px: padding adjustments
   1200px: tablet landscape — hero compact 2-col, cards smaller
   1100px: TABLET — hero stacks (LC pattern), CTA moves to overview-bar
   900px:  small tablet — page padding compacter
   768px:  MOBILE — alles centered, all titles centered, grids 1-col
   600px:  small mobile — extra adjustments
   ============================================
   ============================================ */

/* --- 1400px: padding adjustments --- */
@media (max-width: 1400px) {
  .velos-case .hero,
  .velos-case .content-section,
  .velos-case .final-cta,
  .velos-case .case-nav { padding-left: 48px; padding-right: 48px; }
  .velos-case .overview-bar { padding: 0 48px; }
}

/* --- 1200px: TABLET LANDSCAPE — hero compacter, still 2-col --- */
@media (max-width: 1200px) {
  .velos-case .hero { padding: 140px 48px 80px; }
  .velos-case .hero-inner { gap: 60px; grid-template-columns: 1.1fr 0.9fr; }
  .velos-case .hero-featured-image { max-width: 480px; }
  .velos-case .hero-stats { gap: 36px; }
  .velos-case .stat-value { font-size: 42px; }
  
  /* Result card compact */
  .velos-case .result-card { padding: 36px 28px; }
  .velos-case .result-value { font-size: 50px; }
  
  /* Execution grid: 2 col at this point */
  .velos-case .execution-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  
  /* Overview bar compact */
  .velos-case .overview-inner { padding: 28px 36px; gap: 28px; }
  
  /* Case nav */
  .velos-case .case-nav-item { max-width: 320px; }
}

/* --- 1100px: TABLET — Hero stacks, CTA in overview --- */
@media (max-width: 1100px) {
  /* Section padding compacter op tablet */
  .velos-case { --section-padding: clamp(54px, 8vh, 80px); }
  .velos-case .final-cta { padding-top: clamp(54px, 8vh, 80px); padding-bottom: clamp(54px, 8vh, 80px); }
  .velos-case .case-nav { padding-top: 56px; padding-bottom: 56px; }
  .velos-case .section-header { margin-bottom: 40px; }
  
  /* Hero layout: stacks, image below content */
  .velos-case .hero { padding-top: 120px; padding-bottom: 60px; min-height: auto; }
  .velos-case .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .velos-case .hero-content {
    order: -1;
    max-width: 100%;
    text-align: left !important;
  }
  .velos-case .hero-visual {
    order: 0;
    min-height: auto;
    padding-top: 0;
    margin-top: 56px;
    margin-bottom: 24px;
  }
  
  /* Featured image: bigger op tablet voor cinematic impact */
  .velos-case .hero-featured-image { max-width: 520px; }
  
  /* Hero title iets prominenter op tablet */
  .velos-case .hero-title { font-size: clamp(42px, 5.5vw, 56px); margin-bottom: 20px; }
  
  /* Lead iets compacter */
  .velos-case .hero-lead { font-size: 19px; }
  
  /* Hero stats on tablet — smaller but visible */
  .velos-case .hero-stats {
    display: flex !important;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .velos-case .stat-value { font-size: 38px; }
  .velos-case .stat-label { font-size: 13px; }
  
  /* Hide hero CTA — moves to overview-bar */
  .velos-case .hero-cta { display: none !important; }
  
  /* Show overview CTA on tablet */
  .velos-case .overview-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  /* Hero text alignment defaults (overridden by final centering rule) */
  .velos-case .hero-title { text-align: left !important; }
  .velos-case .hero-lead {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    margin-bottom: 28px;
  }
  .velos-case .hero-services { justify-content: flex-start !important; }
  
  /* Service pills smaller */
  .velos-case .service-pill { padding: 8px 14px; font-size: 12px; }
  
  /* Two-col stacks */
  .velos-case .two-col,
  .velos-case .approach-section-grid { grid-template-columns: 1fr; gap: 48px; }
  .velos-case .approach-right-col { padding-top: 0; }
  
  /* Image rows stack */
  .velos-case .image-row { grid-template-columns: 1fr !important; }
  
  /* Results: 3-col on tablet (2 grids van 3, anders orphan cards) */
  .velos-case .results-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  /* Takeaways: 2-col (6 cards = 3 rows van 2, geen orphans) */
  .velos-case .takeaways-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  /* Result cards iets compacter zodat 3 passen */
  .velos-case .result-card { padding: 28px 18px; }
  .velos-case .result-value { font-size: 36px; }
  .velos-case .result-label { font-size: 14px; }
  .velos-case .result-context { font-size: 11px; }
  
  /* Execution grid: 2 col on tablet */
  .velos-case .execution-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  
  /* CTA trust */
  .velos-case .cta-trust { gap: 28px; }
}

/* --- 900px: SMALL TABLET --- */
@media (max-width: 900px) {
  .velos-case .hero,
  .velos-case .content-section,
  .velos-case .final-cta,
  .velos-case .case-nav { padding-left: 32px; padding-right: 32px; }
  .velos-case .overview-bar { padding: 0 32px; }
  
  .velos-case .hero-title { font-size: 40px; }
  .velos-case .hero-lead { font-size: 18px; }
}

/* --- 768px: MOBILE — All titles centered, grids 1-col --- */
@media (max-width: 768px) {
  /* Page padding */
  .velos-case .hero,
  .velos-case .content-section,
  .velos-case .final-cta,
  .velos-case .case-nav { padding-left: 24px; padding-right: 24px; }
  .velos-case .overview-bar { padding: 0 24px; margin-top: 0; }
  
  /* HERO — content centered */
  .velos-case .hero { padding-top: 100px; padding-bottom: 24px; }
  .velos-case .hero-content {
    text-align: center !important;
  }
  .velos-case .hero-title {
    font-size: 36px;
    margin-bottom: 12px;
    text-align: center !important;
  }
  .velos-case .hero-lead {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }
  .velos-case .hero-services {
    justify-content: center !important;
    gap: 8px;
  }
  
  /* Hero stats: centered + compact op mobile */
  .velos-case .hero-stats {
    justify-content: center !important;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .velos-case .stat-value { font-size: 32px; }
  .velos-case .stat-label { font-size: 12px; }
  
  /* Featured image full-width */
  .velos-case .hero-featured-image { max-width: 100%; }
  .velos-case .hero-visual {
    margin-top: 36px;
    margin-bottom: 24px;
  }
  
  /* ALL TITLES CENTERED ON MOBILE — advertentiebeheer pattern */
  .velos-case .section-header { text-align: center !important; }
  .velos-case .section-header .section-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .velos-case .section-title { text-align: center !important; }
  .velos-case .challenges-title {
    text-align: center !important;
    width: 100%;
  }
  
  /* Overview bar stacks vertically */
  .velos-case .overview-inner {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    align-items: stretch;
  }
  .velos-case .overview-cta {
    margin-top: 8px;
    padding-top: 16px;
  }
  
  /* Grids → 1 col */
  .velos-case .challenges-grid { grid-template-columns: 1fr; }
  .velos-case .results-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .velos-case .takeaways-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .velos-case .execution-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  
  /* Other cards */
  .velos-case .result-value { font-size: 44px; }
  .velos-case .challenge-card h4,
  .velos-case .takeaway-card h4 { font-size: 20px; }
  
  /* CTA */
  .velos-case .cta-trust {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  /* Case nav */
  .velos-case .case-nav-inner {
    flex-direction: column;
    gap: 16px;
  }
  .velos-case .case-nav-item {
    width: 100%;
    max-width: none;
  }
  
  /* Approach items: reset entrance on mobile */
  .velos-case .approach-item {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Story lead compact */
  .velos-case .story-lead { font-size: 18px; padding: 24px; }
  
  /* Section spacing -33% */
  .velos-case .content-section { --section-padding: clamp(54px, 8vh, 94px); }
  .velos-case .final-cta { padding-top: 54px; padding-bottom: 54px; }
  .velos-case .case-nav { padding-top: 48px; padding-bottom: 48px; }
  .velos-case .section-header { margin-bottom: 36px; }
}

/* --- 600px: SMALL MOBILE --- */
@media (max-width: 600px) {
  .velos-case .hero-title { font-size: 32px; }
  .velos-case .hero-lead { font-size: 16px; }
}

/* === OVERRIDE: Hero gecentreerd op alle iPad sizes (Air, Pro 11", Pro 12.9") === */
@media (max-width: 1100px) {
  .velos-case .hero-content {
    text-align: center !important;
  }
  .velos-case .hero-title {
    text-align: center !important;
  }
  .velos-case .hero-lead {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 720px !important;
  }
  .velos-case .hero-services {
    justify-content: center !important;
  }
  .velos-case .hero-stats {
    justify-content: center !important;
  }
}/* End custom CSS */