:root{
  --bg-0: #cfd6dd;
  --bg-1: #d7dee5;
  --ink: #0c1117;
  --muted: rgba(12,17,23,.7);
  --glass: rgba(255,255,255,.40);
  --glass2: rgba(255,255,255,.22);
  --radius: 18px;
  --shadow: 0 24px 80px rgba(12,17,23,.18);
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #e7ebef;
  overflow-x:hidden;
}
.container{
  width:min(1200px, calc(100% - 48px));
  margin-inline:auto;
}
/* HEADER */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(255,255,255,.55), rgba(255,255,255,.18));
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.header-inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
.brand img{ width:34px; height:34px; object-fit:contain; }
.brand-text{ font-weight:600; letter-spacing:-0.02em; }
.nav{
  display:flex;
  gap:22px;
  align-items:center;
}
.nav a {
  text-decoration: none;
  color: rgba(12, 17, 23, 0.7);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

/* De onzichtbare lijn */
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--accent-blue, #2056ff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav a:hover {
  color: #0c1117;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav a {
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 4px 12px rgba(12, 17, 23, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  color: #0c1117;
  transform: translateY(-1px);
}
.header-cta{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(32,86,255,.92);
  color:white;
  font-weight:600;
  font-size:14px;
  box-shadow: 0 10px 30px rgba(32,86,255,.25);
}
.header-cta {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.02);
  background: #2056ff; /* Iets verzadigder blauw */
  box-shadow: 0 15px 35px rgba(32, 86, 255, 0.35);
}

/* De 'Sweep' animatie bij hover */
.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.header-cta:hover::before {
  left: 100%;
}
/* Standaard staat de header zoals hij nu is */
.site-header {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* De 'scrolled' status voor op donkere achtergronden */
.site-header.scrolled {
  background: rgba(12, 17, 23, 0.85); /* Donkere achtergrond */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tekstkleuren in de header aanpassen bij scroll */
.site-header.scrolled .brand-text,
.site-header.scrolled .nav a {
  color: #ffffff;
}

.site-header.scrolled .nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Optioneel: logo inverteren als dat nodig is */
.site-header.scrolled .brand img {
  filter: brightness(0) invert(1);
}
/* desktop default: hamburger uit */
.nav-toggle{ display:none; }

/* PAGE */
.page{
  padding-top: 20px;
  opacity:0;
  transition: opacity .6s ease, transform .6s ease;
}
.page[data-ready="true"]{
  opacity:1;
}
/* HERO */
.hero{
  position:relative;
  min-height: calc(100vh - 76px);
  display:flex;
  align-items:stretch;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(900px 600px at 18% 88%, rgba(168, 120, 255, .35), transparent 60%),
    radial-gradient(800px 520px at 10% 92%, rgba(255, 140, 180, .18), transparent 62%),
    radial-gradient(900px 700px at 78% 18%, rgba(120, 200, 255, .18), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items:center;
  padding: 46px 0 36px;
}
.hero-eyebrow{
  letter-spacing: .28em;
  font-size: 12px;
  color: rgba(12,17,23,.55);
  font-weight:600;
  margin-bottom: 18px;
}
.hero-title{
  margin:0 0 18px;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .95;
  letter-spacing: -0.04em;
}
.hero-italic{
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-text{
  margin: 0 0 22px;
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-cta{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
}
.btn-primary{
  background: rgba(32,86,255,.92);
  color:white;
  box-shadow: 0 12px 34px rgba(32,86,255,.22);
}
.btn-ghost{
  color: rgba(12,17,23,.88);
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(12px);
}
/* ============================================================
   HERO RIGHT CARD - CHIRURGISCHE UPDATE (WIT NAAR ZWART)
   ============================================================ */
.hero-right {
  position: relative;
  height: min(620px, 70vh);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo {
  position: relative;
  width: min(420px, 42vw);
  height: 100%;
  border-radius: 28px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  isolation: isolate;
}
.hero-years-num {
  font-size: clamp(120px, 18vw, 260px);
  line-height: .85;
  letter-spacing: -0.06em;
  font-weight: 700;
  color: #0c1117 !important;
  -webkit-text-stroke: 0px transparent !important;
  text-shadow: none !important;
  transition: color 0.5s ease;
}
.hero-years-label {
  margin-top: 10px;
  font-size: clamp(14px, 2.2vw, 30px);
  letter-spacing: .35em;
  text-transform: lowercase;
  color: rgba(12, 17, 23, 0.6) !important;
  transition: color 0.5s ease;
}

.hero-photo .hero-years-num {
  display: inline-block;
  transform: translateX(-4%);
}
.hero-years {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
/* SECTIONS */
.section{
  padding: 90px 0;
  background: #eef2f6;
  border-top: 1px solid rgba(12,17,23,.05);
}
/* FOOTER */
.site-footer{
  padding: 28px 0;
  background: #eef2f6;
  border-top: 1px solid rgba(12,17,23,.05);
}
.footer-inner{ color: rgba(12,17,23,.65); font-size: 14px; }
/* INTRO ANIMATION */
#intro{
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
  background: #0b1117;
}
.intro-stage{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  opacity:0;
}
.intro-logo{
  display:block;
  width:auto;
  height:auto;
  transform: translateZ(0);
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.35));
}
.intro-logo--big{ width: min(44vw, 520px); }
.intro-logo--tile{ width: 64px; opacity:.95; }
.intro-stage--1{ opacity:1; }
#intro.is-2 .intro-stage--1{ opacity:0; transition: opacity .35s ease; }
#intro.is-2 .intro-stage--2{ opacity:1; transition: opacity .35s ease; }
#intro.is-3 .intro-stage--2{ opacity:0; transition: opacity .35s ease; }
#intro.is-3 .intro-stage--3{ opacity:1; transition: opacity .35s ease; }
.intro-mask{
  width: min(52vw, 620px);
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  transform: translateY(10px) scale(.92);
  animation: introMaskIn .65s ease forwards;
}
@keyframes introMaskIn{
  to{ transform: translateY(0) scale(1); }
}
.intro-tile{
  width: 92px;
  height: 92px;
  border-radius: 22px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.92);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transform: scale(1.2);
  animation: introTileIn .5s ease forwards;
}
@keyframes introTileIn{ to{ transform: scale(1); } }
#intro.done{
  opacity:0;
  transition: opacity .55s ease;
}

/* FORCE: watermark altijd exact gecentreerd in de card */
.hero-photo .hero-years{
  position:absolute !important;
  top:50% !important;
  left:50% !important;
  transform: translate(-50%, -50%) !important;
  width:100% !important;
  height:100% !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  padding: 0 6% !important;
  margin: 0 !important;
}
.hero-photo .hero-years-num{
  margin: 0 !important;
  transform: translateX(-4%) !important;
}
.hero-photo .hero-years-label{
  margin: 10px 0 0 !important;
}
/* =========
   Animated glow behind the hero card (4B style)
   ========= */
.hero-photo{
  position: relative;
  isolation: isolate;
}
.hero-photo::before{
  content:"";
  position:absolute;
  inset: -26px;
  z-index: -1;
  border-radius: 40px;
  filter: blur(22px);
  opacity: .75;
  transform: translateZ(0);
  background:
    radial-gradient(420px 320px at 20% 80%, rgba(168,120,255,.45), transparent 65%),
    radial-gradient(420px 320px at 80% 30%, rgba(120,200,255,.38), transparent 70%),
    radial-gradient(520px 360px at 50% 50%, rgba(255,140,180,.18), transparent 75%);
}
.hero-photo::after{
  content:"";
  position:absolute;
  inset: -34px;
  z-index: -1;
  border-radius: 46px;
  background:
    radial-gradient(380px 260px at 30% 40%, rgba(120,200,255,.22), transparent 70%),
    radial-gradient(420px 300px at 70% 60%, rgba(168,120,255,.20), transparent 72%);
  filter: blur(26px);
  opacity: .55;
  mix-blend-mode: screen;
  transform: translate3d(0,0,0);
  animation: glowFloat 6.5s ease-in-out infinite;
max-width: 100vw; /* Voorkomt dat de gloed breder wordt dan het scherm */
    pointer-events: none;
    left: 50% !important;
    transform: translateX(-50%) !important; /* Centreert de gloed op de kaart */
}
@keyframes glowFloat{
  0%   { transform: translate3d(-8px, 10px, 0) scale(1); }
  50%  { transform: translate3d(10px, -8px, 0) scale(1.03); }
  100% { transform: translate3d(-8px, 10px, 0) scale(1); }
}

.hero-years-num{
  color: rgba(12,17,23,.85);
  text-shadow: 0 10px 30px rgba(12,17,23,.08);
}
.hero-years-label{
  color: rgba(12,17,23,.65);
}
.hero-photo .hero-years-num{
  display: inline-block;
  transform: translateX(-6%);
}
:root {
    --bg-dark: #0a0a0b;
    --card-bg: rgba(255, 255, 255, 0.03);
    --accent-blue: #3b66f5;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
}
.pricing-section {
    background-color: var(--bg-dark);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.sub-text {
    color: var(--accent-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.main-title {
    font-size: 3rem;
    margin-top: 10px;
}
.main-title span {
    color: var(--text-muted);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.price-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}
.price-card.featured {
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 40px rgba(59, 102, 245, 0.15);
}
.price-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 102, 245, 0.1) 0%, transparent 70%);
    z-index: 0;
}
.card-content {
    position: relative;
    z-index: 1;
}
.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 50px;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}
.features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}
.features li::before {
    content: '✓';
    color: var(--accent-blue);
    margin-right: 10px;
    font-weight: bold;
}
.btn-primary, .btn-secondary {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.process-section {
    background-color: #e9ecef;
    padding: 100px 0;
    color: #0a0a0b;
    font-family: 'Inter', sans-serif;
}
.process-wrapper {
    display: flex;
    position: relative;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}
.process-left {
    flex: 0 0 500px;
    min-width: 500px;
    position: sticky;
    top: 20vh;
    height: auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
    box-sizing: border-box;
    align-items: flex-start;
}
.number-container {
    font-size: 20vw;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #0a0a0b;
    text-align: right;
    width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    display: block;
    margin-top: -0.1em;
}
.number-container.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}
.process-wrapper {
    display: flex;
    position: relative;
    gap: 0; 
    max-width: 1600px;
    margin: 0 auto;
    align-items: flex-start;
}
.process-right {
    flex: 1;
    padding-left: 80px;
}
.process-line-container {
    width: 2px;
    position: relative;
    align-self: stretch;
    margin-top: 20px;
}
.line-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}
.line-active {
    position: absolute;
    width: 100%;
    height: 10%;
    background: #20c997;
    box-shadow: 0 0 15px rgba(32, 201, 151, 0.3);
    transition: height 0.1s ease-out;
}
.process-right {
    flex: 1.5;
}
.step {
    padding-bottom: 50vh;
    opacity: 0.2;
    transition: opacity 0.5s ease;
}
.step:last-child {
    padding-bottom: 10vh;
}
.step.is-active {
    opacity: 1;
}
.step h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    font-weight: 700;
}
.step p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #495057;
    max-width: 480px;
}
.process-section-title {
    margin-bottom: 120px;
    text-align: left;
}
.process-header {
    margin-bottom: 180px;
    padding-left: 20px;
}
.line-active {
    position: absolute;
    width: 100%;
    height: 0%; 
    background: #20c997;
    box-shadow: 0 0 15px rgba(32, 201, 151, 0.3);
    transition: opacity 0.3s ease; 
}

#portfolio.horizontal-portfolio {
    height: 400vh;
    position: relative;
    background: #ffffff;
    margin: 0;
    padding: 0;
}
#portfolio .sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}
#portfolio .portfolio-container {
    display: flex;
    padding-left: 10%;
    width: auto !important;
    margin: 0 !important;
    will-change: transform;
}
#portfolio .portfolio-intro {
    min-width: 450px;
    margin-right: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}
#portfolio .portfolio-item {
    position: relative;
    min-width: 850px; 
    height: 550px;
    margin-right: 180px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
#portfolio .glass-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 50px 100px rgba(0,0,0,0.12);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
#portfolio .glass-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
#portfolio .glass-card:hover img {
    transform: scale(1.04);
}
#portfolio .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}
#portfolio .parallax-text {
    position: absolute;
    bottom: -15px;;
    z-index: 20;
    left: 40px;
    pointer-events: none;
    will-change: transform;
    text-align: left;
}
#portfolio .category {
    color: #3b71fe;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 8px;
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
}
/* Update deze specifieke classes in je CSS */

