:root {
  --bg: #071521;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, .82);

  --panel: rgba(0, 0, 0, .40);
  --border: rgba(255, 255, 255, .16);

  --accent: rgba(50, 220, 160, 1);
  --accent2: rgba(90, 180, 255, 1);

  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 70% 0%, rgba(100, 255, 200, .10), transparent 55%),
    radial-gradient(900px 500px at 20% 40%, rgba(80, 180, 255, .10), transparent 60%),
    var(--bg);
  color: var(--fg);
}

.wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .30);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  cursor: pointer;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 18px rgba(50, 220, 160, .35);
}

.brand-name {
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 18px;
}

.brand-tag {
  opacity: .78;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--fg);
  text-decoration: none;
  opacity: .9;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-link:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.nav-link.active {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .16);
}

.nav-cta {
  background: rgba(50, 220, 160, .18);
  border-color: rgba(50, 220, 160, .30);
}

/* ===== HERO ===== */

.hero {
  padding: 22px 0 26px;
}

.poster-frame {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
  background: rgba(0, 0, 0, .15);
}

.poster {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* ===== SECTIONS ===== */

.section {
  padding: 34px 0;
}

.section-soft {
  padding: 26px 0;
}

.section-title {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: .2px;
}

.section-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.45;
}

/* ===== FEATURE CARDS ===== */

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .30);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== PRODUCT ===== */

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.product-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  align-items: center;

  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 14px;
}

.product-block.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.product-block.reverse .product-media {
  order: 2;
}

/* ✅ DEZE IS DE ENIGE product-media DEFINITIE */
.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);

  /* vaste verhouding = altijd strak */
  aspect-ratio: 16 / 9;
}

/* afbeelding vult altijd het kader */
.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* placeholder netjes */
.media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, .85);
}

.product-media.media-fallback .media-placeholder {
  display: grid;
}

.product-text h3 {
  margin: 0 0 8px;
}

.product-text p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.4;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .88);
}

.bullets li {
  margin: 6px 0;
}

/* ===== BANNER ===== */

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(90deg, rgba(50, 220, 160, .14), rgba(90, 180, 255, .10));
}

.banner-title {
  margin: 0 0 6px;
}

.banner-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  max-width: 700px;
}

/* ===== FAQ ===== */

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.faq details {
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 10px 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq-body {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== FORM ===== */

.form-card {
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 16px;
  max-width: 760px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .30);
}

form label {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: var(--fg);
  outline: none;
  font-size: 15px;
}

input:focus,
textarea:focus {
  border-color: rgba(50, 220, 160, .50);
  box-shadow: 0 0 0 4px rgba(50, 220, 160, .12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.small-note {
  opacity: .7;
  font-size: 13px;
  margin-top: 10px;
}

/* ===== CONTACT ===== */

.contact-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .28);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-label {
  font-weight: 800;
  opacity: .85;
  margin-bottom: 6px;
}

.contact-big {
  font-size: 22px;
  font-weight: 900;
  color: #bfffe8;
  text-decoration: none;
}

.contact-big:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 6px;
  color: var(--muted);
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .25);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  opacity: .9;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .grid3 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-block,
  .product-block.reverse {
    grid-template-columns: 1fr;
  }

  .product-block.reverse .product-media {
    order: 0;
  }
}