:root {
  --ek-orange: #ff6a00;
  --ek-dark: #111111;
  --ek-text: #333333;
  --ek-bg: #ffffff;
  --ek-bg-muted: #fafafa;
  --ek-radius-pill: 999px;
}

/* Basis */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ek-bg);
  color: var(--ek-text);
}

body {
  min-height: 100vh;
}

main {
  min-height: 100vh;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 0;
}

.hero-inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 4rem;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--ek-orange);
  margin: 0 0 1.25rem;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

/* Button */
.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ek-radius-pill);
  border: none;
  background: var(--ek-dark);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.hero-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 3px;
  background: #ffffff;
  color: #0a66c2;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Video */
.hero-video {
  margin-top: 1.5rem;
}

.hero-video video {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hero visual / kompas */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-stack {
  position: relative;
  width: min(320px, 70vw);
  aspect-ratio: 1 / 1;
  height: auto;
}

.img-stack .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* BLOKKEN */
.blocks-section {
  padding: 0 1.5rem 4.5rem;
}

.blocks-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.blocks-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blocks-subtitle {
  margin: 0 0 2.5rem;
  color: #555555;
  max-width: 36rem;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.block {
  background: var(--ek-bg-muted);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.block-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ek-orange);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.block-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.block-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555555;
}

/* FOOTER */
footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777777;
}

footer a {
  color: inherit;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .blocks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .block {
    padding: 1.3rem 1.2rem;
  }
}