#portfolio .parallax-text {
    position: absolute;
    bottom: 40px; /* Iets omhoog gehaald zodat het mooier in de kaart staat */
    left: 40px;
    z-index: 20;
    pointer-events: none;
    will-change: transform;
    text-align: left;
    /* Zorg dat de container breed genoeg mag zijn */
    width: 100%; 
}

#portfolio .project-title {
    /* Iets kleiner gemaakt (van 4rem naar 3rem) zodat het op één regel past op de kaart */
    font-size: clamp(1.8rem, 3.5vw, 3rem); 
    line-height: 1;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    
    /* Dwingt de tekst op één regel */
    white-space: nowrap; 
}

#portfolio .project-title .italic-text {
    font-family: "Instrument Serif", Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    /* Zorg dat de spatie voor het woord behouden blijft */
    display: inline-block;
    margin-left: 0.2em; 
}

.faq-section {
    background-color: #0c1117;
    background: radial-gradient(circle at top right, #1a2236 0%, #0c1117 60%);
    padding: 120px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.faq-info .section-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 24px;
}
.faq-info .intro-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 113, 254, 0.4);
}
.accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.accordion-item.active .accordion-header {
    color: #3b71fe;
}
.icon-box {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.accordion-item.active .icon-box {
    transform: rotate(45deg);
    background: #3b71fe;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 30px;
}
.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 24px;
}
.accordion-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.faq-master-wrapper {
    background-color: #0c1117;
    background: radial-gradient(circle at 80% 20%, #1a2236 0%, #0c1117 70%);
    padding: 120px 0;
    color: #ffffff;
    overflow: hidden;
}
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    padding: 0 24px;
}
.faq-eyebrow {
    color: #3b71fe;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 15px;
}
.faq-main-title {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}
.faq-description {
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 400px;
}
.faq-accordion-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(59, 113, 254, 0.5);
    background: rgba(255, 255, 255, 0.05);
}
.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}
.faq-plus {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s ease;
}
.faq-plus::before, .faq-plus::after {
    content: '';
    position: absolute;
    background: #3b71fe;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after { width: 2px; height: 14px; }
.faq-item.active .faq-plus { transform: rotate(45deg); }
.faq-item.active .faq-plus::before, 
.faq-item.active .faq-plus::after { background: #fff; }
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}
.faq-item.active .faq-panel {
    max-height: 500px;
    padding-bottom: 24px;
    transition: max-height 0.4s ease-in-out;
}
.faq-panel p {
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}
.faq-master-wrapper {
    background-color: #0c1117;
    background: radial-gradient(circle at 80% 20%, #1a2236 0%, #0c1117 70%);
    padding: 120px 0;
    color: #ffffff;
    overflow: hidden;
}
.faq-panel p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}
.faq-panel strong {
    color: #3b71fe;
}
#portfolio.horizontal-portfolio {
    height: 400vh; 
    position: relative;
    margin: 0;
    padding: 0;
    background: 
        radial-gradient(1000px 700px at 10% 50%, rgba(168, 120, 255, 0.25), transparent 70%), 
        radial-gradient(800px 600px at 20% 80%, rgba(255, 140, 180, 0.12), transparent 60%),
        linear-gradient(105deg, var(--bg-1) 0%, var(--bg-0) 100%);
    background-attachment: fixed;
}
/* De basis header is al licht, dus we focussen op de staat boven donkere secties */
.site-header.on-dark {
    /* Geen transparantie meer, gewoon solide wit */
    background: #ffffff !important; 
    
    /* Een scherpe schaduw toevoegen voor diepte boven het zwart */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    
    /* De border mag iets duidelijker op donkere vlakken */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Zorg dat de navigatie tekst op de witte balk altijd diepzwart is */
.site-header.on-dark .nav a,
.site-header.on-dark .brand-text {
    color: #0c1117 !important;
    opacity: 1 !important;
}

/* Zorg dat de tekst in de header ALTIJD donker blijft voor die witte look */
.site-header.on-dark .nav a,
.site-header.on-dark .brand-text {
    color: #0c1117 !important; 
}

/* De CTA knop mag extra knallen op de witte glazen balk */
.site-header.on-dark .header-cta {
    background: #2056ff;
    box-shadow: 0 8px 20px rgba(32, 86, 255, 0.2);
}
.scroll-pin-section {
  height: 300vh; /* De 'scroll-lengte' van de animatie */
  position: relative;
  background: #0c1117; /* Donkere basis voor contrast */
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wheel-wrapper {
  position: relative;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
}

.scroll-wheel svg {
  width: 100%;
  height: 100%;
  /* Verwijder hier de 'fill' om verwarring te voorkomen */
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
}

.scroll-wheel svg text {
  /* De 'Inter' font voor de strakke agency look */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* De dikke weight geeft autoriteit */
  font-weight: 800;
  
  /* Scherpere rendering voor premium feel */
  -webkit-font-smoothing: antialiased;
  
  /* Gebruik de donkere inkt-kleur van je branding voor contrast op de gloed */
  fill: rgba(12, 17, 23, 0.7);
}
.wheel-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.wheel-logo img {
  width: 40px;
}
#scroll.scroll-pin-section {
  /* De exacte gradiënten uit jouw Hero-sectie */
  background: 
    radial-gradient(900px 600px at 18% 88%, rgba(168, 120, 255, 0.35), transparent 60%),
    radial-gradient(800px 520px at 10% 92%, rgba(255, 140, 180, 0.18), transparent 62%),
    radial-gradient(900px 700px at 78% 18%, rgba(120, 200, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #d7dee5, #cfd6dd); /* Gebruikt je --bg-1 en --bg-0 variabelen */
  
  /* Zorg dat de tekst van het wiel goed leesbaar blijft op deze lichte achtergrond */
  color: #0c1117;
}

/* Pas ook de kleur van de SVG tekst aan voor contrast */
#scroll .scroll-wheel svg {
  fill: rgba(12, 17, 23, 0.6); /* Donkergrijs/inkt kleur met subtiele opacity */
}
#scroll.scroll-pin-section {
  height: 300vh;
  position: relative;
  /* We halen de achtergrond hier weg en plaatsen hem in de sticky-container */
  background: transparent; 
}

/* ============================================================
   SECTION #SCROLL - HIGH END AGENCY OPTIMALISATIE
   ============================================================ */

#scroll.scroll-pin-section {
  height: 300vh; /* De scroll-lengte voor de wiel-animatie */
  position: relative;
  background: transparent;
}

#scroll .sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  
  /* EXACTE HERO GRADIENTS VOOR CONSISTENTE BRANDING */
  background: 
    radial-gradient(900px 600px at 18% 88%, rgba(168, 120, 255, 0.35), transparent 60%),
    radial-gradient(800px 520px at 10% 92%, rgba(255, 140, 180, 0.18), transparent 62%),
    radial-gradient(900px 700px at 78% 18%, rgba(120, 200, 255, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
    
  /* Fixatie zorgt dat de kleuren niet 'mee-scrollen' maar op hun plek blijven */
  background-size: 100% 100%;
  background-position: center center;
  background-attachment: fixed;
  
  /* Voorbereiding op de zachte glow-transitie via JS */
  transition: background 0.4s ease-out;
}

#scroll .scroll-wheel {
  /* Zijdezachte rotatie zonder tekstvervorming */
  transition: transform 0.1s linear;
  will-change: transform;
}

#scroll .wheel-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 22px;
  display: grid;
  place-items: center;
  
  /* High-end diepte effecten */
  box-shadow: 0 15px 45px rgba(12, 17, 23, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10;
}

#scroll .wheel-logo:hover {
  /* Subtiele interactie voor muisgebruikers */
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 25px 60px rgba(12, 17, 23, 0.12);
}

#scroll .wheel-logo img {
  width: 42px;
  height: auto;
  object-fit: contain;
}
.hero-photo {
  position: relative;
  overflow: hidden; /* Zorgt dat de foto binnen de afgeronde hoeken blijft */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.hero-image-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Zorgt dat je gezicht niet vervormt maar de kaart vult */
  display: block;
}

/* De overlay tekst iets transparanter maken zodat je gezicht goed zichtbaar blijft */
.hero-years {
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(5px);
  pointer-events: none; /* Zorgt dat je niet per ongeluk op de tekst klikt */
}
/* Zorg dat de kaart de afbeelding niet blokkeert */
.hero-photo {
    background: none !important; /* Verwijdert de witte achtergrond */
    padding: 0 !important;       /* Verwijdert eventuele witruimte rond de foto */
    overflow: hidden;            /* Cruciaal voor de afgeronde hoeken */
    display: block;              /* Voorkomt witruimte onder de afbeelding */
}

.hero-image-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Zorgt dat de foto de kaart vult zonder vervorming */
    object-position: center;     /* Centreert je gezicht in de kaart */
    display: block;
    border-radius: 28px;         /* Matcht de radius van de kaart */
}

/* De wrapper die alles bij elkaar houdt */
.stack-wrapper {
    position: relative;
    /* Zorg dat de achtergrondkleur matcht met de volgende sectie voor een naadloze overgang */
    background-color: #0a0a0b; 
}

/* De Hero blijft 'plakken' aan de bovenkant */
.sticky-hero {
    position: sticky;
    top: 0;
    height: 100vh; /* Vult het volledige scherm */
    z-index: 1;    /* Ligt onder de actie-sectie */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* De Actie sectie schuift over de Hero heen */
.pricing-section {
    position: relative;
    z-index: 2;    /* Ligt BOVENOP de hero */
    
    /* Schaduw aan de bovenkant geeft diepte aan de 'overlap' */
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3); 
    
    /* Zorg dat er geen witruimte tussen de secties zit */
    margin-top: 0; 
}

/* 1. Verklein de tekst zodat deze in de afbeelding past */
#portfolio .project-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Was 4rem, nu schaalbaar en kleiner */
    line-height: 1.1;
    max-width: 90%; /* Voorkomt dat tekst uit de kaart loopt */
}

/* 2. Fix de positie van de parallax container */
#portfolio .parallax-text {
    bottom: 40px; /* Iets omhoog van de rand */
    left: 40px;
    /* Belangrijk: we gaan de transform via JS verfijnen */
}

/* Subtiele extra voor de categorie tekst */
#portfolio .category {
    font-size: 0.75rem;
    letter-spacing: 2px;
}
/* De klasse die de header laat wegvliegen */
.site-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none; /* Voorkomt dat je per ongeluk op onzichtbare links klikt */
}
/* Zorg dat verbergen ALTIJD prioriteit heeft boven de witte achtergrond */
.site-header.header-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease !important;
}
/* Forceer de eerste stap naar volledige zichtbaarheid bij aanvang */
.step:first-child {
    opacity: 1 !important;
}

/* ============================================================
   MOBILE: PORTFOLIO VAN HORIZONTAAL -> VERTICAAL
   ============================================================ */
@media (max-width: 980px){

  /* Stop elke horizontale overflow die uit portfolio komt */
  #portfolio.horizontal-portfolio{
    height: auto !important;
    overflow: hidden !important;
  }

  /* Sticky uit op mobiel */
  #portfolio .sticky-wrapper{
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Container wordt column, geen translateX */
  #portfolio .portfolio-container{
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    will-change: auto !important;
    padding: 56px 18px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Intro blok full width */
  #portfolio .portfolio-intro{
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 0 26px 0 !important;
  }

  /* Items full width + normale hoogte */
  #portfolio .portfolio-item{
    min-width: 0 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 22px 0 !important;
  }

  /* Kaart krijgt vaste, mooie mobiele verhouding */
  #portfolio .glass-card{
    width: 100% !important;
    height: 260px !important;      /* voelt premium op mobiel */
    border-radius: 26px !important;
  }

  /* Tekst overlay netjes onderin */
  #portfolio .parallax-text{
    bottom: 18px !important;
    left: 18px !important;
    transform: none !important;     /* JS parallax neutraliseren */
    width: calc(100% - 36px) !important;
  }

  #portfolio .project-title{
    white-space: normal !important; /* op mobiel mag hij afbreken */
    font-size: 28px !important;
    line-height: 1.05 !important;
  }

  #portfolio .category{
    font-size: 12px !important;
    letter-spacing: 2px !important;
  }
}
/* ============================================================
   MOBILE FIX: #werkwijze / process-section (geen horizontale scroll)
   ============================================================ */
