:root {
  --yellow: #F4EF1B;
  --black: #111111;
  --red: #E8231C;
  --white: #ffffff;
  --grey: #555555;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  background: var(--yellow);
  padding: 60px 0 70px;
  text-align: center;
}

.hero .logo {
  max-width: 220px;
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.hero p.sub {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 0 #a5140f;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(2px); box-shadow: 0 3px 0 #a5140f; }

section { padding: 70px 0; }

h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 30px;
}

h2.center { text-align: center; }

.video-uitleg { text-align: center; }
.video-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.story p { max-width: 760px; margin: 0 auto 18px; font-size: 17px; }
.story { text-align: left; }
.story .lead {
  font-size: 19px;
  font-weight: 700;
  max-width: 760px;
  margin: 0 auto 24px;
}

.benefits {
  background: var(--black);
  color: var(--white);
}
.benefits h2 { color: var(--yellow); }
.benefits ol {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: item;
}
.benefits li {
  counter-increment: item;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #333;
  font-size: 18px;
  font-weight: 600;
}
.benefits li::before {
  content: counter(item);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefits .footnote {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

.product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 800px) {
  .product { grid-template-columns: 1fr; }
}
.product ul { padding-left: 20px; }
.product li { margin-bottom: 10px; font-size: 17px; }
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.photo-row img {
  border-radius: 8px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.order {
  background: var(--yellow);
  text-align: center;
}
.order .price {
  font-size: 56px;
  font-weight: 900;
  margin: 10px 0 6px;
}
.order .price small { font-size: 20px; font-weight: 700; display: block; }
.order form {
  max-width: 420px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.order input {
  padding: 16px;
  font-size: 16px;
  border: 2px solid var(--black);
  border-radius: 6px;
}
.order .note {
  font-size: 13px;
  color: #444;
  margin-top: 14px;
}
.error-box {
  background: #fff3f3;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 14px;
  border-radius: 6px;
  max-width: 420px;
  margin: 0 auto 16px;
  font-weight: 600;
}

footer {
  background: var(--black);
  color: #999;
  text-align: center;
  padding: 30px 0;
  font-size: 13px;
}
footer a { color: var(--yellow); text-decoration: none; }

.status-box {
  max-width: 500px;
  margin: 60px auto;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
}
.status-paid { background: #eaffea; border: 2px solid #2e7d32; }
.status-open { background: #fff8e1; border: 2px solid #f9a825; }
.status-failed { background: #ffebee; border: 2px solid var(--red); }
