/* FONTS ------------------------------------------------------ */
/* Pad aanpassen naar de businesssite indien de fonts daar elders staan. */
@font-face {
  font-family: "Poppins";
  src:
    url("/download/b2c_be_nl/fonts/poppins/Poppins-Regular.woff2")
      format("woff2"),
    url("/download/b2c_be_nl/fonts/poppins/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src:
    url("/download/b2c_be_nl/fonts/poppins/Poppins-SemiBold.woff2")
      format("woff2"),
    url("/download/b2c_be_nl/fonts/poppins/Poppins-SemiBold.woff")
      format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* TOKENS ----------------------------------------------------- */
#lokaleaicontent {
  --red: #e3001d;
  --red-dark: #c5001d;
  --ink: #262626;
  --ink-muted: #3c3c3c;
  --ink-subtle: #727272;
  --surface: #f8f9fa;
  --rule: #e2e2e2;
  --deep: #17191d;
  --deep-rule: #32363d;
  --deep-subtle: #a6acb5;
  --radius: 8px;
  --ease: 0.2s ease;
  --chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e3001d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5.5 2.5 6 5.5-6 5.5'/%3E%3C/svg%3E");
  --check-green: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2333c58d'%3E%3Cpath d='M6.2 12.1 2.4 8.3l1.3-1.3 2.5 2.5 6-6L13.5 4.8z'/%3E%3C/svg%3E");
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e3001d'%3E%3Cpath d='M6.2 12.1 2.4 8.3l1.3-1.3 2.5 2.5 6-6L13.5 4.8z'/%3E%3C/svg%3E");

  --t-xs: 0.875rem;
  --t-sm: 0.95rem;
  --t-md: 1rem;
  --t-lg: 1.15rem;
  --t-xl: 1.75rem;
  --t-2xl: 2rem;
  --t-3xl: 2.5rem;

  --s1: 0.5rem;
  --s2: 0.75rem;
  --s3: 1rem;
  --s4: 1.5rem;
  --s5: 2rem;
  --s6: 3rem;
  --s7: 4rem;

  --band: var(--s6);

  font-family: Poppins, sans-serif;
  color: var(--ink);
}

/* RESET ------------------------------------------------------ */
#lokaleaicontent,
#lokaleaicontent *,
#lokaleaicontent *::before,
#lokaleaicontent *::after {
  box-sizing: border-box;
}
:where(#lokaleaicontent) :is(h1, h2, h3, h4, p, ul, ol, dl, dd, fieldset) {
  margin: 0;
}
:where(#lokaleaicontent) :is(ul, ol) {
  padding-left: 0;
  list-style: none;
}
:where(#lokaleaicontent) fieldset {
  padding: 0;
  border: none;
}
:where(#lokaleaicontent) img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* BANDS ------------------------------------------------------ */
/* De site levert normaal de contentkolom. Staat .lokaleai-band__inner niet
   al in een globale stylesheet, dan volstaat deze neutrale wrapper. */
.lokaleai-band__inner {
  width: 100%;
  margin-inline: auto;
}

/* vw telt de scrollbar mee, percentages niet. --sb draagt die breedte,
   gemeten in de script. */
.lokaleai-band,
.lokaleai-cta,
.lokaleai-rekenmodule,
.lokaleai-hero__frame {
  margin-inline: calc(50% - 50vw + var(--sb, 0px) / 2);
  padding-inline: calc(50vw - 50% - var(--sb, 0px) / 2);
}

.lokaleai-band {
  --card-fill: #fff;
  --card-edge: 1px solid var(--rule);
  --card-invert: var(--surface);
  padding-block: var(--band);
  background: var(--surface);
}
.lokaleai-band--plain {
  --card-fill: var(--surface);
  --card-edge: none;
  --card-invert: #fff;
  background: #fff;
}
.lokaleai-band__head {
  margin-bottom: var(--s6);
  text-align: center;
}
.lokaleai-band__foot {
  text-align: center;
}
.lokaleai-band__title {
  margin-bottom: var(--s1);
  font-size: var(--t-xl);
  font-weight: 600;
  line-height: 1.3;
}
.lokaleai-band__lead {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink-muted);
}
.lokaleai-accent {
  color: var(--accent, var(--red));
}
#lokaleaicontent [id^="lokaleai-"] {
  scroll-margin-top: 100px;
}