@media (max-width: 980px){

  /* extra zekerheid tegen overflow uit deze sectie */
  #werkwijze.process-section{
    overflow: visible !important;
  }

  /* van 3 kolommen -> 1 kolom */
  #werkwijze .process-wrapper{
    flex-direction: column !important;
    gap: 18px !important;
    max-width: 100% !important;
    padding: 0 18px !important;
  }

  /* sticky + vaste breedtes uit */
  #werkwijze .process-left{
    position: relative !important;
    top: auto !important;
    flex: none !important;
    min-width: 0 !important;
    width: 100% !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }

  /* nummer niet meer “duwen” */
  #werkwijze .number-container{
    font-size: clamp(48px, 14vw, 84px) !important;
    text-align: left !important;
    width: 100% !important;
    white-space: normal !important;
    margin-top: 0 !important;
  }

  /* verticale lijn op mobiel uit (scheelt breedte/gedoe) */
  #werkwijze .process-line-container{
    display: none !important;
  }

  /* tekstkolom full width, geen padding-left */
  #werkwijze .process-right{
    flex: none !important;
    width: 100% !important;
    padding-left: 0 !important;
  }

  /* stappen compacter zodat het lekker scrollt */
  #werkwijze .step{
    padding-bottom: 18vh !important;
  }
  #werkwijze .step:last-child{
    padding-bottom: 8vh !important;
  }

  /* typografie iets vriendelijker op mobiel */
  #werkwijze .step h2{
    font-size: clamp(28px, 7vw, 38px) !important;
  }
  #werkwijze .step p{
    font-size: 1rem !important;
    max-width: 100% !important;
  }
}
/* ============================================================
   MOBILE HEADER + HAMBURGER (ONE SOURCE OF TRUTH)
   ============================================================ */
@media (max-width: 980px){

  /* Verberg desktop nav/cta */
  .nav.nav--desktop,
  .header-cta--desktop{ display:none !important; }

  /* Header basis */
  .site-header{ z-index: 50; }
  .site-header .container{
    width: calc(100% - 24px) !important;
  }

  .header-inner{
    height: 72px;
    gap: 12px;
  }

  /* Brand links: mag krimpen, geen overflow */
  .brand{
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }
  .brand img{
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
  .brand-text{
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 56vw;
  }

  /* Hamburger rechts */
  .nav-toggle{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    margin-left: auto;
    flex: 0 0 auto;

    width: 44px;
    height: 44px;
    border-radius: 14px;

    border: 1px solid rgba(12,17,23,.08);
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 26px rgba(12,17,23,.10);
    cursor: pointer;
  }

  .nav-toggle__icon{
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(12,17,23,.88);
    position: relative;
    display:block;
  }
  .nav-toggle__icon::before,
  .nav-toggle__icon::after{
    content:"";
    position:absolute;
    left:0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(12,17,23,.88);
  }
  .nav-toggle__icon::before{ top:-6px; }
  .nav-toggle__icon::after{ top: 6px; }

  /* Hamburger -> X */
  body.menu-open .nav-toggle__icon{ background: transparent; }
  body.menu-open .nav-toggle__icon::before{ top:0; transform: rotate(45deg); }
  body.menu-open .nav-toggle__icon::after{ top:0; transform: rotate(-45deg); }
}

/* ============================================================
   MOBILE MENU OVERLAY (ALWAYS ON TOP, NO STACKING BUGS)
   ============================================================ */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 99990;   /* boven header + hero + alles */
  display: none;
}

body.menu-open .mobile-menu{ display:block; }
body.menu-open{ overflow:hidden; }

.mobile-menu__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(12,17,23,.55);
  backdrop-filter: blur(10px);
}

.mobile-menu__panel{
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: min(380px, calc(100% - 20px));

  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: 0 30px 90px rgba(12,17,23,.28);

  display: flex;
  flex-direction: column;

  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}

body.menu-open .mobile-menu__panel{
  transform: translateX(0);
}

.mobile-menu__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 16px;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12,17,23,.08);
}

.mobile-menu__title{
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.mobile-menu__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(12,17,23,.08);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  display:grid;
  place-items:center;
}

.mobile-nav{
  padding: 12px 14px 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav a{
  text-decoration:none;
  color: rgba(12,17,23,.92);
  font-weight: 650;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(12,17,23,.03);
  border: 1px solid rgba(12,17,23,.06);
}

.mobile-nav__cta{
  background: rgba(32,86,255,.92) !important;
  color:#fff !important;
  border: 1px solid rgba(32,86,255,.35) !important;
  box-shadow: 0 12px 34px rgba(32,86,255,.22);
}
@media (max-width: 980px){
  html, body{
    width: 100%;
    max-width: 100%;
    overflow-x: visible !important;
  }

  /* iOS/Safari: voorkomt rare overflow door transforms */
  body{
    position: relative;
  }

  /* Extra vangrail: geen element mag breder worden dan viewport */
  img, svg, video, canvas{
    max-width: 100%;
  }
}
@media (max-width: 980px){

  /* FAQ: force 1 kolom op mobiel */
  #faq.faq-master-wrapper{
    overflow-x: hidden;
  }

  #faq .faq-container{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 18px !important;
  }

  /* Zorg dat rechterkolom niet buiten beeld kan steken */
  #faq .faq-accordion-right{
    width: 100% !important;
    min-width: 0 !important;
  }

  #faq .faq-item,
  #faq .faq-trigger,
  #faq .faq-panel{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  /* Lange tekst mag afbreken */
  #faq .faq-trigger{
    word-break: break-word;
  }
}
@media (max-width: 980px){
  #werkwijze .process-wrapper{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }

  #werkwijze .process-left,
  #werkwijze .process-right{
    min-width: 0 !important;
  }
}
@media (max-width: 980px){
  .stack-wrapper,
  main#page,
  .site-header{
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
  }
}
@media (max-width: 980px){
  body.menu-open{
    overflow: hidden;
  }
}
/* ✅ DESKTOP: hamburger + mobile menu volledig uit */
@media (min-width: 981px){
  .nav-toggle,
  #mobile-menu,
  .mobile-menu{
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
/* ============================================================
   MOBILE HERO OPTIMALISATIE
   ============================================================ */
@media (max-width: 980px) {
  
  /* 1. Zet de grid om naar 1 kolom */
  .hero-grid {
    grid-template-columns: 1fr !important; /* Forceert alles onder elkaar */
    gap: 40px; /* Ruimte tussen tekst en afbeelding */
    padding-top: 40px;
    text-align: left; /* Zorg dat de container links lijnt */
  }

  /* 2. Tekst links uitgelijnd houden */
  .hero-title, 
  .hero-text, 
  .hero-eyebrow {
    text-align: left !important;
    margin-left: 0;
    margin-right: auto;
  }

  /* 3. CTA knoppen ook links uitlijnen */
  .hero-cta {
    justify-content: flex-start !important;
  }

  /* 4. De afbeelding (hero-right) onder de tekst */
  .hero-right {
    order: 2; /* Zorgt dat deze na de tekst komt */
    height: 450px; /* Vaste hoogte voor de kaart op mobiel */
    width: 100%;
  }

  /* 5. De kaart zelf full-width maken */
  .hero-photo {
    width: 100% !important;
    height: 100% !important;
  }
}
/* ============================================================
   MOBILE SCROLL WHEEL FIX
   ============================================================ */
@media (max-width: 980px) {
  
  /* Zorg dat de sectie op mobiel genoeg hoogte heeft om te scrollen */
  #scroll.scroll-pin-section {
    height: 200vh !important; /* Iets korter dan desktop, maar genoeg voor rotatie */
  }

  /* Forceer de sticky container naar de juiste hoogte */
  #scroll .sticky-container {
    height: 100vh !important;
    position: sticky !important;
    top: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Verklein het wiel voor mobiele schermen zodat het niet buiten beeld valt */
  .wheel-wrapper {
    width: 90vw !important;
    height: 90vw !important;
    max-width: 350px;
    max-height: 350px;
  }

  /* Het logo in het midden ook iets kleiner */
  #scroll .wheel-logo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 16px !important;
  }

  #scroll .wheel-logo img {
    width: 30px !important;
  }

  /* Zorg dat de tekst op het wiel leesbaar blijft */
  .scroll-wheel svg text {
    font-size: 16px !important; /* Iets groter op mobiel voor leesbaarheid */
  }
}
@media (max-width: 980px) {
  /* Forceer hardware versnelling voor het wiel */
  .scroll-wheel {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
  }

  /* Zorg dat de sticky container niet wordt gehinderd door overbodige clips */
  .scroll-pin-section {
    overflow: visible !important;
  }
}
/* ============================================================
   HERO PHOTO SUBTIELE HOVER (Gelijk aan #actie kaarten)
   ============================================================ */

/* Zorg voor een zachte transitie op de kaart zelf */
.hero-photo {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* De hover actie: lift en schaduw */
.hero-photo:hover {
    transform: translateY(-10px) !important; /* De subtiele lift omhoog */
    border-color: rgba(255, 255, 255, 0.2) !important; /* Optioneel: border licht oplichten */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important; /* Versterkte schaduw voor diepte */
}

/* We halen de zoom op de afbeelding eruit voor die rustige 'premium' look */
.hero-photo:hover .hero-image-portrait {
    transform: none !important; 
}
/* ============================================================
   DEFINITIEVE FIX: KILL HORIZONTALE SCROLL OP MOBIEL
   ============================================================ */

@media (max-width: 980px) {
    /* 1. De absolute blokkade op de hoofdcontainers */
    html, body {
        width: 100% !important;
        max-width: 100vw !important;
        /* We laten overflow op visible voor de scripts, maar blokkeren de 'lek' in de wrapper */
        overflow-x: visible !important; 
    }

    /* 2. De wrapper fungeert als de harde vangrail */
    .stack-wrapper, 
    main#page, 
    .page,
    section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: clip !important; /* 'clip' stopt scrollen zonder sticky te breken */
        box-sizing: border-box !important;
    }

    /* 3. Forceer alle sectie-inhoud binnen het scherm */
    .container {
        width: calc(100% - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important; /* Voorkomt dat inhoud de container opzij duwt */
    }

    /* 4. Onzichtbare schaduwen en gloeden van foto's temmen */
    .hero-photo, 
    .hero-photo::before, 
    .hero-photo::after {
        max-width: 100% !important;
    }
    
    /* 5. Voorkom dat extreem lange woorden de boel oprekken */
    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* ============================================================
   FIX #actie: card randen/shadows niet afknippen (mobiel)
   ============================================================ */
@media (max-width: 980px){

  /* laat deze sectie weer overflow tonen */
  #actie,
  #actie.pricing-section{
    overflow: visible !important;
  }

  /* container mag NIET hidden zijn in deze sectie */
  #actie .container{
    overflow: visible !important;
  }

  /* geef iets extra ruimte zodat schaduw/glow niet tegen de rand plakt */
  #actie .pricing-grid{
    padding-inline: 10px !important;
  }
}
@media (max-width: 980px){
  #actie .pricing-grid{
    grid-template-columns: 1fr !important;
  }
}
/* ============================================================
   MOBIEL: foto in hero uitzetten
   ============================================================ */
@media (max-width: 980px){
  .hero-right{
    display: none !important;
  }

  /* hero wordt dan 1 kolom tekst */
  .hero-grid{
    grid-template-columns: 1fr !important;
  }
}
/* ============================================================
   MOBIEL: #actie titel kleiner en rustiger
   ============================================================ */
@media (max-width: 980px){

  #actie .main-title{
    font-size: 2rem !important;     /* was ~3–4rem */
    line-height: 1.15 !important;
  }

  /* optioneel: de grijze tweede regel iets subtieler */
  #actie .main-title span{
    font-size: 1.8rem !important;
    display: block;
  }
}
/* ============================================================
   MOBIEL: "Meest gekozen" badge netjes boven tekst
   ============================================================ */
@media (max-width: 980px){

  #actie .price-card.featured{
    padding-top: 56px !important; /* ruimte voor badge */
  }

  #actie .price-card.featured .badge{
    position: static !important;  /* uit absolute modus */
    display: inline-block;
    margin-bottom: 12px;
  }
}
/* ============================================================
   MOBIEL: "Op aanvraag" kleiner in Premium kaart
   ============================================================ */
@media (max-width: 980px){

  /* target de Premium kaart (3e card) */
  #actie .pricing-grid .price-card:nth-child(3) .price{
    font-size: 1.6rem !important;
    line-height: 1.1 !important;
    white-space: normal !important;
    word-break: keep-all; /* voorkomt rare afbreking */
  }
}
/* ============================================================
   MOBIEL: scroll wheel tekst fixen
   ============================================================ */
