/* ==========================================================================
   Photoboothhuren.com — blokken die alleen op de koop-pagina's staan
   Rekenmodule, vergelijking, netwerk, stappenplan, software, brochure.
   Gebruikt uitsluitend de tokens uit style.css.
   ========================================================================== */

/* Verticaal ritme staat in spacing.css, samen met de rest van de secties.
   Hier dus bewust geen padding-top of padding-bottom op de secties zelf. */

.kop__head {
  max-width: 62ch;
  margin-bottom: 28px;
}

.kop__head h2 {
  margin: 0;
}

.kop__head p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Rekenmodule
   -------------------------------------------------------------------------- */
.roi__card {
  display: grid;
  grid-template-columns: 1fr 400px;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.roi__controls {
  padding: 40px;
}

.roi__f {
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-line);
}

.roi__f:first-child {
  padding-top: 0;
}

.roi__f:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.roi__f-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.roi__f label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.roi__val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  white-space: nowrap;
}

.roi__r {
  width: 100%;
  height: 6px;
  background: var(--grey-line);
  border-radius: 99px;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
}

.roi__r::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  background: var(--yellow);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30, 24, 16, 0.25);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.roi__r::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30, 24, 16, 0.25);
  cursor: pointer;
}

.roi__r:focus-visible {
  outline: 2px solid var(--yellow-hover);
  outline-offset: 4px;
}

.roi__hint {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.roi__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.roi__preset {
  min-height: 38px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.roi__preset:hover,
.roi__preset[aria-pressed="true"] {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* Uitkomstpaneel */
.roi__out {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  color: var(--white);
  background: var(--dark);
}

.roi__lbl {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bdb6ac;
}

.roi__big {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
}

.roi__big small {
  font-size: 20px;
  font-weight: 700;
}

.roi__sub {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #e6e1d8;
}

.roi__months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-top: 10px;
}

.roi__months i {
  height: 10px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
}

.roi__months i.on {
  background: var(--yellow);
}

.roi__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.roi__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
  color: #e6e1d8;
}

.roi__row b {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--white);
  white-space: nowrap;
}

.roi__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #bdb6ac;
}

.roi__out .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Vergelijking
   -------------------------------------------------------------------------- */
.vs__table {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  border-collapse: collapse;
}

.vs__table th,
.vs__table td {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--grey-line);
}

.vs__table thead th {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  background: var(--cream);
  border-top: 0;
}

.vs__table thead .vs__us {
  background: var(--yellow);
}

.vs__table th[scope="row"] {
  width: 20%;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
}

.vs__table td.vs__us {
  background: rgba(249, 195, 73, 0.1);
}

.vs__table td.vs__us,
.vs__table td.vs__them {
  position: relative;
  padding-left: 46px;
}

.vs__table td.vs__us::before,
.vs__table td.vs__them::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 15px;
  height: 15px;
  content: "";
}

.vs__table td.vs__us::before {
  background-color: var(--dark);
  -webkit-mask: var(--check) center / contain no-repeat;
  mask: var(--check) center / contain no-repeat;
}

.vs__table td.vs__them::before {
  top: 27px;
  height: 3px;
  background: #c9c4bc;
  border-radius: 2px;
}

.vs__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .vs__table,
  .vs__table tbody,
  .vs__table tr,
  .vs__table th,
  .vs__table td {
    display: block;
    width: auto;
  }

  .vs__table thead {
    display: none;
  }

  .vs__table tr {
    padding: 8px 0 14px;
    border-top: 1px solid var(--grey-line);
  }

  .vs__table tr:first-child {
    border-top: 0;
  }

  .vs__table th[scope="row"] {
    width: auto;
    padding-bottom: 4px;
    border-top: 0;
  }

  .vs__table td {
    border-top: 0;
  }

  .vs__table td::after {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    content: attr(data-l);
  }

  .vs__table td.vs__us,
  .vs__table td.vs__them {
    padding: 10px 14px 12px 46px;
    border-radius: var(--radius-sm);
  }

  .vs__table td.vs__us::before {
    top: 32px;
  }

  .vs__table td.vs__them::before {
    top: 39px;
  }
}