/* BUTTONS ---------------------------------------------------- */
.lokaleai-btn {
  display: inline-block;
  padding: var(--s3) var(--s4);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: var(--t-xs);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--ease),
    border-color var(--ease),
    filter var(--ease);
}
.lokaleai-btn--primary {
  background: var(--btn-fill, var(--red));
  color: var(--btn-ink, #fff);
}
.lokaleai-btn--primary:hover,
.lokaleai-btn--primary:focus-visible {
  filter: brightness(0.9);
}
.lokaleai-btn--secondary {
  border-color: var(--btn-alt-edge, transparent);
  background: var(--btn-alt-fill, #1a1a1a);
  color: #fff;
}
.lokaleai-btn--secondary:hover,
.lokaleai-btn--secondary:focus-visible {
  border-color: var(--btn-alt-edge-hover, var(--btn-alt-edge, transparent));
  background: var(--btn-alt-hover, #333);
}

/* FOCUS ------------------------------------------------------ */
:where(#lokaleaicontent) :where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.lokaleai-btn:focus-visible {
  outline-color: var(--ink);
  outline-offset: 3px;
}
.lokaleai-tabs__tab:focus-visible,
.lokaleai-rail-tabs__tab:focus-visible {
  outline-offset: -3px;
}

/* 768 -------------------------------------------------------- */
@media (min-width: 768px) {
  .lokaleai-band__title {
    font-size: var(--t-2xl);
  }
  .lokaleai-band__lead {
    font-size: var(--t-lg);
  }
}

/* 992 -------------------------------------------------------- */
@media (min-width: 992px) {
  #lokaleaicontent {
    --band: 5rem;
  }
  .lokaleai-band__head {
    margin-bottom: var(--s7);
  }
  .lokaleai-band__title {
    font-size: var(--t-3xl);
    line-height: 1.4;
  }
  .lokaleai-btn {
    padding: var(--s3) var(--s5);
  }
}

/* MOTION ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  #lokaleaicontent *,
  #lokaleaicontent *::before,
  #lokaleaicontent *::after {
    transition-duration: 0.01ms !important;
  }
}

/* HERO ------------------------------------------------------- */
/* Zonder beeld draait de hero op de kleurverloop alleen. Zodra er een
   hero.webp is, zet je die als tweede laag in background-image. */
.lokaleai-hero__frame {
  --btn-fill: #fff;
  --btn-ink: var(--red-dark);
  --btn-alt-fill: rgba(255, 255, 255, 0.18);
  --btn-alt-edge: rgba(255, 255, 255, 0.55);
  --btn-alt-hover: rgba(255, 255, 255, 0.32);
  --btn-alt-edge-hover: #fff;
  --accent: currentColor;
  --hold: max(38rem, 50vw);

  display: grid;
  align-content: center;
  min-height: clamp(260px, 22vw, 560px);
  padding-block: var(--s5);
  color: #fff;
  background-image: linear-gradient(
    to right,
    rgba(197, 0, 29, 0.97) 0,
    rgba(197, 0, 29, 0.92) var(--hold),
    rgba(120, 0, 18, 0.95) 100%
  );
  background-position: center;
  background-size: cover;
}
.lokaleai-hero__body {
  max-width: 40rem;
  text-align: center;
}
.lokaleai-hero__title {
  margin-bottom: var(--s2);
  font-size: var(--t-xl);
  font-weight: 600;
  line-height: 1.2;
}
.lokaleai-hero__lead {
  margin-bottom: var(--s4);
  font-size: var(--t-md);
  line-height: 1.6;
}
.lokaleai-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2) var(--s3);
}
.lokaleai-hero__note {
  margin-top: var(--s3);
  font-size: var(--t-xs);
  line-height: 1.5;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .lokaleai-hero__body {
    text-align: left;
  }
  .lokaleai-hero__actions {
    justify-content: flex-start;
  }
  .lokaleai-hero__title {
    font-size: var(--t-2xl);
  }
}