@media (max-width: 980px){

  #scroll .scroll-wheel svg text{
    font-size: 12px !important;        /* iets kleiner */
    letter-spacing: 2px !important;   /* VEEL belangrijker */
  }
}
@media (max-width: 980px){
  #scroll .scroll-wheel svg text{
    font-size: 16px !important;   /* was ±12–14 */
    letter-spacing: 2.5px !important;
  }
}
/* ============================================================
   #werkwijze (mobiel): compacter + groene progress-lijn terug
   ============================================================ */
@media (max-width: 980px){

  /* 1) Compacter overall */
  #werkwijze.process-section{
    padding: 60px 0 !important;          /* was 100px */
  }

  #werkwijze .process-header{
    margin-bottom: 40px !important;      /* was 180px */
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  #werkwijze .process-wrapper{
    gap: 14px !important;
    padding: 0 18px !important;
  }

  /* steps minder “mega lang” */
  #werkwijze .step{
    padding-bottom: 10vh !important;     /* was 18vh */
  }
  #werkwijze .step:last-child{
    padding-bottom: 6vh !important;
  }

  #werkwijze .step h2{
    margin-bottom: 12px !important;
  }
  #werkwijze .step p{
    line-height: 1.55 !important;
  }

  /* 2) Groene lijn terug op mobiel */
  #werkwijze .process-line-container{
    display: block !important;           /* jij had 'none' */
    width: 2px !important;
    margin-top: 8px !important;
  }

  /* lijn netjes zichtbaar */
  #werkwijze .line-background{
    background: rgba(0,0,0,0.08) !important;
  }

  #werkwijze #progress-line.line-active{
    display: block !important;
    background: #20c997 !important;
    box-shadow: 0 0 15px rgba(32, 201, 151, 0.3) !important;
  }

  /* 3) Op mobiel: lijn tussen nummer en tekst zetten */
  #werkwijze .process-left{
    padding-right: 0 !important;
  }
  #werkwijze .process-right{
    padding-left: 18px !important;       /* ruimte voor lijn */
  }
}
/* ============================================================
   #werkwijze (mobiel): groene lijn zichtbaar (simpel)
   ============================================================ */
@media (max-width: 980px){

  /* lijn als vaste linkerrand naast de tekstkolom */
  #werkwijze .process-right{
    position: relative !important;
    padding-left: 22px !important;       /* ruimte voor lijn */
  }

  /* grijze basislijn */
  #werkwijze .process-right::before{
    content: "";
    position: absolute;
    left: 10px;                          /* positie van de lijn */
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.10);
    border-radius: 999px;
  }

  /* groene “fill” (nu gewoon zichtbaar; later kunnen we hem dynamisch vullen) */
  #werkwijze .process-right::after{
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    height: 130px;                        /* start: klein stukje groen */
    width: 2px;
    background: #20c997;
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(32,201,151,0.35);
  }

  /* oude lijnkolom op mobiel uit laten (die werkt niet in column-layout) */
  #werkwijze .process-line-container{
    display: none !important;
  }
}
@media (max-width: 980px){
  #werkwijze .process-right::after{
    height: var(--fill, 130px); /* 👈 start al zichtbaar */
  }
}
@media (max-width: 980px){
  #werkwijze .process-right::after{
    height: var(--fill, 130px);
  }
}
/* ============================================================
   MOBIEL: toon 02/03/04 per step (zonder JS / zonder HTML edits)
   ============================================================ */
@media (max-width: 980px){

  /* we laten het grote losse nummer (01.) bovenaan staan */
  #werkwijze #active-number{
    display: block !important;
  }

  /* elke step krijgt zijn eigen nummer boven de titel */
  #werkwijze .step{
    position: relative;
    padding-top: 18px !important;
  }

  #werkwijze .step::before{
    content: attr(data-step);
    display: block;
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(12,17,23,.35);
    margin-bottom: 10px;
  }
}
@media (max-width: 980px){
  #werkwijze .process-left{ display:none !important; }
}
/* ============================================================
   #portfolio (mobiel): minder druk -> tekst onder de kaart
   ============================================================ */
@media (max-width: 980px){

  /* kaart iets minder massaal */
  #portfolio .glass-card{
    height: 210px !important;            /* was 260 */
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  /* image rustiger (minder contrast/druk) */
  #portfolio .glass-card img{
    filter: saturate(0.85) contrast(0.92) brightness(0.92);
    transform: scale(1.02);
  }

  /* overlay donkerder onderin voor leesbaarheid, maar subtiel */
  #portfolio .card-overlay{
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 55%, transparent 100%) !important;
  }

  /* ✅ BELANGRIJK: zet de tekst NIET meer over de afbeelding */
  #portfolio .parallax-text{
    position: static !important;
    transform: none !important;
    margin-top: 12px !important;
    padding: 0 2px !important;
    width: 100% !important;
    pointer-events: auto !important;
  }

  /* tekst kleuren weer "normaal" (niet wit) omdat hij onder de kaart staat */
  #portfolio .category{
    color: #3b71fe !important;
    margin-bottom: 6px !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
  }

  #portfolio .project-title{
    color: #0c1117 !important;
    text-shadow: none !important;
    font-size: 26px !important;
    line-height: 1.05 !important;
    white-space: normal !important;
  }

  #portfolio .project-title .italic-text{
    color: #0c1117 !important;
  }

  /* extra spacing tussen items */
  #portfolio .portfolio-item{
    margin-bottom: 28px !important;
  }
}
/* ============================================================
   #portfolio (mobiel): image boven, tekst onder (fix layout)
   ============================================================ */
@media (max-width: 980px){

  /* item wordt column */
  #portfolio .portfolio-item{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  /* kaart full width */
  #portfolio .glass-card{
    width: 100% !important;
    height: 210px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  /* tekstblok onder de kaart */
  #portfolio .parallax-text{
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 4px !important;
    transform: none !important;
  }

  /* tekst niet wit (want niet meer in image) */
  #portfolio .project-title,
  #portfolio .project-title .italic-text{
    color: #0c1117 !important;
    text-shadow: none !important;
    white-space: normal !important;
    font-size: 26px !important;
    line-height: 1.05 !important;
  }

  #portfolio .category{
    font-size: 12px !important;
    letter-spacing: 2px !important;
    margin-bottom: 6px !important;
  }
}
@media (max-width: 980px), (hover: none), (pointer: coarse){
  #portfolio.horizontal-portfolio{
    background-attachment: scroll !important;
  }

  #scroll .sticky-container{
    background-attachment: scroll !important;
  }
}
@media (max-width: 980px), (hover: none), (pointer: coarse){
  .hero-photo::before,
  .hero-photo::after{
    display: none !important;
  }
}
@media (hover: none), (pointer: coarse){
  .nav a:hover,
  .header-cta:hover,
  .price-card:hover,
  .hero-photo:hover{
    transform: none !important;
    box-shadow: none !important;
  }
}
html, body{
  -webkit-text-size-adjust: 100%;
}

body{
  overscroll-behavior-y: auto; /* optioneel */
}

/* Alleen als je ooit interne scroll containers hebt */
.mobile-nav{
  -webkit-overflow-scrolling: touch;
}
/* CONTACT – high-tech glass / glow */
.contact-section{
  position:relative;
  padding: clamp(64px, 8vw, 110px) 0;
  overflow:visible;
  background: #070A12;
  color:#fff;
}

.contact-bg{
  position:absolute; inset:-20%;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(61,116,255,.28), transparent 60%),
    radial-gradient(800px 480px at 85% 45%, rgba(179,120,255,.22), transparent 60%),
    radial-gradient(700px 460px at 40% 90%, rgba(0,210,255,.14), transparent 55%);
  filter: blur(10px);
  opacity:.9;
  pointer-events:none;
}

.contact-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items:start;
}

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

.contact-eyebrow{
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(120,160,255,.9);
  margin:0 0 12px;
}

.contact-title{
  font-size: clamp(34px, 4.6vw, 56px);
  line-height:1.05;
  margin:0 0 14px;
}

.contact-italic{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  opacity:.95;
}

.contact-text{
  color: rgba(255,255,255,.72);
  max-width: 52ch;
  margin: 0 0 18px;
}

.contact-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 18px 0 22px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

.contact-meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  max-width:560px;
}

@media (max-width: 560px){
  .contact-meta{ grid-template-columns: 1fr; }
}

.meta-card{
  padding:14px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}

.meta-label{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom:6px;
}

.meta-value{
  color: rgba(255,255,255,.9);
  text-decoration:none;
}
.meta-value:hover{ text-decoration:underline; }

.contact-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(120,160,255,.22);
  backdrop-filter: blur(14px);
  box-shadow:
    0 20px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.06) inset;
  position:relative;
}

.contact-card::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(61,116,255,.55), rgba(179,120,255,.45), rgba(0,210,255,.35));
  opacity:.35;
  filter: blur(18px);
  z-index:-1;
}

.contact-card-top{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 6px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 14px;
}

.status-dot{
  width:10px; height:10px; border-radius:50%;
  background: #3D74FF;
  box-shadow: 0 0 18px rgba(61,116,255,.9);
  animation: pulse 1.6s infinite ease-in-out;
}
@keyframes pulse{
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.25); opacity:.7; }
}

.status-text{
  font-size:13px;
  color: rgba(255,255,255,.75);
}

.contact-form .field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom: 12px;
}

.field-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 560px){
  .field-grid{ grid-template-columns: 1fr; }
}

.contact-form label{
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  color:#fff;
  outline:none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.contact-form textarea{ resize: vertical; min-height: 140px; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: rgba(61,116,255,.65);
  box-shadow: 0 0 0 4px rgba(61,116,255,.18);
}

.error{
  min-height: 16px;
  font-size: 12px;
  color: rgba(255,120,120,.92);
}

.field-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.hint, .counter{
  font-size:12px;
  color: rgba(255,255,255,.55);
}

.field-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin: 10px 0;
}
.field-check input{
  width:18px; height:18px;
  margin-top: 2px;
}

.contact-submit{
  width:100%;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top: 10px;
  position:relative;
}

.btn-spinner{
  width:16px; height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.35);
  border-top-color: rgba(255,255,255,1);
  display:none;
  animation: spin .8s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.is-loading .btn-spinner{ display:inline-block; }
.is-loading .btn-text{ opacity:.85; }

.form-toast{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  display:none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.24);
  color: rgba(255,255,255,.82);
}

.form-toast.is-success{
  display:block;
  border-color: rgba(61,116,255,.40);
  box-shadow: 0 0 0 4px rgba(61,116,255,.12);
}

.form-toast.is-error{
  display:block;
  border-color: rgba(255,120,120,.40);
  box-shadow: 0 0 0 4px rgba(255,120,120,.12);
}

/* Honeypot verbergen */
.hp-field{ position:absolute; left:-9999px; top:-9999px; opacity:0; }
/* Spiegel contact layout op desktop */
@media (min-width: 981px){
  .contact-grid{
    grid-template-columns: .95fr 1.05fr; /* beetje meer ruimte voor copy rechts */
  }
  .contact-left{ order: 2; }  /* tekst rechts */
  .contact-right{ order: 1; } /* form links */
}
/* ============================================================
   CONTACT BUTTON — luxe subtiele hover
   ============================================================ */

/* Basis */
.contact-submit{
  border: 1px solid rgba(59,102,245,.32);
  background: linear-gradient(180deg, rgba(59,102,245,.98), rgba(32,86,255,.92));
  color: #fff;
  box-shadow:
    0 18px 45px rgba(32, 86, 255, .22),
    0 1px 0 rgba(255,255,255,.10) inset;
  transform: translateY(0);
  transition:
    transform .32s cubic-bezier(.2,.8,.2,1),
    box-shadow .32s cubic-bezier(.2,.8,.2,1),
    border-color .32s ease,
    filter .32s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Subtiele “glans” sweep */
.contact-submit::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.18) 35%,
    rgba(255,255,255,.06) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
  pointer-events:none;
  mix-blend-mode: screen;
}

/* Zachte rand-glow */
.contact-submit::after{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius: inherit;
  background:
    radial-gradient(320px 120px at 50% 120%, rgba(120,200,255,.22), transparent 60%),
    radial-gradient(260px 120px at 20% 0%, rgba(179,120,255,.18), transparent 60%);
  filter: blur(18px);
  opacity: .0;
  transition: opacity .32s ease;
  z-index: -1;
  pointer-events:none;
}

/* Zorg dat tekst/spinner boven de pseudo layers blijft */
.contact-submit .btn-text,
.contact-submit .btn-spinner{
  position: relative;
  z-index: 2;
}

