.elementor-1121 .elementor-element.elementor-element-73f6631{--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-1121 .elementor-element.elementor-element-2cb0de4{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -40px) 0px;padding:0px 0px 0px 0px;}.elementor-1121 .elementor-element.elementor-element-9604b1c{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2cb0de4 *//* ===========================================
   VELOS ADS ONLY PAGE - ELEMENTOR WIDGET
   Theme: Velos Maroon - ALL DARK
   UPDATED: All sections now dark theme
   =========================================== */

/* ========================
   CSS VARIABLES
   ======================== */
.velos-adsonly-page {
  /* Colors - Maroon Primary */
  --velos-maroon: #801414;
  --velos-maroon-light: #a41917;
  --velos-maroon-glow: rgba(128, 20, 20, 0.4);
  --velos-slate: #5f6275;
  --velos-slate-light: #8b8ea3;
  --velos-orange: #e47f0a;
  --velos-cream: #ede0d4;
  --velos-cream-light: #fff7ef;
  --velos-cream-dark: #e4d0b9;
  --velos-black: #0a0a0a;
  --velos-dark: #0d0d0d;
  --velos-darker: #111111;
  --velos-darkest: #161616;
  --velos-cyan: #00bfb3;
  
  /* NEW: Readable text colors */
  --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);
  
  /* Highlight colors */
  --highlight-red: #d43f3a;
  --highlight-red-light: #e85550;
  --velos-maroon-accent: #a41917;
  
  /* Typography */
  --font-titles: 'Anton', sans-serif;
  --font-supporting: 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Pro', Georgia, serif;
  
  /* Spacing */
  --section-padding: clamp(80px, 12vh, 140px);
  --container-max: 1400px;
  
  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Section backgrounds */
  --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);
  
  font-family: var(--font-body);
  color: var(--velos-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.velos-adsonly-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.velos-adsonly-page ::selection {
  background: var(--velos-maroon);
  color: var(--velos-cream);
}

.velos-adsonly-page a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--transition-smooth);
}

.velos-adsonly-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================
   SECTION TAG WITH PULSING DOT
   ======================== */
.velos-adsonly-page .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 !important;
  color: var(--highlight-red);
  margin-bottom: 24px;
}

.velos-adsonly-page .tag-dot {
  width: 8px;
  height: 8px;
  background: var(--highlight-red);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ========================
   SECTION TITLES
   ======================== */
.velos-adsonly-page .section-title {
  font-family: var(--font-titles);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--velos-cream);
  margin-bottom: 20px;
  text-transform: none;
}

.velos-adsonly-page .section-title .accent {
  color: var(--velos-maroon-light);
}

.velos-adsonly-page .section-subtitle {
  font-family: var(--font-supporting);
  font-size: 18px;
  color: var(--text-readable);
  max-width: 600px;
  line-height: 1.7;
}

/* ========================
   CTA BUTTON - MAROON
   ======================== */
.velos-adsonly-page .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--velos-maroon);
  color: var(--velos-cream);
  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(--transition-smooth), box-shadow 0.4s ease;
}

.velos-adsonly-page .cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.velos-adsonly-page .cta-button:hover::before {
  width: 400px;
  height: 400px;
}

.velos-adsonly-page .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--velos-maroon-glow);
}

.velos-adsonly-page .cta-button-text {
  position: relative;
  z-index: 2;
}

.velos-adsonly-page .cta-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--transition-smooth);
}

.velos-adsonly-page .cta-button:hover .cta-button-icon {
  transform: rotate(-45deg);
}

.velos-adsonly-page .cta-button-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--velos-cream);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================
   VELOS TECH BUTTON - MAROON
   ======================== */
.velos-adsonly-page .velos-tech-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px !important;
  font-family: 'Crimson Pro', serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0px;
  color: #ffffff;
  text-decoration: none;
  text-transform: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible !important;
  z-index: 1;
}

.velos-adsonly-page .velos-tech-btn:hover {
  color: #ffffff;
  background: rgba(128, 20, 20, 0.2);
  border-color: var(--velos-maroon-light);
  box-shadow: 0 8px 30px var(--velos-maroon-glow);
  transform: translateY(-2px);
}

.velos-adsonly-page .velos-tech-btn .line {
  position: absolute;
  background-color: transparent;
  background-repeat: repeat;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  width: 0;
  height: 0;
}

.velos-adsonly-page .velos-tech-btn .line-top,
.velos-adsonly-page .velos-tech-btn .line-bottom {
  height: 1px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
  background-size: 6px 1px;
}

.velos-adsonly-page .velos-tech-btn:hover .line-top,
.velos-adsonly-page .velos-tech-btn:hover .line-bottom {
  background-image: linear-gradient(90deg, var(--velos-maroon-light) 50%, transparent 50%);
}

.velos-adsonly-page .velos-tech-btn .line-left,
.velos-adsonly-page .velos-tech-btn .line-right {
  width: 1px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
  background-size: 1px 6px;
}

.velos-adsonly-page .velos-tech-btn:hover .line-left,
.velos-adsonly-page .velos-tech-btn:hover .line-right {
  background-image: linear-gradient(180deg, var(--velos-maroon-light) 50%, transparent 50%);
}

.velos-adsonly-page .velos-tech-btn .line-top { top: -6px; left: -6px; width: 0px; transition: width 0.2s linear 0.6s, opacity 0s 0.8s; }
.velos-adsonly-page .velos-tech-btn:hover .line-top { width: calc(100% + 12px); opacity: 1; transition: opacity 0s 0s, width 0.2s linear 0s; }
.velos-adsonly-page .velos-tech-btn .line-right { top: -6px; right: -6px; height: 0px; transition: height 0.2s linear 0.4s, opacity 0s 0.6s; }
.velos-adsonly-page .velos-tech-btn:hover .line-right { height: calc(100% + 12px); opacity: 1; transition: opacity 0s 0.2s, height 0.2s linear 0.2s; }
.velos-adsonly-page .velos-tech-btn .line-bottom { bottom: -6px; right: -6px; width: 0px; transition: width 0.2s linear 0.2s, opacity 0s 0.4s; }
.velos-adsonly-page .velos-tech-btn:hover .line-bottom { width: calc(100% + 12px); opacity: 1; transition: opacity 0s 0.4s, width 0.2s linear 0.4s; }
.velos-adsonly-page .velos-tech-btn .line-left { bottom: -6px; left: -6px; height: 0px; transition: height 0.2s linear 0s, opacity 0s 0.2s; }
.velos-adsonly-page .velos-tech-btn:hover .line-left { height: calc(100% + 12px); opacity: 1; transition: opacity 0s 0.6s, height 0.2s linear 0.6s; }

.velos-adsonly-page .velos-tech-btn .corner {
  position: absolute; width: 5px; height: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0; z-index: 11; pointer-events: none; transition: opacity 0s;
}
.velos-adsonly-page .velos-tech-btn:hover .corner { background-color: var(--velos-maroon-light); }
.velos-adsonly-page .corner-tl { top: -8px; left: -8px; }
.velos-adsonly-page .corner-tr { top: -8px; right: -8px; }
.velos-adsonly-page .corner-br { bottom: -8px; right: -8px; }
.velos-adsonly-page .corner-bl { bottom: -8px; left: -8px; }
.velos-adsonly-page .velos-tech-btn .corner-tl { transition-delay: 0s; }
.velos-adsonly-page .velos-tech-btn .corner-bl { transition-delay: 0.2s; }
.velos-adsonly-page .velos-tech-btn .corner-br { transition-delay: 0.4s; }
.velos-adsonly-page .velos-tech-btn .corner-tr { transition-delay: 0.6s; }
.velos-adsonly-page .velos-tech-btn:hover .corner-tr { opacity: 1; transition-delay: 0.2s; }
.velos-adsonly-page .velos-tech-btn:hover .corner-br { opacity: 1; transition-delay: 0.4s; }
.velos-adsonly-page .velos-tech-btn:hover .corner-bl { opacity: 1; transition-delay: 0.6s; }
.velos-adsonly-page .velos-tech-btn:hover .corner-tl { opacity: 1; transition-delay: 0.8s; }

/* ========================
   HERO SECTION
   ======================== */
.velos-adsonly-page .hero {
  padding: 160px 48px 100px;
  position: relative;
  overflow: hidden;
}

