/* ========================================================================== 
   sectie-overgang.css - herkenning van huidig AI-gebruik en overgang naar bureau-scene.

   Markupcontract:

   <div class="vp-verhaal">
     <section id="ai-gebruik"
              class="vp-verhaal-sectie vp-verhaal-sectie--gebruik">
       <div class="vp-verhaal-inhoud">
         <header class="vp-ai-gebruik-intro">...</header>
         <ol class="vp-ai-gebruik-punten">
           <li class="vp-ai-gebruik-punt">
             <span class="vp-ai-gebruik-nummer">01</span>
             <span class="vp-ai-gebruik-icoon" aria-hidden="true">...</span>
             <h3>...</h3><p>...</p>
           </li>
         </ol>
         <a class="vp-ai-gebruik-vraag" href="#scene-bureau">...</a>
       </div>
     </section>
   </div>

   De drie punten vormen een doorlopende redactionele strook. Geen kaarten,
   badges of niet-klikbare pillen. Verouderde selectors voor `#uw-gegevens`
   blijven hieronder alleen als inactieve herstelbron staan.
   ========================================================================== */

.vp-verhaal {
  --vpv-kaart: var(--vp-kaart, #fbf9f4);
  --vpv-papier: var(--vp-papier, #f3f0e9);
  --vpv-band: var(--vp-band, #ebe7dc);
  --vpv-lijn: var(--vp-lijn, #e1dbce);
  --vpv-ink: var(--vp-ink, #22303b);
  --vpv-navy: var(--vp-navy, #1e3a5f);
  --vpv-body: var(--vp-body, #6a665e);
  --vpv-accent: var(--vp-accent-op-licht, #a5441a);
  --vpv-gloed: var(--vp-gloed, #ff6b35);

  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: clip;
  color: var(--vpv-ink);
  background: var(--vpv-kaart);
  font-family: var(--color--font-family--urbanist, Urbanist, sans-serif);
}

.vp-verhaal-sectie {
  position: relative;
  display: grid;
  align-items: center;
}

/* ==========================================================================
   1. HUIDIG AI-GEBRUIK
   Eén brede tekststrook met drie redactionele kolommen. De zachte oranje
   gloed trekt aandacht naar de risico's zonder waarschuwingsrood te gebruiken.
   ========================================================================== */

.vp-verhaal-sectie--gebruik {
  min-height: clamp(690px, 88vh, 860px);
  padding-block: clamp(92px, 9vw, 136px) clamp(104px, 10vw, 152px);
  background:
    radial-gradient(ellipse 52% 44% at 87% 13%, rgba(255, 107, 53, .09), transparent 72%),
    linear-gradient(180deg, var(--vpv-kaart), var(--vpv-papier));
}

.vp-verhaal-inhoud,
.vp-verhaal-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

.vp-ai-gebruik-intro {
  max-width: 680px;
}

.vp-ai-gebruik-intro h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--vpv-navy);
  font-size: var(--_typography---typography--h2);
  line-height: var(--_typography---font-line-height--small);
  letter-spacing: -1px;
  text-wrap: balance;
}

.vp-ai-gebruik-intro h2 .blue-text-color {
  color: var(--vpv-accent);
}

.vp-ai-gebruik-intro p {
  max-width: 52ch;
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  color: var(--vpv-body);
  text-wrap: pretty;
}

.vp-ai-gebruik-punten {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  list-style: none;
  margin: clamp(52px, 6vw, 76px) 0 0;
  padding: 0;
}

.vp-ai-gebruik-punt {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-areas:
    "nummer kop"
    "icoon icoon"
    "tekst tekst";
  column-gap: 16px;
  align-content: start;
  min-width: 0;
  padding: clamp(30px, 3.2vw, 42px) clamp(24px, 3.2vw, 38px) clamp(34px, 3.6vw, 48px);
  border: 1px solid var(--vpv-lijn);
  border-radius: 28px;
  background: color-mix(in srgb, var(--vpv-band) 72%, var(--vpv-kaart));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .68),
    0 24px 44px -40px rgba(30, 58, 95, .34);
}

.vp-ai-gebruik-nummer {
  grid-area: nummer;
  display: block;
  margin: 0;
  color: var(--vpv-accent);
  font-size: clamp(38px, calc(2.2vw + 20px), 52px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

/* Illustraties blijven vrij in het verhaalvlak. De graphics-agent kan hier
   inline SVG of een img plaatsen; er ontstaat bewust geen icoonkaarthouder. */
.vp-ai-gebruik-icoon {
  grid-area: icoon;
  display: grid;
  align-items: end;
  justify-self: center;
  width: min(100%, 176px);
  height: 144px;
  margin: clamp(22px, 2.4vw, 30px) 0 clamp(22px, 2.4vw, 30px);
  color: var(--vpv-navy);
}

.vp-ai-gebruik-icoon > svg,
.vp-ai-gebruik-icoon > img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 16px;
  box-shadow: 0 16px 28px -26px rgba(30, 58, 95, .32);
}

.vp-ai-gebruik-punt h3 {
  grid-area: kop;
  align-self: center;
  max-width: 15ch;
  margin: 0;
  color: var(--vpv-ink);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.04;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.vp-ai-gebruik-punt p {
  grid-area: tekst;
  max-width: 31ch;
  margin: 0;
  color: var(--vpv-body);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.52;
  font-weight: 600;
  text-wrap: pretty;
}

/* Vraag is echte ankerlink. Geen knopvorm: tekst, lijn en pijl tonen richting. */
.vp-ai-gebruik-vraag-kop {
  margin: 0;
}

.vp-ai-gebruik-vraag {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(40px, 5vw, 62px);
  color: var(--vpv-navy);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.018em;
  text-decoration: none;
  text-wrap: balance;
}

.vp-ai-gebruik-vraag::after {
  content: "\2193";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.8em;
  height: 1.8em;
  border-left: 1px solid var(--vpv-accent);
  color: var(--vpv-accent);
  font-size: .82em;
  line-height: 1;
  transition: transform .22s cubic-bezier(.16, 1, .3, 1);
}

.vp-ai-gebruik-vraag:hover {
  color: var(--vpv-accent);
}

.vp-ai-gebruik-vraag:hover::after {
  transform: translateY(4px);
}

.vp-ai-gebruik-vraag:focus-visible {
  outline: 3px solid var(--vpv-accent);
  outline-offset: 6px;
}

/* ==========================================================================
   2. WAAR GAAN GEGEVENS HEEN?
   Bestaande data-illustratie krijgt meer beeldruimte dan de vraag. De lijn
   bovenaan maakt deze verdieping zichtbaar zonder een los kaartvlak te bouwen.
   ========================================================================== */

.vp-verhaal-sectie--gegevens,
#uw-gegevens {
  min-height: clamp(690px, 90vh, 880px);
  padding-block: clamp(88px, 9vw, 128px);
  background:
    radial-gradient(ellipse 38% 38% at 76% 52%, rgba(255, 107, 53, .04), transparent 74%),
    linear-gradient(180deg, var(--vpv-papier), var(--vpv-kaart) 78%);
}

.vp-verhaal-sectie--gegevens::before,
#uw-gegevens::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), 1000px);
  height: 1px;
  background: linear-gradient(90deg, var(--vpv-lijn), rgba(225, 219, 206, .18));
  transform: translateX(-50%);
}

.vp-verhaal-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(480px, 1.28fr);
  align-items: center;
  gap: clamp(44px, 6vw, 84px);
}

.vp-verhaal-tekst {
  position: relative;
  z-index: 2;
  max-width: 390px;
}

.vp-verhaal-tekst h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--vpv-navy);
  text-wrap: balance;
}

.vp-verhaal-tekst h2 em,
.vp-verhaal-tekst h2 .blue-text-color {
  color: var(--vpv-accent);
  font-style: normal;
}

.vp-verhaal-tekst p {
  max-width: 38ch;
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  color: var(--vpv-body);
  text-wrap: pretty;
}

.vp-verhaal-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  color: var(--vpv-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vp-verhaal-link:hover {
  color: var(--vpv-navy);
}

.vp-verhaal-link:focus-visible {
  outline: 3px solid var(--vpv-accent);
  outline-offset: 3px;
}

.vp-verhaal-beeld {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .vp-verhaal-sectie--gebruik,
  .vp-verhaal-sectie--gegevens,
  #uw-gegevens {
    min-height: auto;
  }

  .vp-verhaal-grid {
    grid-template-columns: minmax(220px, .7fr) minmax(390px, 1.3fr);
    gap: clamp(28px, 4vw, 48px);
  }

  .vp-verhaal-tekst {
    max-width: 330px;
  }

  .vp-ai-gebruik-punten {
    grid-template-columns: minmax(0, 1fr);
  }

  .vp-ai-gebruik-punt,
  .vp-ai-gebruik-punt:first-child,
  .vp-ai-gebruik-punt:last-child {
    padding: clamp(28px, 5vw, 40px);
  }
}

@media screen and (max-width: 767px) {
  .vp-verhaal-sectie--gebruik {
    padding-block: clamp(72px, 12vw, 96px) clamp(82px, 14vw, 112px);
  }

  .vp-verhaal-inhoud,
  .vp-verhaal-grid {
    padding-inline: clamp(20px, 5vw, 32px);
  }

  .vp-ai-gebruik-intro h2 {
    max-width: 14ch;
  }

  .vp-ai-gebruik-punten {
    grid-template-columns: minmax(0, 1fr);
    margin-top: clamp(44px, 9vw, 60px);
  }

  .vp-ai-gebruik-icoon {
    width: min(100%, 176px);
    height: 144px;
  }

  .vp-ai-gebruik-punt h3 {
    max-width: 18ch;
  }

  .vp-ai-gebruik-punt p {
    max-width: 39ch;
  }

  .vp-ai-gebruik-vraag {
    margin-top: clamp(34px, 8vw, 48px);
  }

  .vp-verhaal-sectie--gegevens,
  #uw-gegevens {
    padding-block: clamp(72px, 12vw, 96px);
  }

  .vp-verhaal-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(30px, 7vw, 48px);
  }

  .vp-verhaal-tekst {
    max-width: 520px;
  }

  .vp-verhaal-tekst h2 {
    max-width: 16ch;
  }

  .vp-verhaal-beeld {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media screen and (max-width: 479px) {
  .vp-verhaal-sectie--gebruik {
    padding-block: 68px 78px;
  }

  .vp-verhaal-inhoud,
  .vp-verhaal-grid {
    padding-inline: 20px;
  }

  .vp-ai-gebruik-punt p {
    font-size: 16px;
  }

  .vp-ai-gebruik-vraag {
    align-items: flex-start;
    font-size: 21px;
  }

  .vp-ai-gebruik-vraag::after {
    margin-top: -.32em;
  }

  .vp-verhaal-sectie--gegevens,
  #uw-gegevens {
    padding-block: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vp-verhaal-sectie,
  .vp-verhaal-inhoud,
  .vp-verhaal-grid,
  .vp-verhaal-tekst,
  .vp-verhaal-beeld,
  .vp-ai-gebruik-vraag::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