/* Hover: premium lift + glow + sweep */
.contact-submit:hover{
  transform: translateY(-2px);
  border-color: rgba(120,160,255,.55);
  box-shadow:
    0 26px 70px rgba(32, 86, 255, .30),
    0 10px 28px rgba(12, 17, 23, .22),
    0 1px 0 rgba(255,255,255,.12) inset;
  filter: saturate(1.03);
}
.contact-submit:hover::before{
  transform: translateX(120%);
}
.contact-submit:hover::after{
  opacity: 1;
}

/* Active: klein “press” gevoel */
.contact-submit:active{
  transform: translateY(-1px);
  box-shadow:
    0 18px 45px rgba(32, 86, 255, .22),
    0 1px 0 rgba(255,255,255,.10) inset;
}

/* Keyboard focus (luxe maar duidelijk) */
.contact-submit:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(61,116,255,.22),
    0 26px 70px rgba(32, 86, 255, .26);
}

/* Respecteer reduced motion */
@media (prefers-reduced-motion: reduce){
  .contact-submit,
  .contact-submit::before,
  .contact-submit::after{
    transition: none !important;
  }
}
/* Cursor: klikbaar */
.contact-submit{
  cursor: pointer;
}
/* ============================================================
   FOOTER — premium light glass (4B)
   ============================================================ */

.site-footer{
  position: relative;
  padding: 64px 0 22px;
  background:
    radial-gradient(900px 520px at 12% 120%, rgba(168,120,255,.20), transparent 60%),
    radial-gradient(900px 520px at 88% 120%, rgba(120,200,255,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.25));
  border-top: 1px solid rgba(12,17,23,.06);
  overflow: hidden;
}

.site-footer::before{
  content:"";
  position:absolute;
  inset: -1px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32,86,255,.18), transparent);
  pointer-events:none;
}

.footer-inner{
  color: rgba(12,17,23,.68);
  font-size: 14px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.footer-title{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(12,17,23,.52);
  font-weight: 750;
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-text{
  color: rgba(12,17,23,.66);
}

/* Brand block */
.footer-brand{
  padding-right: 20px;
}

.footer-logo{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-mark{
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.04em;
  color: rgba(12,17,23,.92);
}

.footer-name{
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 14px;
  color: rgba(12,17,23,.58);
}

.footer-desc{
  margin: 0 0 14px;
  color: rgba(12,17,23,.62);
  line-height: 1.6;
  max-width: 42ch;
}

.footer-meta{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(12,17,23,.08);
}

.footer-kvk{
  display: inline-flex;
  gap: 6px;
  color: rgba(12,17,23,.60);
}

/* Links */
.footer-link{
  color: rgba(12,17,23,.68);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  margin-left: -8px;
  border-radius: 12px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1),
              background .25s ease,
              color .25s ease,
              box-shadow .25s ease;
  position: relative;
}

.footer-link::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 1.5px;
  background: var(--accent-blue, #2056ff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(0.65, 0, 0.35, 1);
  opacity: .9;
}

.footer-link:hover{
  background: rgba(255,255,255,.60);
  box-shadow:
    0 10px 26px rgba(12,17,23,.08),
    inset 0 0 0 1px rgba(255,255,255,.70);
  color: rgba(12,17,23,.92);
  transform: translateY(-1px);
}

.footer-link:hover::after{
  transform: scaleX(1);
  transform-origin: left;
}

.footer-link--arrow{
  font-weight: 650;
}

/* Bottom bar */
.footer-bottom{
  margin-top: 44px;
  padding-top: 16px;
  border-top: 1px solid rgba(12,17,23,.08);
  color: rgba(12,17,23,.55);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .site-footer{ padding: 46px 0 18px; }
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .footer-brand{ padding-right: 0; }
}

@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ margin-top: 28px; }
}
/* ============================================================
   #reviews — HORIZONTAL PIN SCROLL (mirrored portfolio)
   ============================================================ */
#reviews.horizontal-reviews{
  height: 340vh;              /* meer scroll: je moet écht “reizen” */
  position: relative;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1000px 700px at 85% 50%, rgba(168, 120, 255, 0.22), transparent 70%),
    radial-gradient(900px 650px at 80% 80%, rgba(120, 200, 255, 0.14), transparent 65%),
    linear-gradient(105deg, var(--bg-1) 0%, var(--bg-0) 100%);
  background-attachment: fixed;
}

#reviews .sticky-wrapper{
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

#reviews .reviews-container{
  display: flex;
  align-items: center;
  gap: 120px;
  padding-right: 10%;
  width: auto !important;
  margin: 0 !important;
  will-change: transform;
}

/* Extra ruimte aan de linkerzijde zodat de laatste review pas later volledig zichtbaar wordt */
#reviews .reviews-spacer{
  flex: 0 0 24vw;   /* tweak: 18vw–30vw */
  height: 1px;
}

/* Intro (rechts) — groter en minder “gepropt” */
#reviews .reviews-intro{
  flex: 0 0 620px;     /* groter blok */
  min-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

#reviews .reviews-intro .subtitle{
  letter-spacing: .28em;
  font-size: 12px;
  color: rgba(12,17,23,.55);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

#reviews .reviews-intro .section-title{
  margin: 0 0 18px;
  font-size: clamp(56px, 5.2vw, 92px); /* 🔥 groter */
  line-height: .95;
  letter-spacing: -0.05em;
}

#reviews .reviews-intro .intro-text{
  margin: 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* Cards */
#reviews .review-card{
  flex: 0 0 560px;       /* breed genoeg voor lange review */
  min-width: 560px;
  padding: 44px 44px;
  border-radius: 28px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 24px 80px rgba(12,17,23,.10);
}

#reviews .review-text{
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(12,17,23,.78);
}

#reviews .review-author strong{
  display:block;
  font-weight: 750;
  letter-spacing: -0.01em;
}

#reviews .review-author span{
  display:block;
  margin-top: 4px;
  opacity: .62;
  font-size: 14px;
}

/* Google sterren + icoon */
#reviews .review-stars{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 22px;
}

#reviews .google-badge{
  width: 18px;
  height: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

#reviews .stars{
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(12,17,23,.88);
}

/* accessibility helper */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* MOBILE: net als portfolio -> verticaal stapelen */
@media (max-width: 980px){
  #reviews.horizontal-reviews{
    height: auto !important;
    background-attachment: scroll !important;
  }

  #reviews .sticky-wrapper{
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
  }

  #reviews .reviews-container{
    flex-direction: column !important;
    transform: none !important;
    will-change: auto !important;
    padding: 56px 18px !important;
    gap: 18px !important;
  }

  #reviews .reviews-spacer{ display:none !important; }

  #reviews .reviews-intro{
    min-width: 0 !important;
    width: 100% !important;
    flex: none !important;
    margin-bottom: 10px;
  }

  #reviews .reviews-intro .section-title{
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  #reviews .review-card{
    min-width: 0 !important;
    width: 100% !important;
    padding: 28px !important;
  }
}
/* ============================================================
   #reviews — HIGH END FINISH (subtiel, premium)
   ============================================================ */

/* zachte fade aan randen (zoals een viewport-mask) */
#reviews .sticky-wrapper::before,
#reviews .sticky-wrapper::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: clamp(48px, 6vw, 120px);
  z-index: 12;
  pointer-events:none;
}

#reviews .sticky-wrapper::before{
  left:0;
  background: linear-gradient(90deg, rgba(231,235,239,1) 0%, rgba(231,235,239,0) 100%);
}

#reviews .sticky-wrapper::after{
  right:0;
  background: linear-gradient(270deg, rgba(231,235,239,1) 0%, rgba(231,235,239,0) 100%);
}

/* cards: meer agency-glass, betere diepte en rand */
#reviews .review-card{
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s cubic-bezier(.2,.8,.2,1),
    border-color .45s ease,
    background .45s ease,
    filter .45s ease;
}

/* inner hairline (super subtiel) */
#reviews .review-card::before{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: calc(28px - 1px);
  border: 1px solid rgba(255,255,255,.55);
  opacity: .65;
  pointer-events:none;
}

/* glow layer (subtiel, niet neon) */
#reviews .review-card::after{
  content:"";
  position:absolute;
  inset:-40px;
  border-radius: 60px;
  background:
    radial-gradient(300px 220px at 20% 20%, rgba(168,120,255,.18), transparent 65%),
    radial-gradient(320px 240px at 80% 60%, rgba(120,200,255,.14), transparent 68%),
    radial-gradient(280px 220px at 50% 110%, rgba(255,140,180,.10), transparent 70%);
  filter: blur(22px);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events:none;
  mix-blend-mode: screen;
}

/* “shine sweep” bij hover */
#reviews .review-card .shine{
  display:none; /* fallback als iemand ooit een extra div toevoegt; niet nodig */
}

#reviews .review-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.72);
  box-shadow:
    0 34px 90px rgba(12,17,23,.14),
    0 12px 30px rgba(12,17,23,.08);
  filter: saturate(1.02);
}

#reviews .review-card:hover::after{
  opacity: 1;
}

/* subtiele “glass depth” */
#reviews .review-card{
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: 0 24px 80px rgba(12,17,23,.10);
}

/* tekst: iets strakker (premium) */
#reviews .review-text{
  letter-spacing: -0.005em;
}

/* sterren + google badge: netter, klein accent */
#reviews .review-stars{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(12,17,23,.06);
}

#reviews .stars{
  letter-spacing: 3px;
  transform: translateY(-0.5px);
}

/* micro hover op de sterren alleen */
#reviews .review-card:hover .stars{
  transform: translateY(-1px);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

/* author blok: meer “signature” feel */
#reviews .review-author strong{
  font-weight: 800;
}
#reviews .review-author span{
  color: rgba(12,17,23,.58);
}

/* Intro rechts: iets meer presence + finesse */
#reviews .reviews-intro .section-title{
  text-shadow: 0 18px 45px rgba(12,17,23,.06);
}

#reviews .reviews-intro{
  position: relative;
}

#reviews .reviews-intro::before{
  content:"";
  position:absolute;
  inset:-30px -40px;
  border-radius: 42px;
  background:
    radial-gradient(420px 260px at 25% 35%, rgba(168,120,255,.18), transparent 70%),
    radial-gradient(420px 260px at 80% 60%, rgba(120,200,255,.14), transparent 72%);
  filter: blur(26px);
  opacity: .55;
  z-index:-1;
  pointer-events:none;
}

/* Respecteer reduced motion */
@media (prefers-reduced-motion: reduce){
  #reviews .review-card,
  #reviews .review-card::after,
  #reviews .sticky-wrapper::before,
  #reviews .sticky-wrapper::after{
    transition: none !important;
  }
  #reviews .review-card:hover{
    transform: none !important;
  }
}
/* ============================================================
   #reviews — TYPOGRAFIE MATCH FAQ / CONTACT
   ============================================================ */

#reviews .section-title{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
}

#reviews .section-title .italic-text{
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-block;
}

/* subtiele finesse zoals bij andere hero-koppen */
#reviews .section-title{
  text-shadow: 0 18px 45px rgba(12,17,23,.06);
}
/* ============================================================
   #reviews — MOBILE OPTIMALISATIE (intro bovenaan + cards auto)
   ============================================================ */
@media (max-width: 980px){

  /* 1) Hele section weer "normaal" scrollen */
  #reviews.horizontal-reviews{
    height: auto !important;
    background-attachment: scroll !important;
    padding: 72px 0 64px !important;
  }

  #reviews .sticky-wrapper{
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* 2) Intro ALTIJD eerst + netjes bovenaan */
  #reviews .reviews-container{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;

    /* belangrijk: geen desktop-achtige "reisruimte" */
    gap: 14px !important;
    padding: 0 18px !important;

    transform: none !important;
    will-change: auto !important;
  }

  #reviews .reviews-spacer{
    display: none !important;
  }

  #reviews .reviews-intro{
    order: -1 !important;
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    margin: 0 0 10px 0 !important;
  }

  #reviews .reviews-intro .subtitle{
    margin-bottom: 12px !important;
  }

  #reviews .reviews-intro .section-title{
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.02 !important;
    margin-bottom: 12px !important;
  }

  #reviews .reviews-intro .intro-text{
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 60ch !important;
  }

  /* 3) Cards: laat ze "content-sized" zijn (geen rare whitespace) */
  #reviews .review-card{
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;

    padding: 22px !important;
    border-radius: 22px !important;

    /* key: nooit vaste hoogte/min-height op mobiel */
    height: auto !important;
    min-height: 0 !important;
  }

  /* 4) Interne spacing in cards strakker -> Willemijn geen mega "bodem" */
  #reviews .review-stars{
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
  }

  #reviews .review-text{
    margin: 0 0 14px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;

    /* zorg dat niets wordt afgekapt */
    max-height: none !important;
    overflow: visible !important;
  }

  #reviews .review-author{
    margin-top: 0 !important;
  }

  /* 5) If ergens per ongeluk een "min-height" op p/span staat: neutraliseer */
  #reviews .review-card *{
    min-height: 0 !important;
  }
}
@media (max-width: 980px){
  #reviews .review-card,
  #reviews .review-card .review-text{
    max-height: none !important;
    -webkit-line-clamp: unset !important;
    display: block !important;
  }
}
/* ============================================================
   #reviews — MOBILE CLEANUP (gloed links weg + bottom block weg)
   ============================================================ */