/* FUNNEL ----------------------------------------------------- */
.lokaleai-steps {
  --notch: 1rem;
  display: grid;
  gap: 2px;
}
.lokaleai-steps__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s2);
  width: 100%;
  height: 100%;
  padding: var(--s3) var(--s4);
  border: none;
  border-radius: var(--radius);
  background: var(--card-fill);
  font: inherit;
  color: inherit;
  text-align: left;
  transition: background-color var(--ease);
}
.lokaleai-steps__title {
  margin: 0;
  font: inherit;
}
.lokaleai-steps__head:focus-visible {
  outline: none;
}
.lokaleai-steps__title:has(:focus-visible) {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.lokaleai-steps__number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: var(--s5);
  height: var(--s5);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: var(--t-xs);
  font-weight: 600;
  line-height: 1;
}
.lokaleai-steps__label {
  font-size: var(--t-md);
  font-weight: 400;
  line-height: 1.35;
  transition: color var(--ease);
}
.lokaleai-steps__panel {
  display: grid;
  align-content: center;
  padding: var(--s4);
  border-radius: var(--radius);
  background: var(--card-fill);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}
.lokaleai-tabbed .lokaleai-steps__head {
  cursor: pointer;
}
.lokaleai-steps__head[aria-expanded="true"] {
  background: var(--red);
}
.lokaleai-steps__head[aria-expanded="true"] .lokaleai-steps__label {
  color: #fff;
}
.lokaleai-steps__head[aria-expanded="true"] .lokaleai-steps__number {
  background: #fff;
  color: var(--red);
}
.lokaleai-tabbed .lokaleai-steps__head:hover .lokaleai-steps__title {
  color: var(--red);
}
.lokaleai-steps__head[aria-expanded="true"]:hover .lokaleai-steps__title {
  color: #fff;
}

@media (min-width: 768px) {
  .lokaleai-steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2px;
    row-gap: calc(var(--notch) + 2px);
    margin-bottom: calc(var(--notch) + 2px);
  }
  .lokaleai-steps__step {
    display: contents;
  }
  .lokaleai-steps__head {
    padding-left: calc(var(--s4) + var(--notch));
    clip-path: polygon(
      0 0,
      calc(100% - var(--notch)) 0,
      100% 50%,
      calc(100% - var(--notch)) 100%,
      0 100%,
      var(--notch) 50%
    );
  }
  .lokaleai-steps__step:nth-child(odd) .lokaleai-steps__head {
    border-radius: var(--radius) 0 0 var(--radius);
    clip-path: polygon(
      0 0,
      calc(100% - var(--notch)) 0,
      100% 50%,
      calc(100% - var(--notch)) 100%,
      0 100%
    );
  }
  .lokaleai-steps__step:nth-child(even) .lokaleai-steps__head {
    border-radius: 0 var(--radius) var(--radius) 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, var(--notch) 50%);
  }
  .lokaleai-steps__panel {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: var(--s5);
  }
  .lokaleai-steps__panel[hidden] {
    display: block !important;
    visibility: hidden;
  }
}

@media (min-width: 1200px) {
  .lokaleai-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .lokaleai-steps__panel {
    grid-row: 2;
  }
  .lokaleai-steps__step:not(:first-child):not(:last-child)
    .lokaleai-steps__head {
    border-radius: 0;
    clip-path: polygon(
      0 0,
      calc(100% - var(--notch)) 0,
      100% 50%,
      calc(100% - var(--notch)) 100%,
      0 100%,
      var(--notch) 50%
    );
  }
  .lokaleai-steps__step:first-child .lokaleai-steps__head {
    border-radius: var(--radius) 0 0 var(--radius);
    clip-path: polygon(
      0 0,
      calc(100% - var(--notch)) 0,
      100% 50%,
      calc(100% - var(--notch)) 100%,
      0 100%
    );
  }
  .lokaleai-steps__step:last-child .lokaleai-steps__head {
    border-radius: 0 var(--radius) var(--radius) 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, var(--notch) 50%);
  }
}