/* --------------------------------------------------------------------------
   Netwerk
   -------------------------------------------------------------------------- */
.netw__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  color: var(--white);
  background: var(--dark);
  border-radius: var(--radius-lg);
}

.netw__inner h2 {
  margin: 0 0 16px;
  color: var(--white);
}

.netw__lead {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.55;
  color: #e6e1d8;
}

.netw__quote {
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
}

.netw__quote blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
}

.netw__quote blockquote::before {
  content: "\201C";
}

.netw__quote blockquote::after {
  content: "\201D";
}

.netw__quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.netw__avatar {
  display: block;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: cover;
  background: var(--yellow);
  border-radius: 50%;
}

.netw__who {
  display: flex;
  flex-direction: column;
}

.netw__who strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.netw__who span {
  font-size: 14px;
  color: #bdb6ac;
}

.netw__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.netw__step {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.netw__step span {
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  width: 32px;
  height: 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: var(--yellow);
  border-radius: 50%;
}

.netw__step b {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
}

.netw__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #d8d4cd;
}

/* --------------------------------------------------------------------------
   Stappenplan
   -------------------------------------------------------------------------- */
.plan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.plan-step__n {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  background: var(--yellow);
  border-radius: 50%;
}

.plan-step h3 {
  margin: 0;
  font-size: 18px;
}

.plan-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.plan__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 24px 32px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.plan__foot p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   Software
   -------------------------------------------------------------------------- */
.sw__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sw__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
}

.sw__card--pick {
  background: var(--cream);
  border: 2px solid var(--yellow);
}

.sw__tag {
  align-self: flex-start;
}

.sw__card h3 {
  margin: 0;
  font-size: 22px;
}

.sw__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.sw__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.sw__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.sw__list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.sw__card--plain .sw__list li::before {
  background: #c9c4bc;
}

/* --------------------------------------------------------------------------
   Brochure
   -------------------------------------------------------------------------- */
.broch__card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.broch__media {
  position: relative;
  margin: 0;
  min-height: 100%;
  background: var(--grey-100);
}

.broch__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.broch__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--yellow);
  border-radius: 999px;
}

.broch__body {
  padding: 56px;
}

.broch__body h2 {
  margin: 0;
}

.broch__body > p {
  margin: 12px 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.broch__body .checklist {
  gap: 10px;
}

.broch__form {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-line);
}

.broch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.broch__f {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.broch__f--full {
  grid-column: 1 / -1;
}

.broch__f label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.broch__f input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
}

.broch__f input:focus {
  border-color: var(--yellow);
  outline: 2px solid rgba(249, 195, 73, 0.35);
  outline-offset: 1px;
}

.broch__small {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .roi__card,
  .netw__inner,
  .broch__card,
  .sw__grid {
    grid-template-columns: 1fr;
  }

  .netw__inner {
    gap: 36px;
    padding: 40px;
  }

  .broch__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .broch__body {
    padding: 40px;
  }

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

@media (max-width: 640px) {
  .roi__controls,
  .roi__out {
    padding: 26px;
  }

  .roi__big {
    font-size: 44px;
  }

  .netw__inner {
    padding: 26px;
    border-radius: 20px;
  }

  .broch__card {
    border-radius: 20px;
  }

  .broch__media {
    aspect-ratio: 4 / 3;
  }

  .broch__body {
    padding: 26px;
  }

  .broch__grid {
    grid-template-columns: 1fr;
  }

  .plan__grid {
    grid-template-columns: 1fr;
  }

  .plan__foot,
  .sw__card {
    padding: 22px;
  }

  .netw__quote blockquote {
    font-size: 17px;
  }

  .plan__foot p {
    font-size: 17px;
  }
}