@media (max-width: 980px){

  /* Zorg dat de section zelf altijd volledig “doorloopt” */
  #reviews.horizontal-reviews{
    background-attachment: scroll !important;
    background-color: #e7ebef !important; /* vangnet */
    padding-bottom: 64px !important;      /* voorkomt rare cutoff onderaan */
    overflow: hidden !important;          /* snijdt eventuele glow aan randen af */
  }

  /* Weg met de edge-fade masks (die geven vaak die vage rand/gloed) */
  #reviews .sticky-wrapper::before,
  #reviews .sticky-wrapper::after{
    display: none !important;
  }

  /* Weg met intro-glow op mobiel (kan links “lekken”) */
  #reviews .reviews-intro::before{
    display: none !important;
  }

  /* Weg met card-glow layer op mobiel (deze veroorzaakt vaak de vage gloed) */
  #reviews .review-card::after{
    display: none !important;
  }

  /* Extra vangrail: geen rare horizontale “bleed” */
  #reviews .reviews-container{
    overflow: hidden !important;
  }

  /* Als je nog een heel subtiele premium look wil zónder glow */
  #reviews .review-card{
    box-shadow: 0 18px 55px rgba(12,17,23,.10) !important;
  }
}
/* #actie: italic wordmark zoals in hero/portfolio/reviews */
#actie .main-title{
  letter-spacing: -0.04em;
  line-height: 1.05;
}

#actie .main-title .italic-text{
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-block;
}
/* ============================================================
   #actie — header links gecentreerd zoals #faq
   ============================================================ */

#actie .section-header{
  max-width: 560px;          /* zelfde gevoel als faq-left */
  margin-left: 0;
  margin-right: auto;        /* duwt 'm naar links */
  text-align: left;
}

/* eyebrow netjes uitgelijnd */
#actie .section-header .sub-text{
  display: block;
  margin-bottom: 12px;
}

/* titel spacing match faq */
#actie .section-header .main-title{
  margin: 0;
  line-height: 1.05;
}
@media (max-width: 980px){

  /* 1) Stop met verticaal centeren in de hero op mobiel */
  .sticky-hero{
    align-items: flex-start !important;
  }

  /* 2) Minder top padding in je hero content */
  .hero-grid{
    padding-top: 80px !important; /* was 40px (mobile) / 46px (desktop) */
  }

  /* 3) (optioneel) als je nóg iets strakker wilt: minder algemene page padding */
  .page{
    padding-top: 50px !important; /* was 40px */
  }
}
.process-header .italic-text{
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-block;
}
/* ============================================================
   Globale italic stijl — gebruikt in hero / faq / reviews / portfolio / proces
   ============================================================ */
.italic-text{
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-block;
}
#portfolio .section-title{
  font-size: clamp(56px, 5.2vw, 92px);
  line-height: .95;
}
.process-header{
  font-size: clamp(56px, 5.2vw, 92px);
  line-height: .95;
  letter-spacing: -0.04em;
  margin-bottom: 180px;
  padding-left: 20px;
  font-weight: 800;
}
@media (max-width: 980px){
  #portfolio .section-title{
    font-size: clamp(34px, 10vw, 44px) !important; /* kleiner op mobiel */
    line-height: 1.02 !important;
  }
}

/* ============================================================
   FAQ CTA — ultra high-end, rustig & agency-grade
   ============================================================ */

#faq .faq-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;

  color: #ffffff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);

  box-shadow:
    0 14px 40px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);

  position: relative;
  overflow: hidden;
  isolation: isolate;

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    background .35s ease;
}

/* ============================================================
   FAQ CTA — high-end dark glass variant
   ============================================================ */
#faq .btn-faq{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  box-shadow:
    0 14px 44px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.10);

  position: relative;
  overflow: hidden;
  isolation: isolate;

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    background .35s ease;
}

/* subtle sweep */
#faq .btn-faq::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.20) 35%,
    rgba(255,255,255,.07) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
  mix-blend-mode: screen;
}

/* soft glow */
#faq .btn-faq::after{
  content:"";
  position:absolute;
  inset:-20px;
  border-radius: inherit;
  background:
    radial-gradient(280px 120px at 50% 120%, rgba(120,200,255,.22), transparent 60%),
    radial-gradient(240px 120px at 20% 0%, rgba(179,120,255,.18), transparent 60%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .35s ease;
  z-index:-1;
}

/* hover */
#faq .btn-faq:hover{
  transform: translateY(-2px);
  border-color: rgba(120,160,255,.55);
  background: rgba(255,255,255,.12);
  box-shadow:
    0 24px 70px rgba(0,0,0,.45),
    0 8px 24px rgba(12,17,23,.35),
    inset 0 1px 0 rgba(255,255,255,.14);
}

#faq .btn-faq:hover::before{ transform: translateX(120%); }
#faq .btn-faq:hover::after{ opacity: 1; }

#faq .btn-faq:active{ transform: translateY(-1px); }

#faq .btn-faq:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(61,116,255,.28),
    0 22px 60px rgba(0,0,0,.45);
}
/* ============================================================
   #actie — Start Groei button: exact dezelfde hover/sweep/glow
   ============================================================ */

#actie .btn-primary{
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* behoud jouw blauwe look */
  background: rgba(59, 102, 245, .98);
  border: 1px solid rgba(59, 102, 245, .35);
  color: #fff;

  /* premium diepte */
  box-shadow:
    0 18px 45px rgba(32, 86, 255, .22),
    0 1px 0 rgba(255,255,255,.10) inset;

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    background .35s ease,
    filter .35s ease;
}

/* sweep */
#actie .btn-primary::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,.20) 35%,
    rgba(255,255,255,.07) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
  mix-blend-mode: screen;
}

/* glow */
#actie .btn-primary::after{
  content:"";
  position:absolute;
  inset:-20px;
  border-radius: inherit;
  background:
    radial-gradient(280px 120px at 50% 120%, rgba(120,200,255,.22), transparent 60%),
    radial-gradient(240px 120px at 20% 0%, rgba(179,120,255,.18), transparent 60%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .35s ease;
  z-index:-1;
  pointer-events:none;
}

/* hover */
#actie .btn-primary:hover{
  transform: translateY(-2px);
  background: rgba(59, 102, 245, 1);
  border-color: rgba(120,160,255,.55);
  box-shadow:
    0 26px 70px rgba(32, 86, 255, .30),
    0 10px 28px rgba(12, 17, 23, .22),
    0 1px 0 rgba(255,255,255,.12) inset;
  filter: saturate(1.03);
}

#actie .btn-primary:hover::before{ transform: translateX(120%); }
#actie .btn-primary:hover::after{ opacity: 1; }

#actie .btn-primary:active{ transform: translateY(-1px); }

#actie .btn-primary:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(61,116,255,.22),
    0 26px 70px rgba(32, 86, 255, .26);
}

/* ============================================================
   #actie — titel gecentreerd op desktop, links op mobiel
   ============================================================ */

@media (min-width: 981px){
  #actie .section-header{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #actie .section-header .sub-text{
    justify-content: center;
  }

  #actie .section-header .main-title{
    margin-left: auto;
    margin-right: auto;
  }
}
/* ============================================================
   #actie — titel inline op desktop, stacked op mobiel
   ============================================================ */

@media (min-width: 981px){
  #actie .main-title{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: .4ch;
    white-space: nowrap;
  }

  #actie .main-title > *{
    display: inline;
  }
}
/* ============================================================
   CURSOR FOLLOWER — 4B premium (subtiel, glass + glow)
   ============================================================ */

.cursor-follower{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999; /* boven alles */
}

.cursor-follower__ring,
.cursor-follower__dot{
  position: absolute;
  left: 0; top: 0;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height, opacity, filter;
}

/* Grote zachte ring */
.cursor-follower__ring{
  width: 54px;
  height: 54px;
  border-radius: 999px;

  /* glass + hairline */
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);

  /* glow in jouw gradient-tint */
  box-shadow:
    0 14px 44px rgba(12,17,23,.10),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 36px rgba(59,102,245,.14);

  opacity: .95;
  transition: width .22s ease, height .22s ease, opacity .22s ease, filter .22s ease;
  mix-blend-mode: multiply; /* voelt “agency” i.p.v. neon */
}

/* Kleine “ink” dot */
.cursor-follower__dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(12,17,23,.85);
  box-shadow: 0 6px 18px rgba(12,17,23,.22);
  opacity: .9;
  transition: transform .18s ease, opacity .18s ease;
}

/* Hover state (links/buttons/inputs) */
body.cursor-hover .cursor-follower__ring{
  width: 76px;
  height: 76px;
  opacity: 1;
  filter: saturate(1.05);
  box-shadow:
    0 22px 70px rgba(12,17,23,.12),
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 0 56px rgba(59,102,245,.20);
}

body.cursor-hover .cursor-follower__dot{
  opacity: .75;
  transform: translate3d(-50%, -50%, 0) scale(.85);
}

/* Click / press micro feedback */
body.cursor-down .cursor-follower__ring{
  width: 64px;
  height: 64px;
  opacity: .95;
}
body.cursor-down .cursor-follower__dot{
  transform: translate3d(-50%, -50%, 0) scale(.7);
}

/* Disable op touch/coarse pointers + reduced motion */
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce){
  .cursor-follower{ display:none !important; }
  body{ cursor: auto; }
}
/* Cursor volledig uit in actie-sectie */
body.cursor-disabled .cursor-follower{
  opacity: 0;
  visibility: hidden;
}
body.cursor-disabled .cursor-follower{ opacity:0 !important; }
/* Scroll lock tijdens intro */
body.is-intro{
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none; /* vooral voor trackpads/touch */
}
.cursor-follower,
.cursor-follower * {
  pointer-events: none !important;
}
/* Intro mag na afloop geen clicks blokkeren */
#intro.done{
  pointer-events: none !important;
  visibility: hidden;
  opacity: 0;
}
/* ============================================================
   /over — About page (4B look & feel)
   ============================================================ */

.about-page{
  padding-top: 76px; /* fixed header ruimte */
  background: #e7ebef;
}

.about-hero{
  position: relative;
  padding: clamp(64px, 7vw, 120px) 0;
  overflow: hidden;
}

.about-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(900px 600px at 18% 88%, rgba(168, 120, 255, .32), transparent 60%),
    radial-gradient(800px 520px at 10% 92%, rgba(255, 140, 180, .16), transparent 62%),
    radial-gradient(900px 700px at 78% 18%, rgba(120, 200, 255, .16), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
}

.about-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.about-eyebrow{
  letter-spacing: .28em;
  font-size: 12px;
  color: rgba(12,17,23,.55);
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.about-title{
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.about-story{
  max-width: 62ch;
}

.about-h2{
  margin: 22px 0 10px;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(12,17,23,.55);
}

.about-story p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(12,17,23,.72);
}

.about-quote{
  margin: 22px 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.60);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(12,17,23,.08);
}

.about-quote p{
  margin: 0;
  color: rgba(12,17,23,.78);
  line-height: 1.65;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-values{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}

.about-value-card{
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(12,17,23,.08);
}

.about-value-card h3{
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.about-value-card p{
  margin: 0;
  color: rgba(12,17,23,.68);
  line-height: 1.6;
  font-size: 14px;
}

.about-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.60);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(12,17,23,.12);
}

.about-card-glow{
  position: absolute;
  inset: -30px;
  z-index: 0;
  background:
    radial-gradient(420px 320px at 20% 80%, rgba(168,120,255,.35), transparent 65%),
    radial-gradient(420px 320px at 80% 30%, rgba(120,200,255,.28), transparent 70%),
    radial-gradient(520px 360px at 50% 50%, rgba(255,140,180,.14), transparent 75%);
  filter: blur(22px);
  opacity: .65;
  pointer-events: none;
}

