@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Crank8";
  src: url("../Fonts/Crank8Test-PlusTwo.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@media (min-width: 1920px) {
  :root {
    --grid-max-width: 1648px;
  }
}

:root {
  --primary-color: #ed8b00;
  --primary-color-hover: #b36a00;
  --secondary-color: #f1c07a;
  --primary-color-bg: #FCEED9;
  --red-color: #d73762;
  --red-color-hover: #a42b4d;
  --red-color-bg: rgba(215, 55, 98, 0.15);
  --blue-color: #1d8fe3;
  --blue-color-bg: rgba(29, 143, 227, 0.15);
  --green-color: #009e91;
  --green-color-hover: #007a6e;
  --green-color-bg: rgba(0, 158, 145, 0.15);
  --bg-color: #f7f7f7;
  --bg-input: #f0f0f0;
  --gray-bg: #ececec;
  --gray: #555555;
  --white: #ffffff;
  --black: #000000;
  --gray-info: #dfdfdf;
  --layout-max-width: 1536px;
  --grid-gap: 2rem;
  --grid-padding-x: 2.25rem;
  --title-font: "Crank8", sans-serif;
  --paragraph-font: "Roboto", sans-serif;
  --svg-hero-variant-1-mask: url("data:image/svg+xml,%3Csvg width='1440' height='74' viewBox='0 0 1440 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1440 74V66.4567C1440 66.4567 1336.74 0 1102.5 0C868.256 0 710.995 66.4567 444.332 66.4567C286.474 66.4567 234.879 52.5015 151.819 52.5015C68.7581 52.5015 0 66.4567 0 66.4567V74H1440Z' fill='black'/%3E%3C/svg%3E");
  --duration-fast: 0.1s;
  --layout-spacing-gap: 5rem;
  --paragraph-spacing-gap: 5rem;
  --h1-font-size: 55px;
  --h2-font-size: 35px;
  --h3-font-size: 20px;
  --h4-font-size: 18px;
  --sub-font-size: 20px;
  --btn-font-size: 16px;
  --h3-padding-bottom: 10px;
  --size-circle: 80px;
  --font-in-circle: 40px;
  --border-radius-items: 16px;
  --border-radius-input: 5px;
  --font-badge: 13px;
  --max-content-width: 1250px;
  --padding-around-module: 36px;
  --padding-around-module-small: calc(var(--padding-around-module) / 1.5);
}

*,
::before,
::after {
  box-sizing: border-box;
}

h1 {
  font-family: var(--title-font);
  color: var(--black);
  line-height: 1.25;
  font-size: var(--h2-font-size);
  margin-block-end: calc(var(--h2-font-size) * 0.1);
}

h2 {
  font-family: var(--title-font);
  text-align: center;
  font-size: var(--h2-font-size);
  margin-block-end: calc(var(--h2-font-size) * 0.1);
}

h3,
th {
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
}

h4 {
  font-family: var(--title-font);
  font-size: var(--h4-font-size);
  color: var(--primary-color);
  margin-block-end: calc(var(--h4-font-size) * 0.5);
}

p,
a,
li,
span,
label,
td {
  font-family: var(--paragraph-font);
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.5;
}

em {
  font-style: italic;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
    flex: 1;
}

.body-white {
  background-color: var(--white);
}

strong {
  font-weight: 700;
}

.body-gray {
  background-color: var(--bg-color);
}

.sectie-sub {
  font-size: var(--sub-font-size);
  text-align: center;
  margin-block-end: var(--paragraph-spacing-gap);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
}

.paragraph:has(+ .paragraph) {
  margin-block-end: var(--paragraph-spacing-gap);
}

.paragraph {
  height: fit-content;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 30px;
  gap: 0.75rem;
  border-width: 2px;
  border-color: var(--green-color);
  border-style: solid;
  border-radius: 10px/50%;
  background-color: var(--green-color);
  color: var(--white);
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--title-font);
  letter-spacing: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition:
    border-color var(--duration-fast),
    background-color var(--duration-fast),
    color var(--duration-fast);
  cursor: pointer !important;
  margin-top: 2.5rem;
}

.btn-primary:hover {
  background-color: var(--green-color-hover);
  border-color: var(--green-color-hover);
}

.btn-primary-input {
  display: inline-flex;
  align-items: center;
  padding: 10px 40px;
  gap: 0.75rem;
  border-radius: var(--border-radius-input);
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-family: var(--paragraph-font);
  font-size: var(--btn-font-size);
  line-height: 1.5;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition:
    background-color var(--duration-fast),
    color var(--duration-fast);
  cursor: pointer !important;
  border: none;
}