.velos-adsonly-page .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--velos-maroon-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}

.velos-adsonly-page .hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.velos-adsonly-page .hero-content {
  max-width: 600px;
}

.velos-adsonly-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(128, 20, 20, 0.1);
  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-maroon-light);
  margin-bottom: 32px;
  animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(128, 20, 20, 0.3); }
  50% { box-shadow: 0 0 20px 5px rgba(128, 20, 20, 0.15); }
}

.velos-adsonly-page .hero-title {
  font-family: var(--font-titles);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--velos-cream);
  margin-bottom: 24px;
  text-transform: none;
}

.velos-adsonly-page .hero-title .highlight {
  color: var(--velos-maroon-light);
}

.velos-adsonly-page .hero-subtitle {
  font-family: var(--font-supporting);
  font-size: 21px;
  font-style: italic;
  color: var(--text-readable);
  margin-bottom: 32px;
  line-height: 1.6;
}

.velos-adsonly-page .hero-trust-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.velos-adsonly-page .hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-readable);
}

.velos-adsonly-page .hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--velos-maroon-light);
  flex-shrink: 0;
}

.velos-adsonly-page .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================
   HERO VISUAL
   ======================== */
.velos-adsonly-page .hero-visual {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.velos-adsonly-page .hero-media-placeholder {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/10;
  background: var(--glass-bg);
  border: 1px dashed var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(237, 224, 212, 0.3);
  position: relative;
}

.velos-adsonly-page .hero-media-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.velos-adsonly-page .hero-media-placeholder span {
  font-size: 13px;
  letter-spacing: 0.5px;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.velos-adsonly-page .floating-stat-card {
  position: absolute;
  background: rgba(18, 16, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(164, 25, 23, 0.35);
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 20;
  animation: floatIn 0.8s ease-out 0.3s forwards;
  opacity: 0;
  transition: all 0.4s ease;
}

.velos-adsonly-page .floating-stat-card:hover {
  border-color: var(--velos-maroon-light);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px var(--velos-maroon-glow);
}

.velos-adsonly-page .stat-card-top-left {
  top: 0;
  left: -20px;
}

.velos-adsonly-page .stat-card-value {
  font-family: var(--font-titles);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.velos-adsonly-page .stat-card-value .highlight {
  color: var(--velos-maroon-light);
}

.velos-adsonly-page .stat-card-label {
  font-size: 14px;
  color: rgba(237, 224, 212, 0.6);
  margin-bottom: 8px;
}

.velos-adsonly-page .stat-card-trend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--velos-cyan);
}

.velos-adsonly-page .stat-card-trend svg {
  width: 12px;
  height: 12px;
}

.velos-adsonly-page .graph-card {
  position: absolute;
  bottom: -30px;
  right: -40px;
  width: 240px;
  background: rgba(18, 16, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(164, 25, 23, 0.35);
  border-radius: 20px;
  padding: 20px;
  z-index: 15;
  animation: floatIn 0.8s ease-out 0.5s forwards;
  opacity: 0;
  transition: all 0.4s ease;
}

.velos-adsonly-page .graph-card:hover {
  border-color: var(--velos-maroon-light);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(128, 20, 20, 0.25);
}

.velos-adsonly-page .graph-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.velos-adsonly-page .graph-card-title {
  font-family: var(--font-titles);
  font-size: 14px;
  color: var(--velos-cream);
  letter-spacing: 0.5px;
}

.velos-adsonly-page .graph-card-badge {
  padding: 4px 10px;
  background: rgba(0, 191, 179, 0.15);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: var(--velos-cyan);
  text-transform: uppercase;
}

.velos-adsonly-page .mini-chart {
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 12px;
}

.velos-adsonly-page .mini-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--velos-maroon-light) 0%, var(--velos-maroon) 100%);
  border-radius: 3px 3px 0 0;
  animation: barGrow 1s ease-out forwards;
  transform: scaleY(0);
  transform-origin: bottom;
}

.velos-adsonly-page .mini-chart-bar:nth-child(1) { height: 35%; animation-delay: 0.7s; }
.velos-adsonly-page .mini-chart-bar:nth-child(2) { height: 55%; animation-delay: 0.8s; }
.velos-adsonly-page .mini-chart-bar:nth-child(3) { height: 40%; animation-delay: 0.9s; }
.velos-adsonly-page .mini-chart-bar:nth-child(4) { height: 70%; animation-delay: 1.0s; }
.velos-adsonly-page .mini-chart-bar:nth-child(5) { height: 50%; animation-delay: 1.1s; }
.velos-adsonly-page .mini-chart-bar:nth-child(6) { height: 85%; animation-delay: 1.2s; background: linear-gradient(180deg, var(--velos-cyan) 0%, var(--velos-maroon) 100%); }
.velos-adsonly-page .mini-chart-bar:nth-child(7) { height: 65%; animation-delay: 1.3s; }
.velos-adsonly-page .mini-chart-bar:nth-child(8) { height: 95%; animation-delay: 1.4s; background: linear-gradient(180deg, var(--velos-cyan) 0%, var(--velos-maroon-light) 100%); }

@keyframes barGrow {
  to { transform: scaleY(1); }
}

.velos-adsonly-page .graph-card-stats {
  display: flex;
  justify-content: space-between;
}

.velos-adsonly-page .graph-stat {
  text-align: center;
}

.velos-adsonly-page .graph-stat-value {
  font-family: var(--font-titles);
  font-size: 18px;
  color: var(--velos-maroon-light);
  margin-bottom: 2px;
}

.velos-adsonly-page .graph-stat-label {
  font-size: 9px;
  color: rgba(237, 224, 212, 0.4);
  text-transform: uppercase;
}

/* ========================
   PAIN POINTS SECTION
   ======================== */
.velos-adsonly-page .pain-points {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-darker);
  position: relative;
}

.velos-adsonly-page .pain-points-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.velos-adsonly-page .pain-points-header {
  text-align: center;
  margin-bottom: 60px;
}

.velos-adsonly-page .pain-points-header .section-subtitle {
  margin: 0 auto;
}

.velos-adsonly-page .pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.velos-adsonly-page .pain-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.velos-adsonly-page .pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--velos-maroon), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.velos-adsonly-page .pain-card:hover {
  border-color: var(--velos-maroon);
  transform: translateY(-8px);
}

.velos-adsonly-page .pain-card:hover::before {
  opacity: 1;
}

.velos-adsonly-page .pain-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(128, 20, 20, 0.2), rgba(128, 20, 20, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--velos-maroon-light);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.velos-adsonly-page .pain-card-icon svg {
  transition: all 0.4s ease;
}

.velos-adsonly-page .pain-card:hover .pain-card-icon {
  background: linear-gradient(135deg, var(--velos-maroon-light), var(--velos-maroon));
  box-shadow: 0 8px 24px var(--velos-maroon-glow);
}

.velos-adsonly-page .pain-card:hover .pain-card-icon svg {
  color: var(--velos-cream);
}

.velos-adsonly-page .pain-card-title {
  font-family: var(--font-titles); /* Reverted to Anton */
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.25px; /* Added */
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
}

.velos-adsonly-page .pain-card-text {
  font-size: 16px;
  color: var(--text-readable);
  line-height: 1.7;
}

.velos-adsonly-page .pain-card-text strong {
  color: var(--highlight-red);
  font-weight: 600;
}

.velos-adsonly-page .pain-card-stat {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(128, 20, 20, 0.08);
  border-radius: 8px;
  font-size: 14px;
  color: var(--highlight-red);
  font-style: italic;
  font-weight: 500;
}

/* ========================
   SOLUTION SECTION
   ======================== */
.velos-adsonly-page .solution {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-dark);
  position: relative;
}

.velos-adsonly-page .solution-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.velos-adsonly-page .solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.velos-adsonly-page .solution-content {
  max-width: 540px;
}

.velos-adsonly-page .solution-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.velos-adsonly-page .solution-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s var(--transition-smooth);
}

.velos-adsonly-page .solution-item:hover {
  border-color: var(--velos-maroon);
  transform: translateX(8px);
}

.velos-adsonly-page .solution-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(128, 20, 20, 0.2), rgba(128, 20, 20, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--velos-maroon-light);
  flex-shrink: 0;
}