.about-portrait{
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(560px, 64vh);
  object-fit: cover;
  display: block;
}

.about-caption{
  position: relative;
  z-index: 2;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255,255,255,.55);
  background: linear-gradient(to bottom, rgba(255,255,255,.60), rgba(255,255,255,.35));
  backdrop-filter: blur(14px);
}

.about-mark{
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.about-name{
  font-weight: 750;
  margin-top: 4px;
}

.about-meta{
  margin-top: 4px;
  color: rgba(12,17,23,.62);
  font-size: 14px;
}

/* second section */
.about-section{
  padding: clamp(56px, 6vw, 90px) 0;
  background: #eef2f6;
  border-top: 1px solid rgba(12,17,23,.05);
}

.about-section-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.about-section-eyebrow{
  letter-spacing: .28em;
  font-size: 12px;
  color: rgba(12,17,23,.55);
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.about-section-title{
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.about-section-copy{
  color: rgba(12,17,23,.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 62ch;
}

/* responsive */
@media (max-width: 980px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-values{
    grid-template-columns: 1fr;
  }
  .about-section-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-portrait{
    height: 420px;
  }
}
/* Wordmark zoals op je zwarte logo */
.brand-text--wordmark{
  display: inline-flex;
  align-items: baseline;
  gap: 12px;                 /* ruimte tussen 4B en WEBDESIGN */
  line-height: 1;
}

.brand-text--wordmark .brand-mark{
  font-weight: 800;          /* “4B” stevig */
  font-size: 22px;           /* tune naar smaak */
  letter-spacing: -0.02em;
  color: #0c1117;
}

.brand-text--wordmark .brand-sub{
  font-weight: 500;          /* “WEBDESIGN” dunner */
  font-size: 14px;
  letter-spacing: 0.32em;    /* dit maakt ‘m zoals het voorbeeld */
  text-transform: uppercase;
  color: rgba(12,17,23,.55); /* subtiel grijs zoals in je zwarte voorbeeld */
}
.site-header.scrolled .brand-text--wordmark .brand-mark{
  color: #fff;
}
.site-header.scrolled .brand-text--wordmark .brand-sub{
  color: rgba(255,255,255,.65);
}
.hero-left .small {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.footerRegions__summary{
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footerRegions__summary *{
  pointer-events: none; /* zodat klikken op de span ook de summary triggert */
}
/* DETAILS/SUMMARY netjes als een “link” */
.footerRegions {
  margin-top: .75rem;
}

.footerRegions__summary{
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  /* laat het eruitzien als je andere footer links */
  color: inherit;
  opacity: .9;
  text-decoration: none;
}

.footerRegions__summary::-webkit-details-marker{ display:none; }
.footerRegions__summary::marker{ content:""; }

.footerRegions[open] .footerRegions__summary{
  opacity: 1;
}

/* Lijst onder de summary */
.footerRegions__list{
  margin: .9rem 0 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

/* Bullets zoals in je voorbeeld */
.footerRegions__list li{
  list-style: none;
  position: relative;
  padding-left: .9rem;
}

.footerRegions__list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .7;
}

/* Links: NIET browser-blauw, wel subtiel hover */
.footerRegions__list a.footer-link{
  color: inherit;
  text-decoration: none;
  opacity: .85;
}

.footerRegions__list a.footer-link:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: .18em;
}

/* =========================
   Hightech Section
========================= */

#hightech{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

/* pseudo overlays achter canvas houden */
#hightech::before,
#hightech::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
}

#hightech::before{
  inset:-2px;
  background: linear-gradient(90deg, rgba(0,255,220,0.10), rgba(110,120,255,0.10), rgba(0,255,220,0.10));
  mix-blend-mode: screen;
  opacity: 0.12;
  filter: blur(24px);
}

#hightech::after{
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    rgba(0,0,0,0) 3px,
    rgba(0,0,0,0) 6px
  );
  opacity: 0.06;
}

.hightech__stage{
  position:absolute;
  inset:0;
  z-index: 1; /* canvas layer */
}

#hightech-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}

.hightech__overlay{
  position: relative;
  z-index: 2;
  pointer-events: none;
  height: 100%;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
  display: grid;
  align-content: end;
  gap: 10px;
}

.hightech__kicker{ letter-spacing: .22em; font-size:12px; opacity:.75; color: rgba(210,255,248,.9); text-transform:uppercase; }
.hightech__title{ margin:0; font-size: clamp(34px, 5.5vw, 72px); line-height:1.02; color: rgba(240,255,252,.95); }
.hightech__sub{ margin:0; max-width:60ch; color: rgba(220,245,255,.78); }
/* Hightech section: altijd volledig viewport (incl. fixed header) */
#hightech{
  min-height: calc(100vh + 76px);
}
/* Modern + mobiel proof */
#hightech{
  min-height: calc(100dvh + 76px);
}
@media (max-width: 980px), (hover:none), (pointer:coarse){
  .site-header{ backdrop-filter: none !important; }
  .hero-photo::before, .hero-photo::after{ display:none !important; }
  #portfolio.horizontal-portfolio{ background-attachment: scroll !important; }
  #scroll .sticky-container{ background-attachment: scroll !important; }
}
  :root{
    --cb-accent: #3B82F6;
    --cb-bg:#0B0F14;
    --cb-panel:#0F1620;
    --cb-text:#E5E7EB;
    --cb-muted:#9CA3AF;
    --cb-border: rgba(255,255,255,.10);
    --cb-radius: 16px;
    --cb-shadow: 0 14px 40px rgba(0,0,0,.55);
  }

  .cb-hidden{ display:none !important; }

  .cb-banner{
    position: fixed;
    left: 18px;
    right: 18px;
    z-index: 99999;
    background: var(--cb-bg);
    color: var(--cb-text);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    box-shadow: var(--cb-shadow);
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 16px;
  }
  .cb-banner.bottom{ bottom: 18px; }
  .cb-banner.top{ top: 18px; }

  .cb-row{
    display:flex;
    gap: 14px;
    align-items:flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cb-left{
    flex: 1 1 520px;
    min-width: 260px;
  }

  .cb-title{
    font-weight: 700;
    letter-spacing: .2px;
    margin: 0 0 6px 0;
    font-size: 15px;
  }
  .cb-text{
    margin: 0;
    color: var(--cb-muted);
    font-size: 14px;
    line-height: 1.45;
  }
  .cb-links{
    margin-top: 10px;
    display:flex;
    gap: 10px;
    align-items:center;
    flex-wrap: wrap;
  }
  .cb-link{
    color: var(--cb-text);
    text-decoration: none;
    font-size: 13px;
    opacity:.9;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .cb-link:hover{ opacity: 1; border-bottom-color: rgba(255,255,255,.35); }

  .cb-actions{
    display:flex;
    gap: 10px;
    align-items:center;
    flex: 0 0 auto;
    margin-left:auto;
  }

  .cb-btn{
    appearance:none;
    border: 1px solid var(--cb-border);
    background: #0D131B;
    color: var(--cb-text);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .05s ease, border-color .15s ease, background .15s ease;
    white-space: nowrap;
  }
  .cb-btn:hover{
    border-color: rgba(255,255,255,.22);
    background: #101A26;
  }
  .cb-btn:active{ transform: translateY(1px); }

  .cb-btn.primary{
    border-color: rgba(59,130,246,.45);
    background: linear-gradient(180deg, rgba(59,130,246,.95), rgba(37,99,235,.95));
    color: white;
  }
  .cb-btn.primary:hover{ border-color: rgba(59,130,246,.65); }

  .cb-btn.ghost{
    background: transparent;
  }

  /* Compact mode (subtieler) */
  .cb-compact .cb-text{ font-size: 13.5px; }
  .cb-compact .cb-banner{ padding: 14px 14px; }

  /* Modal */
  .cb-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.60);
    z-index: 100000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 22px;
  }

  .cb-modal{
    width: min(720px, 100%);
    background: var(--cb-panel);
    border: 1px solid var(--cb-border);
    border-radius: 18px;
    box-shadow: var(--cb-shadow);
    overflow: hidden;
  }
  .cb-modal-header{
    padding: 18px 18px 10px 18px;
    display:flex;
    align-items:flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .cb-modal-title{
    margin:0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .2px;
  }
  .cb-modal-desc{
    margin:6px 0 0 0;
    color: var(--cb-muted);
    font-size: 13.5px;
    line-height: 1.45;
  }
  .cb-close{
    border: 1px solid var(--cb-border);
    background: transparent;
    color: var(--cb-text);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    cursor:pointer;
    font-size: 18px;
    line-height: 1;
  }

  .cb-modal-body{
    padding: 6px 18px 16px 18px;
  }

  .cb-card{
    border: 1px solid var(--cb-border);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255,255,255,.02);
    display:flex;
    justify-content: space-between;
    gap: 14px;
    align-items:flex-start;
    margin-top: 10px;
  }
  .cb-card h4{
    margin:0;
    font-size: 14px;
    font-weight: 800;
  }
  .cb-card p{
    margin:6px 0 0 0;
    color: var(--cb-muted);
    font-size: 13px;
    line-height: 1.45;
    max-width: 520px;
  }

  /* Switch */
  .cb-switch{
    position: relative;
    width: 46px;
    height: 26px;
    flex: 0 0 auto;
  }
  .cb-switch input{ display:none; }
  .cb-slider{
    position:absolute;
    inset:0;
    background: rgba(255,255,255,.12);
    border: 1px solid var(--cb-border);
    border-radius: 999px;
    cursor:pointer;
    transition: background .15s ease, border-color .15s ease;
  }
  .cb-slider::after{
    content:"";
    position:absolute;
    width: 20px;
    height: 20px;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    background: #E5E7EB;
    transition: transform .15s ease;
  }
  .cb-switch input:checked + .cb-slider{
    background: rgba(59,130,246,.35);
    border-color: rgba(59,130,246,.55);
  }
  .cb-switch input:checked + .cb-slider::after{
    transform: translateX(20px);
  }
  .cb-switch.disabled{ opacity:.6; }
  .cb-switch.disabled .cb-slider{ cursor:not-allowed; }

  .cb-modal-footer{
    padding: 14px 18px 18px 18px;
    display:flex;
    gap: 10px;
    justify-content:flex-end;
    flex-wrap: wrap;
    border-top: 1px solid var(--cb-border);
    background: rgba(0,0,0,.18);
  }

  @media (max-width: 560px){
    .cb-actions{ width: 100%; justify-content: flex-start; }
    .cb-banner{ left: 12px; right: 12px; }
  }
/* ============================================================
   FIX: mobiele header niet transparant (geen hero bleed-through)
   ============================================================ */
@media (max-width: 980px){

  .site-header{
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    border-bottom: 1px solid rgba(12,17,23,.08) !important;
    box-shadow: 0 10px 30px rgba(12,17,23,.10) !important;
  }

  /* Als je JS de .scrolled class zet: op mobiel ook wit houden */
  .site-header.scrolled{
    background: #ffffff !important;
    border-bottom: 1px solid rgba(12,17,23,.08) !important;
    box-shadow: 0 10px 30px rgba(12,17,23,.10) !important;
  }

  /* Tekst/icoon altijd donker op witte header */
  .site-header .nav a,
  .site-header .brand-text{
    color: #0c1117 !important;
  }

  .site-header .brand img{
    filter: none !important;
  }
}
/* ============================================================
   MOBILE PORTFOLIO = CASE STACK (ruimer + premium)
   ============================================================ */