/* PROMISES --------------------------------------------------- */
.lokaleai-promises {
  --bs-gutter-y: var(--s6);
}
.lokaleai-promise {
  text-align: center;
}
.lokaleai-promise::before {
  content: "";
  display: block;
  width: var(--s6);
  height: var(--s6);
  margin: 0 auto var(--s3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04) var(--check) no-repeat center / var(--s4);
}
.lokaleai-promise__title {
  margin-bottom: var(--s1);
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.4;
}
.lokaleai-promise__text {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ON-PAGE INDEX ---------------------------------------------- */
.lokaleai-contents__title {
  margin-bottom: var(--s4);
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.lokaleai-contents__link {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: var(--s1);
  padding-block: var(--s1);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--ink-muted);
  text-align: center;
  text-decoration: none;
  transition: color var(--ease);
}
.lokaleai-contents__link::before {
  content: "";
  flex: 0 0 auto;
  width: var(--s1);
  height: 1.5em;
  background: var(--chevron) no-repeat center / var(--s1);
}
.lokaleai-contents__link:hover,
.lokaleai-contents__link:focus-visible {
  color: var(--red);
}

@media (min-width: 576px) {
  .lokaleai-contents__link {
    justify-content: flex-start;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .lokaleai-contents__title {
    font-size: var(--t-xl);
  }
}

/* CALL TO ACTION --------------------------------------------- */
.lokaleai-cta {
  --btn-fill: #fff;
  --btn-ink: var(--red-dark);
  padding-block: var(--s6);
  background: linear-gradient(to right, var(--red-dark), var(--red));
  color: #fff;
}
.lokaleai-cta__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  text-align: center;
}
.lokaleai-cta__text {
  font-size: var(--t-lg);
  line-height: 1.45;
}
@media (min-width: 768px) {
  .lokaleai-cta {
    padding-block: var(--s7);
  }
}
@media (min-width: 1200px) {
  .lokaleai-cta__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s5);
    text-align: left;
  }
}

/* CARD ------------------------------------------------------- */
.lokaleai-card {
  padding: var(--s5);
  background: var(--card-fill);
  border: var(--card-edge);
  border-radius: var(--radius);
}
[class^="col"] > .lokaleai-card {
  height: 100%;
}
.lokaleai-card__title {
  margin-bottom: var(--s2);
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.4;
}
.lokaleai-card__lead {
  margin-bottom: var(--s2);
  font-size: var(--t-md);
  line-height: 1.5;
}
.lokaleai-card__text {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-subtle);
}
.lokaleai-eyebrow {
  margin-bottom: var(--s1);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--red);
}

/* STRIP CARD ------------------------------------------------- */
.lokaleai-card--strip {
  overflow: hidden;
  padding: 0;
}
.lokaleai-card__strip {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s5);
  background: var(--card-invert);
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.4;
}
.lokaleai-card__body {
  padding: var(--s5);
}

/* LIST ------------------------------------------------------- */
.lokaleai-list li {
  position: relative;
  padding-left: var(--s5);
  margin-bottom: var(--s2);
  font-size: var(--t-sm);
  line-height: 1.55;
}
.lokaleai-list li:last-child {
  margin-bottom: 0;
}
.lokaleai-list li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: var(--s3);
  height: var(--s3);
  background: var(--check-green) no-repeat center / contain;
}