.velos-adsonly-page .solution-item-icon svg {
  width: 24px;
  height: 24px;
}

.velos-adsonly-page .solution-item-content h4 {
  font-family: var(--font-titles);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.25px;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
}

.velos-adsonly-page .solution-item-content p {
  font-size: 16px;
  color: var(--text-readable);
  line-height: 1.7;
}

.velos-adsonly-page .solution-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 60px;
}

.velos-adsonly-page .solution-media-placeholder {
  width: 100%;
  max-width: 540px;
  height: 100%;
  background: none;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  margin: auto;
}

.velos-adsonly-page .solution-media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 1200px) {
  .velos-adsonly-page .solution-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
  }
  .velos-adsonly-page .solution-visual {
    margin-top: 0;
    max-height: 500px;
  }
  .velos-adsonly-page .solution-media-placeholder {
    max-width: 100%;
    height: 500px;
  }
}

/* ========================
   WHO FOR SECTION - DARK
   ======================== */
.velos-adsonly-page .who-for {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-darker);
  position: relative;
}

.velos-adsonly-page .who-for-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.velos-adsonly-page .who-for-header {
  text-align: center;
  margin-bottom: 60px;
}

.velos-adsonly-page .who-for-header .section-subtitle {
  margin: 0 auto;
}

.velos-adsonly-page .who-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.velos-adsonly-page .who-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s var(--transition-smooth);
}

.velos-adsonly-page .who-card.ideal {
  border-color: rgba(0, 191, 179, 0.2);
}

.velos-adsonly-page .who-card.ideal:hover {
  border-color: var(--velos-cyan);
  box-shadow: 0 20px 50px rgba(0, 191, 179, 0.25);
  transform: translateY(-8px);
}

.velos-adsonly-page .who-card.not-ideal {
  border-color: rgba(164, 25, 23, 0.2);
}

.velos-adsonly-page .who-card.not-ideal:hover {
  border-color: var(--highlight-red);
  box-shadow: 0 20px 50px rgba(212, 63, 58, 0.3);
  transform: translateY(-8px);
}

.velos-adsonly-page .who-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.velos-adsonly-page .who-card.ideal .who-card-icon {
  background: linear-gradient(135deg, rgba(0, 191, 179, 0.2), rgba(0, 191, 179, 0.05));
  color: var(--velos-cyan);
}

.velos-adsonly-page .who-card.not-ideal .who-card-icon {
  background: linear-gradient(135deg, rgba(164, 25, 23, 0.2), rgba(164, 25, 23, 0.05));
  color: var(--velos-maroon-light);
}

.velos-adsonly-page .who-card-title {
  font-family: var(--font-titles); /* Reverted to Anton */
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.25px; /* Added */
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: none;
}

.velos-adsonly-page .who-card-list {
  list-style: none;
}

.velos-adsonly-page .who-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-readable);
  line-height: 1.7;
}

.velos-adsonly-page .who-card-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.velos-adsonly-page .who-card.ideal .who-card-list li svg {
  color: var(--velos-cyan);
  background: rgba(0, 191, 179, 0.12);
  border-radius: 50%;
  padding: 2px;
  width: 20px;
  height: 20px;
}

.velos-adsonly-page .who-card.not-ideal .who-card-list li svg {
  color: var(--velos-maroon-light);
  background: rgba(164, 25, 23, 0.12);
  border-radius: 50%;
  padding: 2px;
  width: 20px;
  height: 20px;
}

/* ========================
   DREAM STATE SECTION - DARK
   ======================== */
.velos-adsonly-page .dream-state {
  padding: var(--section-padding) 48px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(18, 14, 18, 0.95) 50%, rgba(10, 10, 10, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.velos-adsonly-page .dream-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.4;
}

.velos-adsonly-page .dream-bg-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(128, 20, 20, 0.3) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: dreamFloat1 15s ease-in-out infinite;
}

.velos-adsonly-page .dream-bg-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 191, 179, 0.15) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: dreamFloat2 18s ease-in-out infinite;
}

@keyframes dreamFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, 30px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}

@keyframes dreamFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, -20px) scale(1.05); }
  66% { transform: translate(30px, -40px) scale(0.9); }
}

.velos-adsonly-page .dream-state-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.velos-adsonly-page .dream-header {
  text-align: center;
  margin-bottom: 60px;
}

.velos-adsonly-page .dream-header .section-subtitle {
  margin: 0 auto;
  font-size: 20px;
}

.velos-adsonly-page .dream-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.velos-adsonly-page .dream-card {
  position: relative;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
}

.velos-adsonly-page .dream-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--velos-maroon), var(--velos-maroon-light), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.velos-adsonly-page .dream-card:hover::before {
  opacity: 1;
}

.velos-adsonly-page .dream-card:hover {
  border-color: var(--velos-maroon);
  transform: translateY(-8px);
}

.velos-adsonly-page .dream-card-content {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.velos-adsonly-page .dream-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(128, 20, 20, 0.08) 50%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
  transition: left 0.6s ease;
}

.velos-adsonly-page .dream-card:hover .dream-card-shine {
  left: 100%;
}

.velos-adsonly-page .dream-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(128, 20, 20, 0.2), rgba(128, 20, 20, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.velos-adsonly-page .dream-icon svg {
  width: 28px;
  height: 28px;
  color: var(--velos-maroon-light);
  transition: all 0.4s ease;
}

.velos-adsonly-page .dream-card:hover .dream-icon {
  background: linear-gradient(135deg, var(--velos-maroon-light), var(--velos-maroon));
  box-shadow: 0 8px 24px var(--velos-maroon-glow);
}

.velos-adsonly-page .dream-card:hover .dream-icon svg {
  color: var(--velos-cream);
}

.velos-adsonly-page .dream-title {
  font-family: var(--font-titles); /* Reverted to Anton */
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.25px; /* Added */
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
}

.velos-adsonly-page .dream-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-readable);
  line-height: 1.7;
  flex-grow: 1;
}

.velos-adsonly-page .dream-highlight {
  color: var(--highlight-red);
  font-weight: 600;
}

.velos-adsonly-page .dream-footer {
  text-align: center;
  margin-top: 60px;
}

.velos-adsonly-page .dream-footer-text {
  font-family: var(--font-supporting);
  font-size: 18px;
  font-style: italic;
  color: var(--text-readable-muted);
  margin-bottom: 24px;
}

.velos-adsonly-page .dream-footer-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--velos-maroon-light), transparent);
  margin: 0 auto;
}

/* =============================================
   ADVERTENTIEBEHEER — PACKAGE CARDS v3
   
   Root cause of snap:
   Old stylesheet has .package-card::before { transition: opacity }
   That transition fires on unhover and fights the orbPulse animation.
   
   Fix:
   1. content: none on base ::before  → hard-kills the conflicting rule
   2. transition: none on featured ::before  → blocks any inherited transition
      so animation runs clean in all browsers
   3. orbPulse restored → matches the homepage pulse feel
   ============================================= */

@keyframes orbPulseMaroon {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.6;  }
}

@keyframes badgeGlowMaroon {
  0%, 100% { box-shadow: 0 4px 20px var(--velos-maroon-glow), 0 0 0 0 rgba(164, 25, 23, 0.3); }
  50%       { box-shadow: 0 4px 30px var(--velos-maroon-glow), 0 0 40px 4px rgba(164, 25, 23, 0.15); }
}

/* ========================
   PACKAGES SECTION
   ======================== */
.velos-adsonly-page .packages {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-dark);
  position: relative;
}

.velos-adsonly-page .packages-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.velos-adsonly-page .packages-header {
  text-align: center;
  margin-bottom: 60px;
}

.velos-adsonly-page .packages-header .section-subtitle {
  margin: 0 auto;
}

.velos-adsonly-page .packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========================
   BASE CARD
   ::before is killed entirely with content:none.
   Any old rule with transition:opacity on ::before
   is neutralised — can't fight the animation anymore.
   ======================== */
.velos-adsonly-page .package-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: transform 0.4s var(--transition-smooth),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

/* Hard-kill any old ::before on base card */
.velos-adsonly-page .package-card::before {
  content: none !important;
}

.velos-adsonly-page .package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(164, 25, 23, 0.4);
  box-shadow: 0 20px 50px rgba(128, 20, 20, 0.15);
}

