/* ===== ACHTERGROND OVERRIDE — FRISSER BLAUW ===== */
:root {
  --bg: #102B48;
  --bg-light: #13304E;
  --bg-card: #1A3A5C;
  --bg-card-hover: #1F4268;
}

/* Hero direct targeten — jpg-overlay dimmen zodat achtergrondkleur doorkomt */
.vv-hero {
  background: #102B48;
}

.vv-hero .hero__grid {
  opacity: 0.12;
}

/* ===== INSTANT WONINGVIDEO — PAGE SPECIFIC STYLES ===== */

/* Hero variant */
.vv-hero .hero__content {
  padding-bottom: 80px;
}

.vv-hero .hero__tag {
  background: rgba(42, 127, 221, 0.1);
  border: 1px solid rgba(42, 127, 221, 0.25);
  border-radius: 100px;
  display: inline-block;
  padding: 6px 20px;
  margin-bottom: 28px;
  font-size: 0.8rem;
}

.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.vv-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font);
  font-weight: 500;
}

.vv-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.vv-badge__dot--teal {
  background: var(--teal-light);
}

/* ===== DEMO VIDEO'S ===== */
.vv-demos { background: var(--bg-light); }

.vv-demos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vv-video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.vv-video-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vv-video-card__player {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.vv-video-card__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vv-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0D1B2E 0%, #111E30 60%, #152538 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.vv-video-placeholder__icon {
  width: 64px;
  height: 64px;
  background: rgba(42, 127, 221, 0.1);
  border: 1px solid rgba(42, 127, 221, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  opacity: 0.6;
}

.vv-video-placeholder__icon svg {
  width: 28px;
  height: 28px;
  padding-left: 3px;
}

.vv-video-placeholder span {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: var(--font);
}

.vv-video-card__label {
  padding: 24px 28px;
}

.vv-video-card__badge {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(42, 127, 221, 0.1);
  border: 1px solid rgba(42, 127, 221, 0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.vv-video-card__badge--teal {
  color: var(--teal-light);
  background: rgba(26, 144, 112, 0.1);
  border-color: rgba(26, 144, 112, 0.2);
}

.vv-video-card__label h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.vv-video-card__label p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== STEPS — 4 STAPPEN VARIANT ===== */
.vv-steps .steps__timeline {
  padding: 0 calc(100% / 8);
}

.vv-steps .steps__nodes {
  left: calc(100% / 8);
  right: calc(100% / 8);
}

.vv-steps .steps__timeline.animated .steps__node:nth-child(4) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.6s;
}

.vv-steps .steps__timeline.animated .steps__node:nth-child(4) .steps__node-pulse {
  animation-delay: 1.8s;
}

.vv-steps__video {
  max-width: 920px;
  margin: 0 auto 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border);
}

.vv-steps__video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.vv-steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.vv-steps__grid .step-card {
  max-width: 210px;
  padding: 22px 18px;
}

.vv-steps__grid .step-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.vv-steps__grid .step-card__icon svg {
  width: 20px;
  height: 20px;
}

.vv-steps__grid .step-card__number {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.vv-steps__grid .step-card__title {
  font-size: 1rem;
  margin-bottom: 6px;
}

.vv-steps__grid .step-card__desc {
  font-size: 0.82rem;
  line-height: 1.5;
}

.vv-steps__grid .step-card__arrow svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 700px) {
  .vv-steps__video {
    margin-bottom: 36px;
  }
}

/* ===== VIDEO TYPES ===== */
.vv-types { background: var(--bg-light); }

.vv-types__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.vv-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vv-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vv-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.vv-type-card--teal::before {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.vv-type-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.vv-type-card:hover::before { opacity: 1; }

.vv-type-card__badge {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(42, 127, 221, 0.1);
  border: 1px solid rgba(42, 127, 221, 0.2);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.vv-type-card__badge--teal {
  color: var(--teal-light);
  background: rgba(26, 144, 112, 0.1);
  border-color: rgba(26, 144, 112, 0.2);
}

.vv-type-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(42, 127, 221, 0.1);
  border: 1px solid rgba(42, 127, 221, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
}

.vv-type-card__icon--teal {
  background: rgba(26, 144, 112, 0.1);
  border-color: rgba(26, 144, 112, 0.2);
  color: var(--teal-light);
}

.vv-type-card__icon svg { width: 26px; height: 26px; }

.vv-type-card h3 {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.vv-type-card__sub {
  font-size: 0.85rem;
  font-family: var(--font);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.vv-type-card > p:not(.vv-type-card__sub) {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.vv-type-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vv-type-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.vv-type-card__list li svg {
  width: 16px;
  height: 16px;
  color: var(--teal-light);
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.vv-pricing { background: var(--bg); }

.vv-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.vv-price-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.vv-price-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.vv-price-card__header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.vv-price-card__label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 8px;
}

.vv-price-card__name {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.vv-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.vv-price-card__euro {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
}

.vv-price-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vv-price-card__note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.vv-price-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.vv-price-card__features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text);
}

.vv-price-card__features li svg {
  width: 15px;
  height: 15px;
  color: var(--teal-light);
  flex-shrink: 0;
}

.vv-pricing__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font);
}

.vv-pricing__guarantee svg {
  width: 20px;
  height: 20px;
  color: var(--teal-light);
  flex-shrink: 0;
}

/* ===== OPTIONEEL LABEL ===== */
.vv-optional {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ===== HERO BADGE HIGHLIGHT ===== */
.vv-badge--highlight {
  background: rgba(42, 127, 221, 0.1);
  border-color: rgba(42, 127, 221, 0.3);
  color: var(--blue-light);
}

/* ===== INTRO BANNER OP PRICING CARD ===== */
.vv-price-card__intro-banner {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  background: rgba(26, 144, 112, 0.1);
  border: 1px solid rgba(26, 144, 112, 0.25);
  border-radius: 6px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.vv-price-card__period--strike {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1rem;
}

/* ===== PROMO BANNER (index.html) ===== */
.vv-promo { background: var(--bg-light); }

.vv-promo__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.vv-promo__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal-light));
}

.vv-promo__tag {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 16px;
}

.vv-promo__title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.vv-promo__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.vv-promo__desc strong { color: var(--blue-light); }

.vv-promo__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vv-promo__icon {
  width: 96px;
  height: 96px;
  background: rgba(42, 127, 221, 0.08);
  border: 1px solid rgba(42, 127, 221, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.vv-promo__icon svg { width: 48px; height: 48px; }

.vv-promo__badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.vv-promo__badge {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .vv-promo__card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 36px;
  }
  .vv-promo__visual { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .vv-promo__card { padding: 32px 24px; }
}

/* ===== FORM SELECT ===== */
.form-group select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234A6A8A' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
}

.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .vv-demos__grid { grid-template-columns: 1fr; }
  .vv-types__grid { grid-template-columns: 1fr; }
  .vv-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .vv-steps__grid {
    flex-direction: column;
    align-items: center;
  }
  .vv-steps__grid .step-card {
    max-width: 100%;
  }
  .vv-steps__grid .step-card__arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

@media (max-width: 600px) {
  .vv-pricing__grid { grid-template-columns: 1fr; }
  .hero__badges { gap: 8px; }
  .vv-badge { font-size: 0.78rem; padding: 5px 12px; }
  .vv-type-card { padding: 32px 24px; }
  .vv-type-card h3 { font-size: 1.35rem; }
}

.vv-demos__more { text-align: center; margin-top: 2rem; }