/* KIEZER ----------------------------------------------------- */
.lokaleai-kiezer {
  display: grid;
  gap: var(--s4);
  padding: var(--s5);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--card-fill);
}
.lokaleai-kiezer__legend {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
  padding: 0;
  font-size: var(--t-md);
  font-weight: 600;
  line-height: 1.4;
}
.lokaleai-kiezer__number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: var(--s4);
  height: var(--s4);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: var(--t-xs);
  font-weight: 600;
  line-height: 1;
}
.lokaleai-kiezer__opts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.lokaleai-opt {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
}
.lokaleai-opt input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.lokaleai-opt span {
  display: block;
  padding: var(--s2) var(--s3);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: #fff;
  font-size: var(--t-sm);
  line-height: 1.4;
  transition:
    border-color var(--ease),
    background-color var(--ease),
    color var(--ease);
}
.lokaleai-opt:hover span {
  border-color: var(--ink-subtle);
}
.lokaleai-opt input:checked + span {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.lokaleai-opt input:focus-visible + span {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.lokaleai-kiezer__foot {
  display: flex;
  justify-content: flex-end;
}

/* RESULT ----------------------------------------------------- */
.lokaleai-result {
  margin-top: var(--s4);
  padding: var(--s5);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
}
.lokaleai-result__empty {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-subtle);
}
.lokaleai-result__meta {
  margin-bottom: var(--s1);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--red);
}
.lokaleai-result__title {
  margin-bottom: var(--s2);
  font-size: var(--t-xl);
  font-weight: 600;
  line-height: 1.3;
}
.lokaleai-result__why {
  margin-bottom: var(--s3);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}
.lokaleai-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/* MACHINES --------------------------------------------------- */
.lokaleai-machine {
  display: flex;
  flex-direction: column;
}
.lokaleai-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s1) var(--s3);
  margin-bottom: var(--s4);
  font-size: var(--t-xs);
  line-height: 1.5;
}
.lokaleai-specs dt {
  color: var(--ink-subtle);
}
.lokaleai-specs dd {
  text-align: right;
}
.lokaleai-machine__action {
  margin-top: auto;
}
.lokaleai-machine__action .lokaleai-btn {
  width: 100%;
}
.lokaleai-machine--gekozen {
  box-shadow: inset 0 0 0 2px var(--red);
}
.lokaleai-note-block {
  max-width: 52rem;
  margin: var(--s5) auto 0;
  padding: var(--s4);
  border-radius: var(--radius);
  background: var(--card-fill);
  border: var(--card-edge);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}