/* ========================
   FEATURED CARD
   Matches the homepage .theme-orange.featured approach:
   gradient bg + border + ::before with orbPulse.
   transition:none blocks any inherited transition
   from the (now-killed) base rule as a safety net.
   ======================== */
.velos-adsonly-page .package-card.featured {
  background: linear-gradient(180deg, rgba(164, 25, 23, 0.07) 0%, var(--glass-bg) 100%);
  border-color: rgba(164, 25, 23, 0.3);
}

.velos-adsonly-page .package-card.featured::before {
  content: '' !important;           /* override the content:none from base */
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg,
    rgba(164, 25, 23, 0.28) 0%,
    rgba(164, 25, 23, 0.07) 35%,
    transparent 65%
  );
  border-radius: 25px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  animation: orbPulseMaroon 3s ease-in-out infinite;
  transition: none !important;      /* block any inherited transition */
}

.velos-adsonly-page .package-card.featured:hover {
  border-color: rgba(164, 25, 23, 0.55);
  box-shadow: 0 20px 60px rgba(128, 20, 20, 0.22),
              0 0 80px rgba(128, 20, 20, 0.08);
}

/* ========================
   BADGE
   ======================== */
.velos-adsonly-page .package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 24px;
  background: var(--velos-maroon);
  color: var(--velos-cream);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  box-shadow: 0 4px 20px var(--velos-maroon-glow);
  animation: badgeGlowMaroon 3s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}

/* ========================
   PACKAGE HEADER
   ======================== */
.velos-adsonly-page .package-header {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 28px;
}

/* ========================
   PACKAGE ICON
   ======================== */
.velos-adsonly-page .package-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(128, 20, 20, 0.2), rgba(128, 20, 20, 0.05));
  border: 1px solid rgba(128, 20, 20, 0.3);
  color: var(--velos-maroon-light);
  transition: transform 0.4s ease;
}

.velos-adsonly-page .package-icon svg { width: 24px; height: 24px; }

.velos-adsonly-page .package-card:hover .package-icon {
  transform: scale(1.1) rotate(5deg);
}

/* ========================
   PACKAGE LABEL
   ======================== */
.velos-adsonly-page .package-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--velos-maroon-light);
  margin-bottom: 8px;
}

/* ========================
   PACKAGE NAME
   ======================== */
.velos-adsonly-page .package-name {
  font-family: var(--font-titles); /* Reverted to Anton */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.25px; /* Added */
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: none;
}

/* ========================
   PACKAGE TAGLINE
   ======================== */
.velos-adsonly-page .package-tagline {
  font-size: 14px;
  color: var(--text-readable-muted);
  margin-bottom: 20px;
  min-height: 40px;
}

/* ========================
   PACKAGE PRICE
   ======================== */
.velos-adsonly-page .package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.velos-adsonly-page .package-currency {
  font-size: 22px;
  color: var(--velos-maroon-light);
  font-weight: 600;
}

.velos-adsonly-page .package-amount {
  font-family: var(--font-titles);
  font-size: 48px;
  font-weight: 700;
  color: var(--velos-cream);
}

.velos-adsonly-page .package-period {
  display: block;
  font-size: 14px;
  color: var(--text-readable-muted);
  margin-top: 4px;
}

/* ========================
   PACKAGE AD SPEND
   ======================== */
.velos-adsonly-page .package-adspend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 14px;
  background: rgba(128, 20, 20, 0.08);
  border: 1px solid rgba(128, 20, 20, 0.18);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-readable-muted);
  line-height: 1.4;
  width: 100%;
}

.velos-adsonly-page .package-adspend strong {
  color: var(--text-readable-muted);
  font-weight: 700;
}

/* ========================
   PACKAGE MINIMUM NOTE
   ======================== */
.velos-adsonly-page .package-minimum {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--text-readable-muted);
  line-height: 1.5;
}

/* ========================
   PACKAGE FEATURES
   ======================== */
.velos-adsonly-page .package-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.velos-adsonly-page .package-features-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(237, 224, 212, 0.4);
  margin-bottom: 16px;
}

.velos-adsonly-page .package-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.velos-adsonly-page .package-feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(0, 191, 179, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.velos-adsonly-page .package-feature-icon svg {
  width: 10px;
  height: 10px;
  color: var(--velos-cyan);
}

.velos-adsonly-page .package-feature-text {
  font-size: 14px;
  color: var(--text-readable);
  line-height: 1.5;
}

.velos-adsonly-page .package-feature-text strong {
  color: var(--velos-cream);
  font-weight: 600;
}

/* ========================
   FEATURE META
   ======================== */
.velos-adsonly-page .package-feature.package-feature-meta {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}

.velos-adsonly-page .package-feature.package-feature-meta .package-feature-text {
  color: rgba(237, 224, 212, 0.7);
  font-style: italic;
}

.velos-adsonly-page .package-feature.package-feature-meta + .package-feature.package-feature-meta {
  margin-top: 0;
  padding-top: 10px;
  border-top: none;
}

/* ========================
   CTA
   ======================== */
.velos-adsonly-page .package-cta {
  width: 100%;
  margin-top: auto;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .velos-adsonly-page .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .velos-adsonly-page .package-tagline { min-height: auto; }
}

@media (max-width: 600px) {
  .velos-adsonly-page .package-card  { padding: 32px 24px; }
  .velos-adsonly-page .package-name  { font-size: 22px; }
  .velos-adsonly-page .package-amount { font-size: 36px; }
}
/* ========================
   PROCESS SECTION - DARK
   ======================== */
.velos-adsonly-page .process {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-darker);
  position: relative;
  overflow: hidden;
}

.velos-adsonly-page .process-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.velos-adsonly-page .process-header {
  text-align: center;
  margin-bottom: 80px;
}

.velos-adsonly-page .process-header .section-subtitle {
  margin: 0 auto;
}

.velos-adsonly-page .process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.velos-adsonly-page .process-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--velos-maroon), var(--velos-maroon-light), var(--velos-slate), var(--velos-maroon));
  opacity: 0.3;
}

.velos-adsonly-page .process-step {
  text-align: center;
  position: relative;
}

.velos-adsonly-page .process-step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titles);
  font-size: 24px;
  font-weight: 700;
  color: var(--velos-maroon-light);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.velos-adsonly-page .process-step:hover .process-step-number {
  background: var(--velos-maroon);
  border-color: var(--velos-maroon);
  color: var(--velos-cream);
  transform: scale(1.1);
}

.velos-adsonly-page .process-step-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(164, 25, 23, 0.15), rgba(164, 25, 23, 0.05));
  border: 1px solid rgba(164, 25, 23, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--velos-maroon-light);
}

.velos-adsonly-page .process-step-icon svg {
  width: 18px;
  height: 18px;
}

.velos-adsonly-page .process-step-title {
  font-family: var(--font-titles); /* Reverted to Anton */
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.25px; /* Added */
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: none;
}

.velos-adsonly-page .process-step-text {
  font-size: 14px;
  color: var(--text-readable); /* Updated for readability */
  line-height: 1.6;
}

.velos-adsonly-page .process-step-duration {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--highlight-red); /* Updated to pulsing dot red */
}

/* ========================
   PROCESS TIMELINE — Morph animation
   Line draws itself, steps morph in
   ======================== */
.velos-adsonly-page .process-timeline::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.velos-adsonly-page .process-timeline.visible::before {
  transform: scaleX(1);
}

.velos-adsonly-page .process-step.fade-element {
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.velos-adsonly-page .process-step.fade-element.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* ========================
   RESULTS / TESTIMONIAL SECTION - DARK
   ======================== */
.velos-adsonly-page .results {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-dark);
  position: relative;
  z-index: 5;
}

.velos-adsonly-page .results-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.velos-adsonly-page .results-header {
  text-align: center;
  margin-bottom: 48px;
}

.velos-adsonly-page .results-header .section-title {
  margin-bottom: 16px;
}

.velos-adsonly-page .results-header .section-subtitle {
  margin: 0 auto;
}

.velos-adsonly-page .results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.velos-adsonly-page .results-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.velos-adsonly-page .results .stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.velos-adsonly-page .results .stat-card:hover {
  border-color: var(--velos-maroon);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--velos-maroon-glow);
}

