:root {
  --video-max-width: 1000px;
  --video-padding-y: 90px;

  --frame-radius: 18px;
  --frame-border: rgba(255, 255, 255, 0.18);
  --frame-bg: rgba(114, 114, 114, 0.1);
  --topbar-bg: rgba(0, 0, 0, 0.08);
}

.video-section {
  padding: var(--video-padding-y) 24px;
  background-color: white;
  color: black;
}

.video-inner {
  max-width: var(--video-max-width);
  margin: 0 auto;
  text-align: center; /* ✅ horizontaal centreren van titel + tekst */
}

.video-title {
  font-family: "knewave", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #0077B6;
}

.video-text {
  font-family: "outfit", system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  opacity: 0.9;
  margin: 0 auto 28px;
  max-width: 70ch;
}

.browser-frame {
  border: 1px solid var(--frame-border);
  background: var(--frame-bg);
  border-radius: var(--frame-radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.browser-top {
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--frame-border);
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  opacity: 0.95;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* ✅ responsive */
  background: rgba(0, 0, 0, 0.25);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}