.btn-primary-input:hover {
  background-color: var(--primary-color-hover);
}

.content-wrapper > div {
  margin-block-start: var(--layout-spacing-gap);
  display: grid;
  gap: var(--layout-spacing-gap);
}

.bg-color {
  background-color: var(--bg-color);
  width: 100%;
}

.btn a {
  text-decoration: none;
  color: var(--white);
}

.box-shadow {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
}

.fout-box {
  background-color: var(--red-color-bg);
  color: var(--red-color);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-family: var(--paragraph-font);
}

.margin-top-3rem {
  margin-top: 3rem !important;
}

/* =====================
   PROGRESS BALK
===================== */
.progress-stap {
  text-align: center;
  position: absolute;
  top: 10px;
  max-width: var(--max-content-width);
  width: calc(100% - var(--grid-padding-x) * 2);
}

.progress-stap p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.4rem;
}

.progress-stap__balk {
  height: 3px;
  background-color: #e5e5e5;
  border-radius: 2px;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.progress-stap__balk--klaar {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-stap__balk--bezig {
  height: 100%;
  background-color: var(--primary-color-bg);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-stap__balken {
  display: grid;
  gap: 4px;
  margin-inline: auto;
  max-width: var(--max-content-width);
  height: 3px;
}

.progress-stap__balken--2 {
  grid-template-columns: repeat(2, 1fr);
}

.progress-stap__balken--3 {
  grid-template-columns: repeat(3, 1fr);
}

.progress-stap__balken--4 {
  grid-template-columns: repeat(4, 1fr);
}

.progress-stap__balken--5 {
  grid-template-columns: repeat(5, 1fr);
}

.progress-stap__balken--6 {
  grid-template-columns: repeat(6, 1fr);
}

.progress-stap__balken--7 {
  grid-template-columns: repeat(7, 1fr);
}

.progress-stap__balken--8 {
  grid-template-columns: repeat(8, 1fr);
}

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

#hero {
  height: 515px;
  position: relative;
  background-color: #f7f7f7;
  overflow: hidden;
}

/* SVG wave onderaan hero */
#hero::after {
  z-index: 5;
  position: absolute;
  inset: 0;
  background-color: var(--white);
  content: "";
  -webkit-mask: var(--svg-hero-variant-1-mask);
  mask: var(--svg-hero-variant-1-mask);
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  bottom: -1px;
  pointer-events: none;
  user-select: none;
}

/* Gradient fade links van de afbeelding */
#hero::before {
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  height: 100%;
  right: calc(35% - 200px);
  background-image: linear-gradient(
    -90deg,
    rgba(247, 247, 247, 0) 0%,
    rgb(247, 247, 247) 100%
  );
  content: "";
  pointer-events: none;
}

.hero-content {
  padding: 0;
}

.hero-tekst {
  z-index: 2;
  position: relative;
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding: 3.75rem var(--grid-padding-x);
  font-size: var(--sub-font-size);
}

@media (min-width: 1440px) {
  .hero-tekst-inner {
    max-width: 56%;
  }
}

.hero-tekst h1 {
  font-family: var(--title-font);
  color: var(--primary-color);
  line-height: 1.25;
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
}

/* Afbeelding rechts */
.responsive-img {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 1200px) {
  .responsive-img {
    display: block;
  }
}

/* =====================
   LAYOUT GRID
===================== */

.layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding-inline: var(--grid-padding-x);
  width: 100%;
}

.layout > .full-grid {
  grid-column: 1 / 13;
}

.layout--fivecol-20-20-20-20-20 {
  grid-template-columns: repeat(5, 1fr);
}

.layout--fourcol-25-25-25-25 {
  grid-template-columns: repeat(4, 1fr);
}

.layout--threecol-33-34-33 {
  grid-template-columns: repeat(3, 1fr);
}

.layout--twocol-50-50 {
  grid-template-columns: repeat(2, 1fr);
}

.layout--fivecol-20-20-20-20-20 > *,
.layout--fourcol-25-25-25-25 > *,
.layout--threecol-33-34-33 > *,
.layout--twocol-50-50 > * {
  grid-column: auto;
}

.layout .layout {
  max-width: 100%;
  padding-inline: 0;
}

.center__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.padding-around {
  padding: calc(var(--paragraph-spacing-gap) * 1.5) var(--paragraph-spacing-gap);
}

.grid-layout {
  display: grid;
  gap: calc(var(--grid-gap) / 2);
}

.color-primary {
  color: var(--primary-color) !important;
}

.color-green {
  color: var(--green-color) !important;
}

.color-blue {
  color: var(--blue-color) !important;
}