@media (max-width: 980px){

  /* Section: meer lucht rondom */
  #portfolio.horizontal-portfolio{
    height: auto !important;
    padding: 72px 0 64px !important;
    overflow: clip !important;
  }

  /* Sticky uit */
  #portfolio .sticky-wrapper{
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Container: vertical stack */
  #portfolio .portfolio-container{
    display: flex !important;
    flex-direction: column !important;
    gap: 34px !important;              /* ⬅️ meer ruimte tussen cases */
    padding: 0 18px !important;
    transform: none !important;
    will-change: auto !important;
    width: 100% !important;
  }

  /* Intro blok: groter en rustiger */
  #portfolio .portfolio-intro{
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 0 12px 0 !important;
  }

  /* Item = kaart + tekst eronder */
  #portfolio .portfolio-item{
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  /* Kaart: groter + mooie verhouding */
  #portfolio .glass-card{
    width: 100% !important;
    height: clamp(260px, 62vw, 360px) !important; /* ⬅️ ruimer */
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 26px 80px rgba(12,17,23,.14) !important;
  }

  /* Overlay mag subtiel blijven voor sfeer */
  #portfolio .card-overlay{
    background: linear-gradient(
      to top,
      rgba(0,0,0,.42) 0%,
      rgba(0,0,0,.10) 55%,
      transparent 100%
    ) !important;
  }

  /* Tekst onder kaart: als “caption” */
  #portfolio .parallax-text{
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 2px !important;
    pointer-events: auto !important;
  }

  #portfolio .category{
    font-size: 12px !important;
    letter-spacing: 2.6px !important;
    margin-bottom: 6px !important;
    color: #3b71fe !important;
  }

  #portfolio .project-title,
  #portfolio .project-title .italic-text{
    color: #0c1117 !important;
    text-shadow: none !important;
    white-space: normal !important;
    font-size: clamp(28px, 7.2vw, 38px) !important; /* ⬅️ groter */
    line-height: 1.02 !important;
  }

  /* Subtiele divider voor ‘ruim’ gevoel */
  #portfolio .portfolio-item::after{
    content: "";
    display: block;
    height: 1px;
    margin-top: 18px;
    background: rgba(12,17,23,.08);
  }
  #portfolio .portfolio-item:last-child::after{
    display: none;
  }

  /* Optioneel: snap feel (zet uit als je het irritant vindt) */
  #portfolio .portfolio-container{
    scroll-snap-type: y proximity;
  }
  #portfolio .portfolio-item{
    scroll-snap-align: start;
  }
}
/* ============================================================
   FIX: #actie perfect gecentreerd op mobiel
   ============================================================ */
@media (max-width: 980px){

  /* 1) Pak de padding van de section zelf strak en symmetrisch */
  #actie.pricing-section{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* 2) Geef #actie z’n eigen “betrouwbare” container width */
  #actie .container{
    width: calc(100% - 36px) !important;   /* 18px links + 18px rechts */
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  /* 3) Haal de extra grid padding weg (die schuift ‘m vaak net off-center) */
  #actie .pricing-grid{
    padding-inline: 0 !important;
    margin-inline: 0 !important;
    justify-items: stretch !important;
  }

  /* (optioneel maar fijn) cards nooit “net te smal” waardoor het optisch scheef voelt */
  #actie .price-card{
    width: 100% !important;
  }
}
/* ============================================================
   MOBIEL: "geen verrassingen" op nieuwe regel in #actie titel
   ============================================================ */
@media (max-width: 980px){

  #actie .main-title .italic-text{
    display: block !important;
    margin-top: 6px;
  }
}
.footer-link--button{
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.footer-link--button {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  line-height: inherit;
}
/* Cookie voorkeuren titels fix */
.cc__category-title,
.cm__title,
.cc__section-title {
    color: #ffffff !important;
}
/* ============================================================
   COOKIE MODAL: TITELS / HEADINGS WIT (FIX)
   ============================================================ */

.cb-backdrop,
.cb-modal,
.cb-modal *{
  color: var(--cb-text) !important;
}

/* Specifiek de koppen */
.cb-modal-title,
.cb-card h4{
  color: var(--cb-text) !important;
}

/* Optioneel: headings iets meer contrast */
.cb-card p,
.cb-modal-desc{
  color: var(--cb-muted) !important;
}
/* ============================================================
   MOBIEL: foto terug + 12px onder hero-tekst
   ============================================================ */
@media (max-width: 980px){

  /* 1 kolom: tekst boven, foto eronder */
  .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 12px !important;              /* ✅ 12px ruimte tussen tekst en foto */
    align-items: start !important;
  }

  /* Foto mag weer zichtbaar zijn */
  .hero-right{
    display: flex !important;           /* ✅ override op 'display:none' */
    order: 2 !important;                /* onder de tekst */
    width: 100% !important;
    height: auto !important;
  }

  /* Tekstblok bovenaan */
  .hero-left{
    order: 1 !important;
  }

  /* Kaart/foto full width zoals je pricing cards */
  .hero-photo{
    width: 100% !important;
    max-width: 100% !important;
    height: 340px !important;           /* tune: 300–420 */
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  .hero-image-portrait{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    display: block !important;
  }
}
/* ============================================================
   MOBILE FIX: hero + foto zichtbaar, en #tarieven niet eroverheen
   ============================================================ */
@media (max-width: 980px){

  /* 1) Zet de "sticky hero stack" uit op mobiel */
  .sticky-hero{
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
    z-index: auto !important;
    align-items: flex-start !important;
    padding-bottom: 0 !important;
  }

  /* 2) Zorg dat #tarieven gewoon onder de hero komt (niet eroverheen) */
  .pricing-section,
  #actie.pricing-section{
    position: relative !important;
    z-index: auto !important;
    margin-top: 0 !important;
    box-shadow: none !important; /* haalt die 'overlap-schaduw' weg */
  }

  /* 3) Foto ALTIJD terug op mobiel (ook als er ergens display:none staat) */
  .hero-right{
    display: flex !important;
    order: 2 !important;
    width: 100% !important;
    height: auto !important;
  }

  /* 4) Layout: tekst boven, foto 12px eronder */
  .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 32px !important; /* ✅ 12px onder hero-tekst */
    align-items: start !important;
  }

  /* 5) Foto/card lekker breed */
  .hero-photo{
    width: 100% !important;
    max-width: 100% !important;
    height: 340px !important;   /* pas aan als je wil */
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  .hero-image-portrait{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    display: block !important;
  }
}
/* ============================================================
   iPad mini / Air / Pro: HERO FOTO CARD HOGER + BETERE CROP
   ============================================================ */
@media (hover: none) and (pointer: coarse) and (min-width: 768px) and (max-width: 1366px){

  /* Geef rechts meer verticale ruimte */
  .hero-right{
    height: clamp(520px, 62vh, 820px) !important;
  }

  /* Kaart iets breder (optioneel, maar helpt op iPad Pro) */
  .hero-photo{
    width: min(520px, 46vw) !important;
    height: 100% !important;
  }

  /* Crop/positie tunen voor portrait */
  .hero-image-portrait{
    object-fit: cover !important;
    object-position: center 18% !important; /* schuif gezicht iets omhoog/omlaag */
  }
}
/* ============================================================
   iPad mini / Air / Pro: HERO FOTO BREEDER (schouders zichtbaar)
   ============================================================ */
@media (hover: none) and (pointer: coarse) and (min-width: 768px) and (max-width: 1366px){

  /* Geef de foto-kolom meer ruimte */
  .hero-grid{
    grid-template-columns: 1fr 1.15fr !important;
    align-items: center !important;
  }

  /* Laat de rechterkolom echt groeien */
  .hero-right{
    height: clamp(520px, 62vh, 820px) !important;
    justify-content: flex-end !important;
  }

  /* Maak de card duidelijk breder */
  .hero-photo{
    width: min(620px, 52vw) !important;
    max-width: none !important;
  }

  /* Crop aanpassen zodat schouders zichtbaar blijven */
  .hero-image-portrait{
    object-fit: cover !important;
    object-position: center 12% !important;
  }
}
/* ============================================================
   iPad Pro SAFARI FIX – stop viewport overflow
   ============================================================ */
@media (hover: none) and (pointer: coarse) and (min-width: 981px) and (max-width: 1366px){

  html, body{
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .stack-wrapper,
  main#page,
  .page,
  section{
    max-width: 100vw !important;
    overflow-x: clip !important;
  }

  .container{
    width: calc(100% - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    overflow: visible !important;
  }

  /* Glow / transforms veroorzaken iPad overflow */
  .hero-photo::before,
  .hero-photo::after{
    display:none !important;
  }
}
/* ============================================================
   iPad Layout = Mobile stacking
   ============================================================ */
@media (hover: none) and (pointer: coarse) and (min-width: 981px) and (max-width: 1366px){

  /* HERO */
  .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .hero-right{
    width: 100% !important;
    justify-content: center !important;
  }

  /* TARIEVEN */
  #actie .pricing-grid{
    grid-template-columns: 1fr !important;
  }

  /* PORTFOLIO */
  #portfolio .portfolio-container{
    flex-direction: column !important;
    transform: none !important;
  }

  #portfolio .portfolio-item{
    width: 100% !important;
    min-width: 0 !important;
  }

  /* REVIEWS */
  #reviews .reviews-container{
    flex-direction: column !important;
    transform: none !important;
  }
}
@media (hover: none) and (pointer: coarse) and (min-width: 981px) and (max-width: 1366px){

  .sticky-hero{
    position: relative !important;
    height: auto !important;
  }

  .pricing-section{
    box-shadow: none !important;
    margin-top: 0 !important;
  }
}
/* ============================================================
   iPad Pro: SCROLL FIX (iPadOS Safari bug / scroll-lock)
   ============================================================ */
@media (hover: none) and (pointer: coarse) and (min-width: 981px) and (max-width: 1366px){

  html, body{
    height: auto !important;
    min-height: 100% !important;
    overflow-y: auto !important;           /* ✅ scroll terug */
    -webkit-overflow-scrolling: touch;
  }

  /* Als JS per ongeluk menu-open of is-intro laat staan: niet vastzetten */
  body.menu-open,
  body.is-intro{
    overflow-y: auto !important;
    height: auto !important;
    touch-action: auto !important;
  }

  /* iPad Safari: clip kan soms y-scroll killen -> terug naar hidden op x */
  .stack-wrapper,
  main#page,
  .page,
  section{
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
}
/* ============================================================
   Skip link (“Ga naar inhoud”) netjes verbergen behalve bij focus
   ============================================================ */
a.skip-link,
a[href="#main"],
a[href="#content"]{
  position: absolute !important;
  left: -9999px !important;
  top: 10px !important;
  z-index: 999999 !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #0c1117 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.18) !important;
}

a.skip-link:focus,
a[href="#main"]:focus,
a[href="#content"]:focus{
  left: 14px !important;   /* ✅ alleen zichtbaar wanneer je tabt */
}
/* ============================================================
   iPad Pro: top safe-area + hero spacing fix
   ============================================================ */
@media (hover: none) and (pointer: coarse) and (min-width: 981px) and (max-width: 1366px){

  /* 1) Laat de header óók de 'bovenbalk' (safe-area) vullen */
  .site-header{
    top: 0 !important;
    padding-top: env(safe-area-inset-top) !important;
    margin-top: 0 !important;
  }

  /* Zorg dat de header-hoogte visueel hetzelfde blijft */
  .header-inner{
    height: 76px !important;
  }

  /* 2) Duw de hero content iets omlaag (ruimte onder header) */
  .hero-grid{
    padding-top: calc(46px + 18px) !important; /* meer lucht bovenaan */
  }

  /* Extra vangrail: sommige builds hebben .page te krap */
  .page{
    padding-top: 20px !important; /* laat bestaan, maar we fixen hero specifiek */
  }
}
/* Alleen de progress-lijn in #werkwijze */
#werkwijze .process-line-container .line-active{
  height: 0%;                      /* start */
  transition: height 0.1s ease-out; /* belangrijk */
}
/* Verberg Hightech section op mobiel */
@media (max-width: 980px), (hover: none) and (pointer: coarse) {
  #hightech {
    display: none !important;
  }
}
/* Zorg dat de <a> items er uitzien als je bestaande portfolio-item */
.portfolio-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Tom & Jessy hover melding */
.portfolio-locked .glass-card {
  position: relative;
}

.portfolio-locked .locked-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;

  /* Subtiel “glass” effect (past bij je glass-cards) */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
}

/* Toon bij hover én bij toetsenbord-focus */
.portfolio-locked:hover .locked-badge,
.portfolio-locked:focus .locked-badge,
.portfolio-locked:focus-within .locked-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Optioneel: cursor hint dat dit niet klikbaar is */
.portfolio-locked {
  cursor: default;
}
/* ===== Tom & Jessy: locked badge FIX ===== */

/* Zorg dat de badge altijd boven de overlay ligt */
#portfolio .portfolio-locked .glass-card {
  position: relative;
}

#portfolio .portfolio-locked .locked-badge{
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 30;                 /* ✅ boven overlay + text */
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  background: rgba(0,0,0,.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

/* Trigger op de card zelf (jij hovert sowieso over .glass-card) */
#portfolio .portfolio-locked .glass-card:hover .locked-badge,
#portfolio .portfolio-locked:focus .locked-badge,
#portfolio .portfolio-locked:focus-within .locked-badge{
  opacity: 1;
  transform: translateY(0);
}

/* optioneel: iets van affordance zonder klik */
#portfolio .portfolio-locked { cursor: default; }