.velos-adsonly-page .results-stats .stat-card .stat-card-value {
  font-family: var(--font-titles);
  font-size: 42px;
  font-weight: 700;
  color: var(--velos-maroon-light);
  margin-bottom: 8px;
}

.velos-adsonly-page .results-stats .stat-card .stat-card-label {
  font-size: 14px;
  color: var(--text-readable);
  font-weight: 500;
  line-height: 1.5;
}

.velos-adsonly-page .results-testimonial {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  transition: all 0.4s ease;
}

.velos-adsonly-page .results-testimonial:hover {
  border-color: var(--velos-maroon);
  box-shadow: 0 20px 50px var(--velos-maroon-glow);
}

.velos-adsonly-page .testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  color: rgba(164, 25, 23, 0.3);
}

.velos-adsonly-page .testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.velos-adsonly-page .testimonial-star {
  color: var(--velos-maroon-light);
  font-size: 20px;
}

.velos-adsonly-page .testimonial-text {
  font-family: var(--font-supporting);
  font-size: 20px;
  font-style: italic;
  color: var(--text-readable);
  line-height: 1.7;
  margin-bottom: 32px;
}

.velos-adsonly-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.velos-adsonly-page .testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--velos-maroon-light), var(--velos-maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titles);
  font-size: 22px;
  color: var(--velos-cream);
}

.velos-adsonly-page .testimonial-avatar.testimonial-avatar-logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 8px;
  overflow: hidden;
}

.velos-adsonly-page .testimonial-avatar.testimonial-avatar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.velos-adsonly-page .testimonial-author-name {
  font-weight: 600;
  color: var(--velos-cream);
  margin-bottom: 4px;
}

.velos-adsonly-page .testimonial-author-role {
  font-size: 14px;
  color: var(--text-readable-muted);
}

/* ============================================================
   ADVERTENTIEBEHEER FAQ SECTION
   ============================================================ */

.velos-adsonly-page .faq {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-darker);
  position: relative;
}

.velos-adsonly-page .faq-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.velos-adsonly-page .faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.velos-adsonly-page .faq-header .section-subtitle {
  margin: 0 auto;
}

.velos-adsonly-page .velos-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.velos-adsonly-page .velos-faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.velos-adsonly-page .velos-faq-card {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: linear-gradient(135deg, rgba(164, 25, 23, 0.25) 0%, rgba(40, 35, 40, 0.6) 20%, rgba(40, 35, 40, 0.6) 80%, rgba(164, 25, 23, 0.15) 100%);
  background-size: 200% 200%;
  padding: 1px;
  flex: 1;
}

.velos-adsonly-page .velos-faq-card:hover {
  animation: borderGlow 4s ease-in-out infinite;
  transform: translateX(4px);
  background: linear-gradient(135deg, rgba(164, 25, 23, 0.4) 0%, rgba(50, 45, 50, 0.7) 20%, rgba(50, 45, 50, 0.7) 80%, rgba(164, 25, 23, 0.25) 100%);
  box-shadow: 0 8px 32px rgba(164, 25, 23, 0.1), 0 0 60px rgba(164, 25, 23, 0.03);
}

.velos-adsonly-page .velos-faq-card.active {
  animation: borderGlow 4s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(164, 25, 23, 0.5) 0%, rgba(50, 45, 50, 0.7) 20%, rgba(50, 45, 50, 0.7) 80%, rgba(164, 25, 23, 0.3) 100%);
  box-shadow: 0 12px 40px rgba(164, 25, 23, 0.12), 0 0 80px rgba(164, 25, 23, 0.05);
}

.velos-adsonly-page .velos-faq-glass {
  background: rgba(18, 16, 18, 0.98);
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.velos-adsonly-page .velos-faq-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 20px;
  cursor: pointer;
  position: relative;
}

.velos-adsonly-page .velos-faq-num {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--velos-maroon-light, #a41917);
  min-width: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.velos-adsonly-page .velos-faq-card:hover .velos-faq-num,
.velos-adsonly-page .velos-faq-card.active .velos-faq-num {
  animation: numberPulse 2s ease-in-out infinite;
}

.velos-adsonly-page .velos-faq-card.active .velos-faq-num {
  color: #d4453f;
}

.velos-adsonly-page .velos-faq-num::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 25, 23, 0.06) 0%, transparent 70%);
  z-index: -1;
  transition: all 0.4s ease;
}

.velos-adsonly-page .velos-faq-card:hover .velos-faq-num::before,
.velos-adsonly-page .velos-faq-card.active .velos-faq-num::before {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(164, 25, 23, 0.12) 0%, transparent 70%);
}

.velos-adsonly-page .velos-faq-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transition: all 0.4s ease;
}

.velos-adsonly-page .velos-faq-card.active .velos-faq-divider {
  background: linear-gradient(180deg, transparent 0%, rgba(164, 25, 23, 0.35) 50%, transparent 100%);
}

.velos-adsonly-page .velos-faq-q {
  font-family: var(--font-supporting, 'Playfair Display', Georgia, serif);
  font-size: 24px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex: 1;
  transition: color 0.4s ease;
  line-height: 1.35;
}