/* REKENMODULE ------------------------------------------------ */
.lokaleai-rekenmodule {
  padding-block: var(--band);
  background: var(--deep);
  color: #fff;
}
.lokaleai-rekenmodule .lokaleai-band__lead {
  color: var(--deep-subtle);
}
.lokaleai-calc {
  display: grid;
  gap: var(--s5);
}
.lokaleai-field {
  margin-bottom: var(--s4);
}
.lokaleai-field label {
  display: block;
  margin-bottom: var(--s1);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--deep-subtle);
}
.lokaleai-field__val {
  font-weight: 600;
  color: #fff;
}
.lokaleai-field input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}
.lokaleai-calc__fine {
  font-size: var(--t-xs);
  line-height: 1.6;
  color: var(--deep-subtle);
}
.lokaleai-calc__out {
  padding: var(--s5);
  border: 1px solid var(--deep-rule);
  border-radius: var(--radius);
}
.lokaleai-calc__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s3);
  padding-block: var(--s2);
  border-bottom: 1px solid var(--deep-rule);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--deep-subtle);
}
.lokaleai-calc__row b {
  font-size: var(--t-md);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.lokaleai-calc__delta {
  padding-top: var(--s3);
  font-size: var(--t-sm);
  color: var(--deep-subtle);
}
.lokaleai-calc__big {
  margin-block: var(--s1);
  font-size: var(--t-2xl);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}
.lokaleai-calc__action {
  margin-top: var(--s4);
}
@media (min-width: 992px) {
  .lokaleai-calc {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
    align-items: start;
  }
}

/* TAB STRIP -------------------------------------------------- */
.lokaleai-tabstrip {
  position: relative;
  min-width: 0;
  margin-bottom: var(--s5);
}
.lokaleai-tabstrip[data-more~="start"] .lokaleai-tabstrip__row {
  mask-image: linear-gradient(to right, transparent, #000 var(--s7));
}
.lokaleai-tabstrip[data-more~="end"] .lokaleai-tabstrip__row {
  mask-image: linear-gradient(to left, transparent, #000 var(--s7));
}
.lokaleai-tabstrip[data-more~="start"][data-more~="end"]
  .lokaleai-tabstrip__row {
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 var(--s7),
    #000 calc(100% - var(--s7)),
    transparent
  );
}
.lokaleai-tabstrip__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  place-items: center;
  width: var(--s4);
  height: var(--s4);
  padding: 0;
  border: none;
  background: none;
  color: var(--red);
  cursor: pointer;
  transform: translateY(-50%);
}
.lokaleai-tabstrip__nav svg {
  width: 100%;
  height: 100%;
}
.lokaleai-tabstrip__nav--prev {
  left: 0;
}
.lokaleai-tabstrip__nav--next {
  right: 0;
}
.lokaleai-tabstrip[data-more~="start"] .lokaleai-tabstrip__nav--prev,
.lokaleai-tabstrip[data-more~="end"] .lokaleai-tabstrip__nav--next {
  display: grid;
}

/* USAGE TABS ------------------------------------------------- */
.lokaleai-usage + .lokaleai-usage {
  margin-top: var(--s6);
}
.lokaleai-usage__title {
  margin-bottom: var(--s5);
  padding-bottom: var(--s2);
  border-bottom: 2px solid var(--red);
  font-size: var(--t-xl);
  font-weight: 600;
}
.lokaleai-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(var(--rule), var(--rule)) bottom / 100% 1px
    no-repeat;
}
.lokaleai-tabs::-webkit-scrollbar {
  display: none;
}
.lokaleai-tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  flex: 0 0 auto;
  padding: var(--s2) var(--s3);
  border: none;
  border-bottom: 2px solid var(--rule);
  white-space: nowrap;
  background: none;
  font: inherit;
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-muted);
  cursor: pointer;
  transition:
    color var(--ease),
    border-color var(--ease);
}
.lokaleai-tabs__tab:hover {
  color: var(--red);
}
.lokaleai-tabs__tab[aria-selected="true"] {
  border-bottom-color: var(--red);
  color: var(--red);
}
.lokaleai-tabbed .lokaleai-usage__title {
  display: none;
}
.lokaleai-tabbed .lokaleai-usage + .lokaleai-usage {
  margin-top: 0;
}
.lokaleai-tabbed .lokaleai-band__inner:has(> .lokaleai-usage) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.lokaleai-tabbed .lokaleai-usage {
  grid-area: 3 / 1;
}
.lokaleai-tabbed .lokaleai-usage[hidden] {
  display: block !important;
  visibility: hidden;
}
.lokaleai-tabbed .lokaleai-usage__panel {
  height: 100%;
}
.lokaleai-usage__panel .lokaleai-card {
  height: 100%;
}
@media (min-width: 768px) {
  .lokaleai-tabs {
    gap: var(--s4);
  }
  .lokaleai-tabs__tab {
    padding-inline: 0;
    font-size: var(--t-md);
  }
}

/* PARTS ------------------------------------------------------ */
.lokaleai-parts {
  display: grid;
  gap: var(--s6);
}
.lokaleai-part__body {
  flex: 1;
  min-width: 0;
}
.lokaleai-part__title {
  margin-bottom: var(--s1);
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.46;
}
.lokaleai-part__text {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink-muted);
}
.lokaleai-part__advice {
  margin-top: var(--s4);
  padding: var(--s4);
  border-radius: var(--radius);
  background: var(--card-fill);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}
.lokaleai-part__label {
  display: block;
  margin-bottom: var(--s1);
  font-weight: 600;
  color: var(--red);
}
.lokaleai-tabbed .lokaleai-part__title {
  margin-bottom: var(--s2);
  font-size: var(--t-2xl);
}
.lokaleai-tabbed .lokaleai-parts {
  gap: var(--s5);
}
.lokaleai-parts > .lokaleai-tabstrip {
  margin-bottom: 0;
}