.color-red {
  color: var(--red-color) !important;
}

.primary-bg {
  background-color: var(--primary-color-bg) !important;
}

.green-bg {
  background-color: var(--green-color-bg) !important;
}

.blue-bg {
  background-color: var(--blue-color-bg) !important;
}

.red-bg {
  background-color: var(--red-color-bg) !important;
}

/* =====================
   WAAROM SECTIE
===================== */

.waarom-sectie,
.modules-sectie {
  margin-bottom: var(--layout-spacing-gap);
}

.waarom-sectie .layout__item {
  padding: 40px 20px;
  border-radius: var(--border-radius-items);
  height: 100%;
  margin: auto;
  text-align: center;
  align-items: center;
  width: 100%;
}

.waarom-sectie .layout__item svg {
  margin: auto;
  width: 60px;
  flex-shrink: 0;
}

.waarom-sectie .layout__item h3 {
  padding-top: 15px;
}

.waarom-sectie .layout__item p {
  padding-top: 10px;
}

/* =====================
   HOE WERKT HET SECTIE
===================== */

.stap-nr {
  font-size: var(--font-in-circle);
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
  width: var(--size-circle);
  height: var(--size-circle);
  position: relative;
  margin: auto;
  margin-bottom: calc(var(--size-circle) * 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stap h3,
.timeline-content h3 {
  padding-bottom: var(--h3-padding-bottom);
}

.stap-nr p,
.stap,
.stap-arrow {
  text-align: center;
}

.stap-arrow {
  margin-top: calc(var(--size-circle) * 0.5);
  position: relative;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.stap-arrow svg {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* =====================
   MODULES SECTIE
===================== */
.module-pill,
.module-pill-2 {
  display: flex;
  flex-direction: row;
  padding: 10px 15px;
  border-radius: calc(var(--border-radius-items) * 0.5);
  background-color: var(--white);
}

.module-pill svg {
  width: 35px;
}

.module-pill p,
.module-pill-2 p,
.module-pill-2 h3 {
  padding-left: 10px;
  margin: auto;
  margin-left: auto;
  text-align: left;
  margin-left: 0;
}

/* =====================
   CTA SECTIE
===================== */
.cta-sectie p,
.cta-sectie a {
  font-size: var(--sub-font-size);
}

/* =====================
   TIMELINE
===================== */
.timeline-items {
  position: relative;
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--grid-padding-x);
}

/* De verticale lijn */
.timeline-items::before {
  content: "";
  position: absolute;
  left: calc(var(--grid-padding-x) + var(--size-circle) / 2 - 1.5px);
  top: calc(var(--size-circle) / 2);
  bottom: calc(var(--size-circle) * 1.5 + 3rem);
  width: 3px;
  background-color: var(--primary-color);
  z-index: 0;
}

.timeline-items::before:last-child {
  width: 0;
  height: 0;
}

.timeline-item {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-nummer {
  flex-shrink: 0;
  width: var(--size-circle);
  height: var(--size-circle);
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-family: var(--paragraph-font);
  font-size: var(--font-in-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding-top: 0.5rem;
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: var(--font-badge);
  font-family: var(--paragraph-font);
  background-color: var(--primary-color-bg);
  font-weight: 600;
}

/* =====================
   MODULES SECTIE UITGELEGD
===================== */

.module-pill-2 {
  padding: 25px 20px;
  gap: 15px;
}

.module-pill-2 .module-nr {
  font-size: calc(var(--font-in-circle) / 1.25);
  font-family: var(--paragraph-font);
  color: var(--primary-color);
  background-color: var(--primary-color-bg);
  border-radius: 100%;
  border: 3px solid var(--primary-color);
  width: calc(var(--size-circle) / 1.25);
  height: calc(var(--size-circle) / 1.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-pill-2 .module-content h3 {
  padding-bottom: calc(var(--h3-padding-bottom) / 2);
}

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

.faq-lijst {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--grid-padding-x);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.5rem;
}

.faq-vraag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--title-font);
  font-size: 1.1rem;
  list-style: none;
  margin: -1.25rem -1.5rem;
  padding: 1.25rem 1.5rem;
}

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

.faq-vraag .ti {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] .faq-vraag .ti {
  transform: rotate(180deg);
}

.faq-antwoord {
  margin-top: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =====================
   RESPONSIVE - MOBILE FIRST
===================== */

/* === BASE (mobile < 768px) === */
@media (max-width: 768px) {
  :root {
    --h1-font-size: 36px;
    --h2-font-size: 20px;
    --h3-font-size: 16px;
    --h4-font-size: 14px;
    --sub-font-size: 14px;
    --btn-font-size: 14px;
    --size-circle: 55px;
    --font-in-circle: 28px;
    --layout-spacing-gap: 2rem;
    --paragraph-spacing-gap: 2rem;
    --font-badge: 11px;
    --grid-padding-x: 1.5rem;
    font-size: 16px;
  }

  /* Hero */
  #hero {
    height: auto;
    min-height: 300px;
  }

  .hero-tekst {
    padding: 2rem var(--grid-padding-x);
  }

  .hero-tekst h1 {
    font-size: 36px;
  }

  .hero-tekst-inner {
    max-width: 100%;
  }

  .module-pill {
    padding: 10px;
  }

  .module-pill-2 {
    padding: 20px;
  }

  .module-pill svg {
    width: 25px;
  }

  .waarom-sectie .layout__item svg {
    width: 40px;
  }

  .responsive-img {
    display: none;
  }

  #hero::before {
    display: none;
  }

  /* Layout grid -> 1 kolom op mobile */
  .layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .layout--fourcol-25-25-25-25,
  .layout--threecol-33-34-33,
  .layout--twocol-50-50,
  .layout--fivecol-20-20-20-20-20 {
    grid-template-columns: 1fr;
  }

  .layout--fivecol-20-20-20-20-20 > *,
  .layout--fourcol-25-25-25-25 > *,
  .layout--threecol-33-34-33 > *,
  .layout--twocol-50-50 > * {
    grid-column: auto;
  }

  /* Waarom sectie */
  .waarom-sectie .layout__item {
    height: auto;
    padding: 25px 20px;
  }

  .hoe-werkt-sectie .layout--fivecol-20-20-20-20-20 {
    grid-template-columns: 1fr;
  }

  .hoe-werkt-sectie .stap-arrow {
    display: none;
  }

  .stap-arrow {
    display: none;
  }

  /* Modules grid -> 1 kolom op mobile */
  .modules-grid {
    grid-template-columns: 1fr !important;
    padding-inline: 0;
  }

  .sectie-sub {
    margin-block-end: 2rem;
  }

  .padding-around {
    padding: 2rem var(--grid-padding-x);
  }

  .content-wrapper > div {
    margin-block-start: 2rem;
    gap: 2rem;
  }

  .timeline-items::before {
    left: calc(var(--grid-padding-x) + var(--size-circle) / 2 - 1.5px);
  }

  /* FAQ */
  .faq-lijst {
    padding-inline: 1rem;
  }

  /* CTA sectie */
  .cta-sectie .btn-primary {
    margin-top: 1.5rem;
  }

  .progress-stap {
    position: relative;
    top: 0;
    width: 100%;
  }

  .btn-primary-input {
    padding: 10px;
  }
}
/* === TABLET (768px+) === */
@media (min-width: 768px) {
  :root {
    --size-circle: 65px;
    --font-in-circle: 32px;
    --layout-spacing-gap: 3rem;
    --paragraph-spacing-gap: 3rem;
    --grid-padding-x: 1.75rem;
  }

  #hero {
    height: 515px;
  }

  .hero-tekst h1 {
    font-size: var(--h1-font-size);
  }

  h1 {
    font-size: var(--h2-font-size);
  }
  h2 {
    font-size: var(--h2-font-size);
  }

  .sectie-sub {
    font-size: var(--sub-font-size);
    margin-block-end: var(--paragraph-spacing-gap);
  }

  .layout {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
  }

  .layout--fourcol-25-25-25-25 {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout--twocol-50-50 {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout--threecol-33-34-33 {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout--fivecol-20-20-20-20-20 {
    grid-template-columns: repeat(3, 1fr);
  }

  .hoe-werkt-sectie .layout--fivecol-20-20-20-20-20 {
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
  }

  .stap-arrow {
    display: block;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .padding-around {
    padding: calc(var(--paragraph-spacing-gap) * 1) var(--paragraph-spacing-gap);
  }

  .content-wrapper > div {
    margin-block-start: 3rem;
    gap: 3rem;
  }

  .progress-stap {
    padding-inline: var(--grid-padding-x);
    top: 10px;
  }
}

/* === DESKTOP (1200px+) === */
@media (min-width: 1200px) {
  .responsive-img {
    display: block;
  }

  #hero::before {
    display: block;
  }

  .hero-tekst-inner {
    max-width: 56%;
  }

  .layout--threecol-33-34-33 {
    grid-template-columns: repeat(3, 1fr);
  }

  .layout--fourcol-25-25-25-25 {
    grid-template-columns: repeat(4, 1fr);
  }

  .layout--fivecol-20-20-20-20-20 {
    grid-template-columns: repeat(5, 1fr);
  }

  .hoe-werkt-sectie .layout--fivecol-20-20-20-20-20 {
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
  }

  .modules-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .padding-around {
    padding: calc(var(--paragraph-spacing-gap) * 1.5)
      var(--paragraph-spacing-gap);
  }

  .content-wrapper > div {
    margin-block-start: var(--layout-spacing-gap);
    gap: var(--layout-spacing-gap);
  }
}

/* === LARGE DESKTOP (1440px+) === */
@media (min-width: 1440px) {
  .hero-tekst-inner {
    max-width: 56%;
  }
}

/* =====================
   SAMENVATTING
===================== */

.sam-bedrijf h2 {
  text-align: left;
}

.sam-kaart {
  background: var(--white);
  border-radius: var(--border-radius-items);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.sam-kaart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0rem;
  border-bottom: 1px solid var(--gray-bg);
}

.sam-kaart__titel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sam-kaart__icon {
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.sam-kaart__icon svg {
  max-width: 20px;
  max-height: 20px;
  width: auto;
  height: auto;
}

.sam-kaart__titel h3 {
  font-size: 1rem;
  font-family: var(--paragraph-font);
  font-weight: 700;
  margin: 0;
  margin-bottom: 0 !important;
  color: var(--black);
}

.sam-kaart__edit {
  color: var(--gray);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.sam-kaart__edit:hover {
  color: var(--primary-color);
}

.sam-swotkaart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  flex-direction: column;
}

.sam-swotkaart > span {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  width: 100%;
}

.sam-rij {
  display: flex;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-bg);
  align-items: flex-start;
  font-size: 0.875rem;
  font-family: var(--paragraph-font);
}

.sam-rij:last-child {
  border-bottom: none;
}

.sam-label {
  min-width: 110px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.sam-waarde {
  color: var(--gray);
  flex: 1;
}

.sam-badge {
  padding: 3px 15px !important;
}

.sam-bedrijf {
  background-color: var(--white);
  border-radius: var(--border-radius-items);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .sam-kaart__body [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .sam-label {
    min-width: 80px;
    font-size: 0.8rem;
  }

  .sam-rij {
    gap: 0.5rem;
  }
}

/* =====================
   PRIVACY POLICY
===================== */

.privacy-pagina,
.alg-pagina {
  counter-reset: sectie;
}

.privacy-header,
.alg-header {
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-header h1,
.alg-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.privacy-header p,
.alg-header p,
.privacy-into p,
.alg-intro p {
  color: var(--black);
}

.privacy-datum,
.alg-datum {
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.privacy-intro,
.alg-intro {
  margin-bottom: 2rem;
}

.privacy-sectie,
.alg-sectie {
  margin-bottom: 2.5rem;
}

.privacy-sectie h3::before,
.alg-sectie h3::before {
  counter-increment: sectie;
  content: counter(sectie) ". ";
}

.privacy-sectie h3,
.alg-sectie h3 {
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.privacy-sectie p,
.alg-sectie p {
  color: var(--black);
  line-height: 1.6;
}

.bullet-lijst {
  list-style: disc;
  padding: 0;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.bullet-lijst li {
  color: var(--black);
  padding: 0.25rem 0;
  position: relative;
  line-height: 1.6;
}

.bullet-lijst li::before {
  list-style-type: disc;
  color: var(--primary-color);
  font-weight: 700;
}

.privacy-tabel {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.privacy-tabel th {
  text-align: left;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
}

.privacy-tabel td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--black);
}

.privacy-tabel tr:nth-child(even) td {
  background: var(--white);
}

.privacy-rechten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (max-width: 600px) {
  .privacy-rechten {
    grid-template-columns: 1fr;
  }
}

.privacy-recht {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-items);
  background: white;
}

.privacy-recht__icon {
  margin-bottom: 0.75rem;
}

.privacy-recht__naam {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0.4rem !important;
}

.privacy-recht__omschrijving {
  font-size: 0.82rem;
  color: var(--black);
  line-height: 1.5 !important;
}

.privacy-verwijder-note {
  border: none !important;
}

.privacy-sectie a,
.alg-sectie a {
  color: var(--primary-color);
  text-decoration: underline;
}

.input-met-oog {
  position: relative;
}

.input-met-oog input {
  width: 100%;
  padding-right: 2.5rem;
}

.oog-btn {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 1.1rem;
}

.oog-btn:hover {
  color: var(--primary-color);
}

.nav-link-kaart {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-items);
  text-decoration: none;
  color: var(--black);
  transition: box-shadow 0.2s;
}

.nav-link-kaart:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--black);
}