.velos-adsonly-page .velos-faq-card.active .velos-faq-q {
  background: linear-gradient(90deg, #a41917 0%, #d4453f 50%, #a41917 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.velos-adsonly-page .velos-faq-toggle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  position: relative;
}

.velos-adsonly-page .velos-faq-card:hover .velos-faq-toggle {
  border-color: rgba(164, 25, 23, 0.5);
  background: rgba(164, 25, 23, 0.08);
}

.velos-adsonly-page .velos-faq-card.active .velos-faq-toggle {
  background: var(--velos-maroon-light, #a41917);
  border-color: var(--velos-maroon-light, #a41917);
  transform: rotate(180deg) scale(1.05);
  box-shadow: 0 0 25px rgba(164, 25, 23, 0.35), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.velos-adsonly-page .velos-faq-toggle span {
  position: absolute;
  background: rgba(237, 224, 212, 0.7);
  transition: all 0.4s;
}

.velos-adsonly-page .velos-faq-toggle span:first-child { width: 12px; height: 2px; }
.velos-adsonly-page .velos-faq-toggle span:last-child { width: 2px; height: 12px; }

.velos-adsonly-page .velos-faq-card:hover .velos-faq-toggle span { background: var(--velos-maroon-light, #a41917); }
.velos-adsonly-page .velos-faq-card.active .velos-faq-toggle span { background: #0a0a0a; }

.velos-adsonly-page .velos-faq-card.active .velos-faq-toggle span:last-child {
  transform: rotate(90deg);
  opacity: 0;
}

.velos-adsonly-page .velos-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.velos-adsonly-page .velos-faq-card.active .velos-faq-body {
  grid-template-rows: 1fr;
}

.velos-adsonly-page .velos-faq-body-inner { overflow: hidden; }

.velos-adsonly-page .velos-faq-content {
  padding: 0 24px 24px 94px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s 0.1s;
}

.velos-adsonly-page .velos-faq-card.active .velos-faq-content {
  opacity: 1;
  transform: translateY(0);
}

.velos-adsonly-page .velos-faq-content::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(164, 25, 23, 0.3) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 100%);
  margin-bottom: 16px;
}

.velos-adsonly-page .velos-faq-a {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(237, 224, 212, 0.88);
  margin: 0;
}

.velos-adsonly-page .velos-faq-a strong {
  color: var(--velos-maroon-light, #a41917);
  font-weight: 500;
}

/* === FIX: Links in FAQ answers === */
.velos-adsonly-page .velos-faq-a a {
  color: #d4453f !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
  transition: color 0.3s ease, opacity 0.3s ease !important;
}

.velos-adsonly-page .velos-faq-a a:hover {
  color: #e85550 !important;
  opacity: 0.9 !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .velos-adsonly-page .velos-faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .velos-adsonly-page .velos-faq-column { gap: 10px; }
}

@media (max-width: 768px) {
  .velos-adsonly-page .velos-faq-header { padding: 16px 18px; gap: 12px; }
  .velos-adsonly-page .velos-faq-num { font-size: 26px; min-width: 40px; }
  .velos-adsonly-page .velos-faq-divider { display: none; }
  .velos-adsonly-page .velos-faq-q { font-size: 20px; }
  .velos-adsonly-page .velos-faq-toggle { width: 34px; height: 34px; min-width: 34px; }
  .velos-adsonly-page .velos-faq-toggle span:first-child { width: 10px; }
  .velos-adsonly-page .velos-faq-toggle span:last-child { height: 10px; }
  .velos-adsonly-page .velos-faq-content { padding: 0 18px 18px 18px; }
  .velos-adsonly-page .velos-faq-a { font-size: 14px; }
}
/* ========================
   FINAL CTA SECTION - DARK
   ======================== */
.velos-adsonly-page .final-cta {
  padding: var(--section-padding) 48px;
  background: var(--section-bg-dark);
  position: relative;
  z-index: 5;
}

.velos-adsonly-page .final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.velos-adsonly-page .final-cta-title {
  font-family: var(--font-titles);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--velos-cream);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: none;
}

.velos-adsonly-page .final-cta-title .highlight {
  color: var(--velos-maroon-light);
}

.velos-adsonly-page .final-cta-text {
  font-family: var(--font-supporting);
  font-size: 18px;
  color: var(--text-readable);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.velos-adsonly-page .final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.velos-adsonly-page .final-cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.velos-adsonly-page .final-cta .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-readable);
}

.velos-adsonly-page .final-cta .trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--highlight-red);
}

.velos-adsonly-page .final-cta-note {
  font-size: 14px;
  color: var(--text-readable-light);
  font-style: italic;
}

/* ========================
   COMPARE SECTION - DARK
   ======================== */
.velos-adsonly-page .compare {
  padding: 80px 48px;
  background: var(--section-bg-darker);
  border-top: 1px solid var(--glass-border);
}

.velos-adsonly-page .compare-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.velos-adsonly-page .compare-header {
  text-align: center;
  margin-bottom: 40px;
}

/* FIXED: Typography sync */
.velos-adsonly-page .compare-header h3 { 
  font-family: var(--font-titles); 
  font-size: 28px; 
  font-weight: 700; 
  letter-spacing: -0.25px; 
  color: var(--velos-cream); 
  margin-bottom: 12px; 
  text-transform: none; 
}

.velos-adsonly-page .compare-header p {
  font-size: 16px;
  color: var(--text-readable);
}

.velos-adsonly-page .compare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.velos-adsonly-page .compare-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}

.velos-adsonly-page .compare-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.velos-adsonly-page .compare-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.velos-adsonly-page .compare-card-icon.orange {
  background: linear-gradient(135deg, rgba(228, 127, 10, 0.3), rgba(228, 127, 10, 0.1));
  color: var(--velos-orange);
}

.velos-adsonly-page .compare-card-icon.slate {
  background: linear-gradient(135deg, rgba(95, 98, 117, 0.3), rgba(95, 98, 117, 0.1));
  color: var(--velos-slate-light);
}

.velos-adsonly-page .compare-card-icon svg {
  width: 24px;
  height: 24px;
}

/* FIXED: Typography sync */
.velos-adsonly-page .compare-card-content h4 { 
  font-family: var(--font-supporting); /* Gewijzigd naar Playfair */
  font-size: 20px; /* Gewijzigd naar 20px (was 18px) */
  font-weight: 700; 
  color: #ffffff; 
  margin-bottom: 6px; 
  text-transform: none; 
}

.velos-adsonly-page .compare-card-content p {
  font-size: 14px;
  color: var(--text-readable-light);
  margin-bottom: 12px;
}

.velos-adsonly-page .compare-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.velos-adsonly-page .compare-card-link.orange-link {
  color: var(--velos-orange);
}

.velos-adsonly-page .compare-card-link.slate-link {
  color: var(--velos-slate-light);
}

.velos-adsonly-page .compare-card-link:hover {
  gap: 10px;
}

.velos-adsonly-page .compare-card-link svg {
  width: 14px;
  height: 14px;
}

/* ========================
   SEO CONTENT SECTION - DARK
   ======================== */
.velos-adsonly-page .seo-content {
  padding: 60px 48px;
  background: var(--section-bg-black);
  position: relative;
}

.velos-adsonly-page .seo-content-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* FIXED: Typography sync */
.velos-adsonly-page .seo-title { 
  font-family: var(--font-titles); 
  font-size: 28px; 
  font-weight: 700; 
  letter-spacing: -0.25px; 
  margin-bottom: 24px; 
  color: var(--velos-cream); 
  text-align: center; 
  text-transform: none; 
}

.velos-adsonly-page .seo-text {
  font-size: 16px;
  color: var(--text-readable);
  line-height: 1.8;
  margin-bottom: 20px;
}

.velos-adsonly-page .seo-text strong {
  color: var(--velos-cream);
}

.velos-adsonly-page .final-cta-title {
  font-family: var(--font-titles);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.25px;  /* ← VOEG DEZE TOE */
  color: var(--velos-cream);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: none;
}

/* ========================
   SCROLL ANIMATIONS
   Same as Dominic/Ris personal pages
   ======================== */
.velos-adsonly-page .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-adsonly-page .fade-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE — TABLET + MOBILE
   1200px: Tablet landscape — desktop layout, items compacter
   1024px: Tablet portrait — packages/pain-points naar 1col, FAQ naar 1col
   900px:  Smallest tablet — page padding compacter
   768px:  MOBILE — hero stackt hier, alles gecentreerd, title groter
   600px:  Small mobile — buttons full-width
   ========================================== */

/* --- TABLET LANDSCAPE (≤1200px) --- */
@media (max-width: 1200px) {
  .velos-adsonly-page .hero { padding: 140px 32px 80px; }
  .velos-adsonly-page .hero-inner { gap: 48px; }
  
  .velos-adsonly-page .floating-stat-card { padding: 16px 20px; }
  .velos-adsonly-page .stat-card-value { font-size: 30px; }
  .velos-adsonly-page .graph-card { width: 220px; padding: 18px; }

  .velos-adsonly-page .solution-grid { grid-template-columns: 1fr; gap: 48px; align-items: center; }
  .velos-adsonly-page .solution-content { max-width: 100%; }
  .velos-adsonly-page .solution-visual { margin-top: 0; max-height: 500px; }
  .velos-adsonly-page .solution-media-placeholder { max-width: 100%; height: 500px; }
  .velos-adsonly-page .solution-media-placeholder img { object-position: center 30%; }

  .velos-adsonly-page .results-grid { grid-template-columns: 1fr; gap: 48px; }
  .velos-adsonly-page .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .velos-adsonly-page .dream-grid { grid-template-columns: repeat(2, 1fr); }

  .velos-adsonly-page .pain-points-header,
  .velos-adsonly-page .who-for-header,
  .velos-adsonly-page .dream-header,
  .velos-adsonly-page .packages-header,
  .velos-adsonly-page .process-header,
  .velos-adsonly-page .results-header,
  .velos-adsonly-page .faq-header { text-align: center; }
  .velos-adsonly-page .pain-points-header .section-subtitle,
  .velos-adsonly-page .who-for-header .section-subtitle,
  .velos-adsonly-page .dream-header .section-subtitle,
  .velos-adsonly-page .packages-header .section-subtitle,
  .velos-adsonly-page .process-header .section-subtitle,
  .velos-adsonly-page .results-header .section-subtitle { margin-left: auto; margin-right: auto; }

  .velos-adsonly-page .solution-content .section-tag,
  .velos-adsonly-page .solution-content .section-title,
  .velos-adsonly-page .solution-content .section-subtitle { text-align: center; }
  .velos-adsonly-page .solution-content .section-subtitle { margin-left: auto; margin-right: auto; }
  .velos-adsonly-page .solution-content { display: flex; flex-direction: column; align-items: center; }
  .velos-adsonly-page .solution-items { width: 100%; }

  .velos-adsonly-page .final-cta-trust { gap: 24px; }
}

/* --- TABLET PORTRAIT (≤1024px) --- */
@media (max-width: 1024px) {
  .velos-adsonly-page .velos-faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .velos-adsonly-page .velos-faq-column { gap: 10px; }
  
  .velos-adsonly-page .section-title,
  .velos-adsonly-page .hero-title,
  .velos-adsonly-page .final-cta-title { font-size: 48px; }
  
  .velos-adsonly-page .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .velos-adsonly-page .pain-points-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  
  .velos-adsonly-page .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .velos-adsonly-page .process-timeline::before { display: none; }
  
  .velos-adsonly-page .hero { padding: 120px 24px 60px; }
  .velos-adsonly-page .hero-inner { gap: 32px; }
  .velos-adsonly-page .hero-visual { min-height: 450px; }
  
  .velos-adsonly-page .floating-stat-card { padding: 14px 16px; }
  .velos-adsonly-page .stat-card-value { font-size: 26px; }
  .velos-adsonly-page .stat-card-label { font-size: 12px; }
  .velos-adsonly-page .graph-card { width: 180px; padding: 14px; bottom: -20px; right: -20px; }
}

/* --- SMALL TABLET (≤900px) --- */
@media (max-width: 900px) {
  .velos-adsonly-page .pain-points,
  .velos-adsonly-page .who-for,
  .velos-adsonly-page .solution,
  .velos-adsonly-page .dream-state,
  .velos-adsonly-page .packages,
  .velos-adsonly-page .process,
  .velos-adsonly-page .results,
  .velos-adsonly-page .faq,
  .velos-adsonly-page .compare,
  .velos-adsonly-page .final-cta { padding-left: 24px; padding-right: 24px; }
  
  .velos-adsonly-page .who-cards { grid-template-columns: 1fr; }
  .velos-adsonly-page .compare-cards { grid-template-columns: 1fr; }
  .velos-adsonly-page .dream-grid { grid-template-columns: 1fr; }
}

/* --- MOBILE (≤768px) — HERO STACKT + ALLES GECENTREERD --- */
@media (max-width: 768px) {
  /* HERO stacked + page padding */
  .velos-adsonly-page .hero { padding: 100px 24px 40px; }
  .velos-adsonly-page .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  
  /* Content gecentreerd */
  .velos-adsonly-page .hero-content { 
    order: -1; 
    text-align: center; 
    max-width: 100%; 
    margin: 0 auto;
  }
  .velos-adsonly-page .hero-visual { order: 0; min-height: auto; padding-top: 0; }
  
  /* Hero badge gecentreerd */
  .velos-adsonly-page .hero-badge { 
    margin-left: auto; 
    margin-right: auto; 
  }
  
  /* HERO TITLE — GROTER + GECENTREERD */
  .velos-adsonly-page .hero-title {
    font-size: clamp(52px, 10vw, 84px) !important;
    text-align: center;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* HERO SUBTITLE — gecentreerd, zelfde grootte */
  .velos-adsonly-page .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
  }
  
  /* TRUST ITEMS — naast elkaar in plaats van onder elkaar */
  .velos-adsonly-page .hero-trust-labels {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }
  
  /* BUTTONS — gecentreerd, zichtbaar */
  .velos-adsonly-page .hero-buttons {
    justify-content: center;
  }
  
  /* Floating cards positie */
  .velos-adsonly-page .floating-stat-card { top: -10px; left: -10px; }
  .velos-adsonly-page .graph-card { right: -10px; bottom: -10px; width: 200px; }
  
  /* FAQ mobile */
  .velos-adsonly-page .velos-faq-header { padding: 16px 18px; gap: 12px; }
  .velos-adsonly-page .velos-faq-num { font-size: 26px; min-width: 40px; }
  .velos-adsonly-page .velos-faq-divider { display: none; }
  .velos-adsonly-page .velos-faq-q { font-size: 20px; min-height: auto; }
  .velos-adsonly-page .velos-faq-toggle { width: 34px; height: 34px; min-width: 34px; }
  .velos-adsonly-page .velos-faq-toggle span:first-child { width: 10px; }
  .velos-adsonly-page .velos-faq-toggle span:last-child { height: 10px; }
  .velos-adsonly-page .velos-faq-content { padding: 0 18px 18px 18px; }
  .velos-adsonly-page .velos-faq-a { font-size: 14px; }
  
  /* Dream cards content */
  .velos-adsonly-page .dream-card-content { padding: 28px 24px; }
  .velos-adsonly-page .dream-title { font-size: 18px; }
  
  /* Results stat cards */
  .velos-adsonly-page .results-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .velos-adsonly-page .results .stat-card { padding: 20px 16px; }
  .velos-adsonly-page .results-stats .stat-card .stat-card-value { font-size: 32px; }
  .velos-adsonly-page .results-stats .stat-card .stat-card-label { font-size: 12px; }
  
  /* Final CTA trust */
  .velos-adsonly-page .final-cta-trust { gap: 16px; }
  .velos-adsonly-page .final-cta .trust-item { font-size: 13px; }
}

/* --- SMALL MOBILE (≤600px) --- */
@media (max-width: 600px) {
  .velos-adsonly-page .section-title,
  .velos-adsonly-page .final-cta-title { font-size: 36px; }
  
  /* Hero title nog steeds groot, maar net iets kleiner zodat 'ie past */
  .velos-adsonly-page .hero-title {
    font-size: clamp(44px, 12vw, 64px) !important;
  }
  
  /* Trust items: blijven horizontaal, gap kleiner */
  .velos-adsonly-page .hero-trust-labels {
    gap: 10px 14px;
  }
  
  /* Hero trust items zelf iets kleiner */
  .velos-adsonly-page .hero-trust-item {
    font-size: 14px;
  }
  
  .velos-adsonly-page .hero-trust-item svg {
    width: 16px;
    height: 16px;
  }
  
  /* Buttons full-width op klein mobile */
  .velos-adsonly-page .hero-buttons { flex-direction: column; align-items: center; }
  .velos-adsonly-page .hero-buttons .cta-button,
  .velos-adsonly-page .hero-buttons .velos-tech-btn { width: 100%; max-width: 320px; justify-content: center; }
  
  /* Final CTA buttons */
  .velos-adsonly-page .final-cta-buttons { flex-direction: column; align-items: center; }
  .velos-adsonly-page .final-cta-trust { flex-direction: column; gap: 12px; }
  
  /* Process: 1 col */
  .velos-adsonly-page .process-timeline { grid-template-columns: 1fr; }

  /* Floating cards: stacked onder foto */
  .velos-adsonly-page .floating-stat-card,
  .velos-adsonly-page .graph-card { 
    position: relative; 
    top: auto; left: auto; right: auto; bottom: auto; 
    width: 100%; 
    margin-top: 16px; 
  }
  .velos-adsonly-page .hero-visual { flex-direction: column; }

  /* Results stat cards: 1 col */
  .velos-adsonly-page .results-stats { grid-template-columns: 1fr; gap: 12px; }
  .velos-adsonly-page .results .stat-card { padding: 24px 20px; }
  .velos-adsonly-page .results-stats .stat-card .stat-card-value { font-size: 36px; }
  .velos-adsonly-page .results-stats .stat-card .stat-card-label { font-size: 13px; }
}

/* ============================================================
   VELOS FAQ RESPONSIVE OVERRIDE — ADVERTENTIEBEHEER PAGE
   Paste helemaal onderaan de CSS
   Doel: FAQ tablet/mobile gelijk trekken met homepage FAQ styling
   ============================================================ */

/* ---------- TABLET: ≤1024px ---------- */
@media (max-width: 1024px) {
  .velos-adsonly-page .velos-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .velos-adsonly-page .velos-faq-column {
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 18px 22px !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-family: var(--font-titles, 'Anton', sans-serif) !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    min-width: 44px !important;
    color: var(--velos-maroon-light, #a41917) !important;
  }

  .velos-adsonly-page .velos-faq-divider {
    display: none !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-family: var(--font-supporting, 'Playfair Display', Georgia, serif) !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: 0px !important;
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .velos-adsonly-page .velos-faq-content {
    padding: 0 22px 22px 22px !important;
  }

  .velos-adsonly-page .velos-faq-a {
    font-family: var(--font-body, 'Crimson Pro', Georgia, serif) !important;
    font-size: 14.5px !important;
    line-height: 1.7 !important;
    color: rgba(237, 224, 212, 0.88) !important;
  }
}

/* ---------- MOBILE: ≤768px ---------- */
@media (max-width: 768px) {
  .velos-adsonly-page .faq {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .velos-adsonly-page .velos-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
  }

  .velos-adsonly-page .velos-faq-column {
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-card {
    border-radius: 14px !important;
  }

  .velos-adsonly-page .velos-faq-glass {
    border-radius: 13px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 16px 18px !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-family: var(--font-titles, 'Anton', sans-serif) !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    min-width: 40px !important;
    letter-spacing: 1px !important;
    color: var(--velos-maroon-light, #a41917) !important;
  }

  .velos-adsonly-page .velos-faq-num::before {
    width: 42px !important;
    height: 42px !important;
  }

  .velos-adsonly-page .velos-faq-card:hover .velos-faq-num::before,
  .velos-adsonly-page .velos-faq-card.active .velos-faq-num::before {
    width: 52px !important;
    height: 52px !important;
  }

  .velos-adsonly-page .velos-faq-divider {
    display: none !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-family: var(--font-supporting, 'Playfair Display', Georgia, serif) !important;
    font-size: 16.5px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: 0px !important;
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }

  .velos-adsonly-page .velos-faq-toggle span:first-child {
    width: 10px !important;
    height: 2px !important;
  }

  .velos-adsonly-page .velos-faq-toggle span:last-child {
    width: 2px !important;
    height: 10px !important;
  }

  .velos-adsonly-page .velos-faq-content {
    padding: 0 18px 18px 18px !important;
  }

  .velos-adsonly-page .velos-faq-content::before {
    margin-bottom: 14px !important;
  }

  .velos-adsonly-page .velos-faq-a {
    font-family: var(--font-body, 'Crimson Pro', Georgia, serif) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: rgba(237, 224, 212, 0.88) !important;
  }
}

/* ---------- SMALL MOBILE: ≤600px ---------- */
@media (max-width: 600px) {
  .velos-adsonly-page .velos-faq-header {
    padding: 15px 16px !important;
    gap: 11px !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-size: 24px !important;
    min-width: 36px !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-size: 15.5px !important;
    line-height: 1.35 !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }

  .velos-adsonly-page .velos-faq-a {
    font-size: 13.8px !important;
  }
}

/* ---------- EXTRA SMALL: ≤420px ---------- */
@media (max-width: 420px) {
  .velos-adsonly-page .faq {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 14px 14px !important;
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-size: 22px !important;
    min-width: 32px !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-size: 15px !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .velos-adsonly-page .velos-faq-content {
    padding: 0 14px 16px 14px !important;
  }
}

/* ============================================================
   VELOS ADSONLY FAQ — HOMEPAGE RESPONSIVE SIZE MATCH
   Paste helemaal onderaan de CSS

   Doel:
   - FAQ tablet/mobile gelijk aan homepage FAQ
   - Vraagtekst iets groter dan huidige adsonly versie
   - Playfair Display behouden
   - Maroon kleuren behouden
   ============================================================ */


/* ========================
   TABLET LANDSCAPE — ≤1200px
   ======================== */
@media (max-width: 1200px) {
  .velos-adsonly-page .velos-faq-grid {
    gap: 18px !important;
  }

  .velos-adsonly-page .velos-faq-column {
    gap: 14px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 18px 22px !important;
    gap: 18px !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-family: var(--font-supporting, 'Playfair Display', Georgia, serif) !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.25px !important;
    text-transform: none !important;
  }
}


/* ========================
   TABLET PORTRAIT — ≤1024px
   Homepage FAQ match
   ======================== */
@media (max-width: 1024px) {
  .velos-adsonly-page .velos-faq-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .velos-adsonly-page .velos-faq-column {
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 18px 20px !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-family: var(--font-titles, 'Anton', sans-serif) !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    min-width: 44px !important;
    line-height: 1 !important;
    color: var(--velos-maroon-light, #a41917) !important;
  }

  .velos-adsonly-page .velos-faq-divider {
    display: none !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-family: var(--font-supporting, 'Playfair Display', Georgia, serif) !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.25px !important;
    text-transform: none !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .velos-adsonly-page .velos-faq-content {
    padding: 0 20px 22px 20px !important;
  }

  .velos-adsonly-page .velos-faq-a {
    font-family: var(--font-body, 'Crimson Pro', Georgia, serif) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: rgba(237, 224, 212, 0.88) !important;
  }
}


/* ========================
   MOBILE — ≤768px
   Homepage FAQ match
   ======================== */
@media (max-width: 768px) {
  .velos-adsonly-page .faq {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .velos-adsonly-page .velos-faq-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .velos-adsonly-page .velos-faq-column {
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-card {
    border-radius: 14px !important;
  }

  .velos-adsonly-page .velos-faq-glass {
    border-radius: 13px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 16px 18px !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-family: var(--font-titles, 'Anton', sans-serif) !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    min-width: 40px !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
    color: var(--velos-maroon-light, #a41917) !important;
  }

  .velos-adsonly-page .velos-faq-num::before {
    width: 40px !important;
    height: 40px !important;
  }

  .velos-adsonly-page .velos-faq-card:hover .velos-faq-num::before,
  .velos-adsonly-page .velos-faq-card.active .velos-faq-num::before {
    width: 52px !important;
    height: 52px !important;
  }

  .velos-adsonly-page .velos-faq-divider {
    display: none !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-family: var(--font-supporting, 'Playfair Display', Georgia, serif) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.25px !important;
    text-transform: none !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    color: rgba(255, 255, 255, 0.92) !important;
    overflow-wrap: anywhere !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    flex-shrink: 0 !important;
  }

  .velos-adsonly-page .velos-faq-toggle span:first-child {
    width: 10px !important;
    height: 2px !important;
  }

  .velos-adsonly-page .velos-faq-toggle span:last-child {
    width: 2px !important;
    height: 10px !important;
  }

  .velos-adsonly-page .velos-faq-content {
    padding: 0 18px 18px 18px !important;
  }

  .velos-adsonly-page .velos-faq-content::before {
    margin-bottom: 14px !important;
  }

  .velos-adsonly-page .velos-faq-a {
    font-family: var(--font-body, 'Crimson Pro', Georgia, serif) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: rgba(237, 224, 212, 0.88) !important;
  }
}


/* ========================
   SMALL MOBILE — ≤600px
   Homepage FAQ match
   ======================== */
@media (max-width: 600px) {
  .velos-adsonly-page .velos-faq-grid {
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-column {
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 15px 16px !important;
    gap: 11px !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-size: 24px !important;
    min-width: 36px !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-size: 16px !important;
    line-height: 1.35 !important;
    letter-spacing: -0.25px !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }

  .velos-adsonly-page .velos-faq-content {
    padding: 0 16px 18px 16px !important;
  }

  .velos-adsonly-page .velos-faq-a {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
}


/* ========================
   EXTRA SMALL MOBILE — ≤480px
   Homepage FAQ match
   ======================== */
@media (max-width: 480px) {
  .velos-adsonly-page .faq {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .velos-adsonly-page .velos-faq-header {
    padding: 14px 14px !important;
    gap: 10px !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-size: 22px !important;
    min-width: 34px !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-size: 15.5px !important;
    line-height: 1.35 !important;
    letter-spacing: -0.25px !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .velos-adsonly-page .velos-faq-content {
    padding: 0 14px 16px 14px !important;
  }

  .velos-adsonly-page .velos-faq-a {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
  }
}


/* ========================
   TINY MOBILE — ≤380px
   Homepage FAQ match
   ======================== */
@media (max-width: 380px) {
  .velos-adsonly-page .velos-faq-header {
    padding: 13px 12px !important;
    gap: 9px !important;
  }

  .velos-adsonly-page .velos-faq-num {
    font-size: 20px !important;
    min-width: 30px !important;
  }

  .velos-adsonly-page .velos-faq-q {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .velos-adsonly-page .velos-faq-toggle {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }
}

/* ============================================================
   ADVERTENTIEBEHEER — REVIEW FONT SIZE MOBILE OVERRIDE
   Doel: testimonial/review tekst compacter op mobile
   Paste helemaal onderaan de CSS
   ============================================================ */

@media (max-width: 1024px) {
  .velos-adsonly-page .testimonial-text {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 768px) {
  .velos-adsonly-page .testimonial-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 600px) {
  .velos-adsonly-page .testimonial-text {
    font-size: 15.5px !important;
    line-height: 1.58 !important;
  }
}

@media (max-width: 420px) {
  .velos-adsonly-page .testimonial-text {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}/* End custom CSS */