.lokaleai-rail-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(var(--rule), var(--rule)) bottom / 100% 1px
    no-repeat;
}
.lokaleai-rail-tabs::-webkit-scrollbar {
  display: none;
}
.lokaleai-rail-tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  flex: 0 0 auto;
  padding: var(--s2) var(--s3);
  border: none;
  border-bottom: 2px solid var(--rule);
  white-space: nowrap;
  background: none;
  font: inherit;
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-muted);
  cursor: pointer;
  transition:
    color var(--ease),
    background-color var(--ease),
    border-color var(--ease);
}
.lokaleai-rail-tabs__tab:hover {
  color: var(--red);
}
.lokaleai-rail-tabs__tab[aria-selected="true"] {
  border-bottom-color: var(--red);
  color: var(--red);
}
@media (min-width: 992px) {
  .lokaleai-tabbed .lokaleai-parts {
    grid-template-columns: minmax(200px, 280px) 1fr;
    column-gap: var(--s6);
    align-items: start;
  }
  .lokaleai-parts > .lokaleai-tabstrip {
    grid-area: 1 / 1;
  }
  .lokaleai-rail-tabs {
    flex-direction: column;
    gap: 2px;
    overflow-x: visible;
    background: none;
  }
  .lokaleai-rail-tabs__tab {
    justify-content: flex-start;
    width: 100%;
    padding: var(--s2) var(--s3);
    border-bottom: none;
    border-left: 3px solid transparent;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: var(--t-md);
    font-weight: 400;
    color: var(--ink-subtle);
    text-align: left;
  }
  .lokaleai-rail-tabs__tab:hover,
  .lokaleai-rail-tabs__tab[aria-selected="true"] {
    background: var(--card-fill);
    color: var(--ink);
  }
  .lokaleai-rail-tabs__tab[aria-selected="true"] {
    border-left-color: var(--red);
    font-weight: 600;
  }
  .lokaleai-tabbed .lokaleai-part {
    grid-area: 1 / 2;
  }
}

/* FOUTEN ----------------------------------------------------- */
.lokaleai-fout__number {
  display: grid;
  margin-bottom: var(--s3);
  place-items: center;
  width: var(--s5);
  height: var(--s5);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 1;
}

/* FORM ------------------------------------------------------- */
.lokaleai-form__label {
  display: block;
  margin-bottom: var(--s1);
  font-size: var(--t-sm);
  line-height: 1.4;
}
.lokaleai-req {
  color: var(--red);
}
.lokaleai-form__input {
  width: 100%;
  padding: var(--s2) var(--s3);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--ink);
  transition: border-color var(--ease);
}
.lokaleai-form__input:focus {
  border-color: var(--ink);
}
.lokaleai-form__input[aria-invalid="true"] {
  border-color: var(--red);
}
.lokaleai-form__area {
  min-height: 6rem;
  resize: vertical;
}
.lokaleai-form__error {
  margin-top: var(--s4);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--red);
}
.lokaleai-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s5);
}
.lokaleai-form__note {
  flex: 1 1 18rem;
  font-size: var(--t-xs);
  line-height: 1.5;
  color: var(--ink-subtle);
}
.lokaleai-sent {
  padding: var(--s5);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
}

/* FAQ -------------------------------------------------------- */
.lokaleai-faq {
  display: grid;
  align-items: start;
  gap: var(--s2);
}
.lokaleai-faq__col {
  display: grid;
  align-content: start;
  gap: var(--s2);
}
.lokaleai-faq__item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-fill);
}
.lokaleai-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  font-size: var(--t-md);
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  transition: color var(--ease);
}
.lokaleai-faq__question::-webkit-details-marker {
  display: none;
}
.lokaleai-faq__question::after {
  content: "";
  flex: 0 0 auto;
  width: var(--s1);
  height: var(--s1);
  border-right: 1.5px solid var(--ink-subtle);
  border-bottom: 1.5px solid var(--ink-subtle);
  transform: rotate(45deg);
  transition: transform var(--ease);
}
.lokaleai-faq__item[open] .lokaleai-faq__question::after {
  transform: rotate(-135deg);
}
.lokaleai-faq__question:hover,
.lokaleai-faq__item[open] .lokaleai-faq__question {
  color: var(--red);
}
.lokaleai-faq__answer {
  padding: 0 var(--s4) var(--s4);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}
@media (min-width: 992px) {
  .lokaleai-faq {
    grid-template-columns: repeat(2, 1fr);
  }
}
