: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;
}

/* 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: scroll;
}

#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;
}

#reviews .review-card{
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.60);
  box-shadow: 0 16px 40px rgba(12,17,23,.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* 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; }
.reviews-container {
  will-change: transform;
  transform: translate3d(0,0,0);
}
@media (max-height: 850px){
  #portfolio .sticky-wrapper{
    align-items: flex-start;
    padding-top: 80px;
  }
}
.portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(190, 160, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(86, 123, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #edf2f7 0%, #eef3f8 100%);
}

.portfolio-shell {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.portfolio-heading {
  max-width: 760px;
  margin-bottom: 100px;
}

.portfolio-kicker {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(10, 15, 30, 0.72);
}

.portfolio-title {
  margin: 0;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #0b1020;
}

.italic-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
}

.portfolio-intro {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.70);
}

.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.portfolio-project {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(400px, 1fr);
  align-items: center;
  gap: 80px;
}

.portfolio-project.reverse {
  grid-template-columns: minmax(400px, 1fr) minmax(320px, 440px);
}

.portfolio-project.reverse .project-copy {
  order: 2;
}

.portfolio-project.reverse .project-visual {
  order: 1;
}

.project-copy {
  position: relative;
  z-index: 2;
}

.project-category {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3d67ff;
}

.project-name {
  margin: 0 0 22px;
  font-size: clamp(36px, 4vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0b1020;
}

.project-description {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(10, 15, 30, 0.72);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  font-size: 14px;
  color: rgba(10, 15, 30, 0.68);
}

.project-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0b1020;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.project-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #0b1020;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.19,1,.22,1);
}

.project-link:hover::after {
  transform: scaleX(1);
}

.locked-link {
  opacity: 0.75;
  cursor: default;
}

.locked-link::after {
  transform: scaleX(1);
  opacity: 0.25;
}

.project-visual {
  display: block;
  width: 100%;
}

.project-link-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 24px rgba(12, 18, 38, 0.05),
    0 18px 48px rgba(12, 18, 38, 0.07);
  isolation: isolate;
  will-change: transform;
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(.19, 1, .22, 1),
    box-shadow 0.45s cubic-bezier(.19, 1, .22, 1),
    border-color 0.3s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(109, 136, 255, 0.05) 100%
  );
}

.project-card img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  will-change: transform;
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(.19, 1, .22, 1),
    filter 0.3s ease;
}

.project-hover {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0b1020;
  font-size: 14px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(.19, 1, .22, 1);
}

.project-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow:
    0 12px 28px rgba(12, 18, 38, 0.06),
    0 22px 54px rgba(12, 18, 38, 0.09);
  border-color: rgba(110, 132, 255, 0.18);
}

.project-card:hover img {
  transform: scale(1.015) translateZ(0);
  filter: saturate(1.01);
}

.project-card:hover .project-hover {
  opacity: 1;
  transform: translateY(0);
}

.is-locked img {
  filter: saturate(0.94);
}

.locked-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.78);
  color: #fff;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(.19, 1, .22, 1);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .portfolio-project,
  .portfolio-project.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .portfolio-project.reverse .project-copy,
  .portfolio-project.reverse .project-visual {
    order: initial;
  }

  .portfolio-list {
    gap: 84px;
  }

  .portfolio-heading {
    margin-bottom: 64px;
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 100px 0;
  }

  .portfolio-shell {
    width: min(100% - 24px, 1400px);
  }

  .portfolio-title {
    font-size: clamp(44px, 14vw, 72px);
  }

  .project-name {
    font-size: clamp(30px, 9vw, 48px);
  }

  .project-description {
    font-size: 17px;
    line-height: 1.8;
  }

  .project-card {
    padding: 16px;
    border-radius: 22px;
  }

  .project-hover {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .locked-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 8px 10px;
  }
}
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  color: #0b0f19;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(11, 15, 25, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.google-reviews-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 15, 25, 0.14);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.google-reviews-link:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(66, 133, 244, 0.16),
    0 18px 40px rgba(15, 23, 42, 0.12);
}

.google-reviews-link__icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(245,247,250,0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 4px 14px rgba(15, 23, 42, 0.08);
}

.google-reviews-link__text {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.google-reviews-link__arrow {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.google-reviews-link:hover .google-reviews-link__arrow,
.google-reviews-link:focus-visible .google-reviews-link__arrow {
  transform: translateX(3px);
}

/* Optioneel: mobiel iets compacter */
@media (max-width: 767px) {
  .google-reviews-link {
    padding: 0.85rem 1.1rem;
    gap: 0.75rem;
  }

  .google-reviews-link__icon {
    width: 2.2rem;
    height: 2.2rem;
    min-width: 2.2rem;
  }

  .google-reviews-link__text {
    font-size: 0.93rem;
  }
}
@media (max-width: 768px) {

  .portfolio-project {
    flex-direction: column;
    gap: 24px;
  }

  .project-visual {
    width: 100%;
  }

  .project-card {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10; /* maakt 'm visueel groter */
  }

  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ============================================================
   GLOBAL / HELPERS
   ============================================================ */

body {
  overflow-x: hidden;
}

:root {
  --app-vh: 100vh;
}

@supports (height: 100dvh) {
  :root {
    --app-vh: 100dvh;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-panel {
  max-height: none !important;
  display: grid !important;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.32s ease,
    opacity 0.22s ease;
}

.faq-panel > * {
  min-height: 0;
  overflow: hidden;
}

.faq-item.active .faq-panel {
  grid-template-rows: 1fr;
  padding: 0 24px 24px;
  opacity: 1;
}

.faq-panel p {
  margin: 0;
  line-height: 1.7;
}

.faq-icon span {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 980px) {
  .faq-item {
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .faq-panel {
    transition:
      grid-template-rows 0.28s cubic-bezier(0.25, 0.8, 0.25, 1),
      padding 0.24s ease,
      opacity 0.18s ease !important;
    will-change: grid-template-rows, opacity;
    transform: translateZ(0);
  }

  .faq-item.active .faq-panel {
    padding: 0 24px 20px !important;
  }

  .faq-trigger {
    transition: color 0.2s ease;
  }

  .faq-plus {
    transition: transform 0.26s ease;
    transform: translateZ(0);
  }
}

@media (max-width: 768px) {
  #faq,
  .faq-section,
  .faq,
  .faq-wrap {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  #faq,
  .faq-section {
    padding-top: 66px !important;
  }

  .faq-section h1,
  .faq-section .section-title,
  .faq-title {
    font-size: clamp(2.1rem, 8vw, 2.7rem) !important;
    line-height: 0.98 !important;
    margin-bottom: 12px !important;
  }

  .faq-section p,
  .faq-intro {
    font-size: 0.98rem !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    max-width: 30ch !important;
  }

  .faq-section .btn,
  .faq-section .btn-primary,
  .faq-section .btn-secondary {
    min-height: 46px !important;
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
    border-radius: 999px !important;
    margin-bottom: 18px !important;
  }

  .faq-list,
  .faq-accordion {
    gap: 10px !important;
  }

  .faq-item {
    border-radius: 20px !important;
  }

  .faq-trigger {
    padding: 18px !important;
    min-height: 0 !important;
    gap: 14px !important;
    align-items: center !important;
  }

  .faq-trigger h3,
  .faq-question,
  .faq-title-row {
    font-size: 1.28rem !important;
    line-height: 1.16 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
  }

  .faq-icon,
  .faq-plus {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
  }

  .faq-icon span {
    transform-origin: center !important;
  }

  .faq-panel {
    padding: 0 18px !important;
  }

  .faq-item.active .faq-panel {
    padding: 0 18px 18px !important;
  }

  .faq-panel p {
    font-size: 0.95rem !important;
    line-height: 1.58 !important;
  }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal-block,
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal-soft {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-block.is-visible,
.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-block,
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

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

.hero,
.hero.sticky-hero {
  position: relative !important;
  overflow: hidden !important;
}

.hero-text {
  max-width: 520px;
}

.hero-right {
  position: relative;
}

.hero-photo {
  position: relative;
  margin: 2rem 0 0;
  overflow: hidden;
  isolation: isolate;
  line-height: 0;
  background: none;
  border-radius: 34px 110px 42px 96px / 34px 120px 40px 110px !important;
}

.hero-image-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.01);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@supports (padding: max(0px)) {
  .hero,
  .hero.sticky-hero {
    padding-top: max(0px, env(safe-area-inset-top)) !important;
  }
}

@media (min-width: 981px) {
  .hero.sticky-hero {
    position: sticky !important;
    top: 0 !important;
    z-index: 1 !important;
    height: 100vh !important;
    min-height: 100vh !important;
  }

  .stack-wrapper {
    position: relative !important;
    overflow: visible !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .hero.sticky-hero {
    height: 100svh !important;
    min-height: 100svh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero.sticky-hero {
    position: sticky !important;
    top: 0 !important;
    z-index: 1 !important;
  }

  .hero-grid {
    min-height: 100% !important;
    align-items: flex-start !important;
    padding-top: 100px !important;
    gap: 60px !important;
  }

  .hero-right {
    margin-bottom: 45px !important;
  }
}

@media (max-width: 768px) {
  .stack-wrapper {
    position: relative !important;
    overflow: visible !important;
  }

  .hero-right {
    display: none !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 0 !important;
  }

  .hero-left {
    max-width: 100% !important;
  }

  .hero-bg {
    height: 100% !important;
  }

  .hero-left > *:first-child,
  .hero-eyebrow,
  .hero-title {
    margin-top: 0 !important;
  }

  .hero-eyebrow {
    margin-bottom: 8px !important;
  }

  .hero-title {
    margin-bottom: 16px !important;
  }

  .hero-text {
    margin-bottom: 16px !important;
  }

  .hero-cta {
    margin-top: 20px !important;
  }
}

/* ============================================================
   PRICING / #actie
   ============================================================ */

#actie .pricing-grid {
  align-items: stretch !important;
}

#actie .price-card,
#actie .card-content {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

#actie .card-content {
  min-height: 100% !important;
}

#actie .features {
  margin-bottom: auto !important;
}

#actie .btn-primary,
#actie .btn-secondary {
  margin-top: 20px !important;
}

@media (min-width: 981px) {
  #actie.pricing-section,
  .pricing-section {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
  }

  #actie .price-card.featured .card-content {
    position: relative;
  }

  #actie .price-card.featured h3 {
    position: relative;
    padding-right: 150px;
    margin-bottom: 18px;
  }

  #actie .price-card.featured .badge {
    position: absolute !important;
    top: 1px !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px !important;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
    z-index: 5;
  }

  #actie .pricing-dots {
    display: none !important;
  }
}

@media (max-width: 980px) {
  #actie.pricing-section {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    padding: 52px 0 !important;
  }

  #actie .section-header {
    width: calc(100% - 28px) !important;
    max-width: none !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
  }

  #actie .section-header .eyebrow,
  #actie .section-header h2 {
    text-align: center !important;
  }

  #actie .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #actie .pricing-grid {
    --card-w: 88% !important;
    --edge-gap: calc((100vw - var(--card-w)) / 2) !important;

    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column !important;
    grid-auto-columns: var(--card-w) !important;
    gap: 12px !important;

    overflow-x: auto !important;
    overflow-y: visible !important;
    overscroll-behavior-x: contain !important;
    -webkit-overflow-scrolling: touch !important;

    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: var(--edge-gap) !important;

    padding: 2px var(--edge-gap) 12px !important;
    margin: 4px 0 0 !important;

    justify-items: stretch !important;
    scrollbar-width: none !important;
  }

  #actie .pricing-grid::-webkit-scrollbar {
    display: none !important;
  }

  #actie .price-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 22px !important;
    border-radius: 22px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease,
      opacity 0.35s ease;
  }

  #actie .price-card.featured {
    padding-top: 42px !important;
    transform: none !important;
  }

  #actie .price-card.featured .badge {
    position: static !important;
    display: inline-block !important;
    margin-bottom: 10px !important;
    font-size: 11px !important;
    padding: 7px 10px !important;
  }

  #actie .price-card h3 {
    font-size: 1.5rem !important;
    line-height: 1.05 !important;
    margin-bottom: 10px !important;
    padding-right: 0 !important;
  }

  #actie .description {
    font-size: 0.93rem !important;
    line-height: 1.5 !important;
    min-height: auto !important;
    margin-bottom: 18px !important;
  }

  #actie .price {
    font-size: 1.95rem !important;
    line-height: 1.02 !important;
    margin-bottom: 18px !important;
    white-space: normal !important;
  }

  #actie .price span {
    font-size: 0.88rem !important;
  }

  #actie .features {
    padding-top: 16px !important;
    margin-bottom: auto !important;
  }

  #actie .features li {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }

  #actie .btn-primary,
  #actie .btn-secondary {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 16px !important;
    min-height: 46px !important;
    font-size: 0.95rem !important;
    border-radius: 14px !important;
  }

  #actie .pricing-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px !important;
    padding-bottom: 2px;
  }

  #actie .pricing-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    opacity: 0.75;
    transition:
      width 0.28s ease,
      opacity 0.28s ease,
      background 0.28s ease,
      transform 0.28s ease,
      box-shadow 0.28s ease;
  }

  #actie .pricing-dot.is-active {
    width: 22px;
    background: linear-gradient(90deg, #3d67ff 0%, #66d0b0 100%);
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  }

  #actie .pricing-dot:focus-visible {
    outline: none;
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(61, 103, 255, 0.18);
  }

  #actie .price-card.is-active-card {
    transform: translateY(-2px);
    box-shadow:
      0 14px 34px rgba(17, 28, 68, 0.22),
      0 0 0 1px rgba(77, 110, 255, 0.22);
  }

  #actie .price-card:not(.is-active-card) {
    opacity: 0.94;
  }
}

/* ============================================================
   PORTFOLIO SLIDER
   ============================================================ */

#portfolio.portfolio-slider {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(190, 160, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(86, 123, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #edf2f7 0%, #eef3f8 100%);
}

#portfolio.portfolio-slider .portfolio-shell {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

#portfolio.portfolio-slider .portfolio-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

#portfolio.portfolio-slider .portfolio-kicker {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(10, 15, 30, 0.72);
}

#portfolio.portfolio-slider .portfolio-title {
  margin: 0;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #0b1020;
}

#portfolio.portfolio-slider .portfolio-intro {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.70);
}

#portfolio.portfolio-slider .portfolio-slider-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 28px;
}

#portfolio.portfolio-slider .portfolio-progress {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(11, 16, 32, 0.10);
  overflow: hidden;
  border-radius: 999px;
}

#portfolio.portfolio-slider .portfolio-progress-line {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #3d67ff 0%, rgba(61, 103, 255, 0.75) 100%);
  transform-origin: left center;
  transition:
    width 0.55s cubic-bezier(.19, 1, .22, 1),
    transform 0.55s cubic-bezier(.19, 1, .22, 1);
}

#portfolio.portfolio-slider .portfolio-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

#portfolio.portfolio-slider .portfolio-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0b1020;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

#portfolio.portfolio-slider .portfolio-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(61, 103, 255, 0.18);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

#portfolio.portfolio-slider .portfolio-arrow:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(61, 103, 255, 0.14),
    0 16px 36px rgba(15, 23, 42, 0.10);
}

#portfolio.portfolio-slider .portfolio-arrow.is-disabled {
  opacity: 0.38;
  pointer-events: none;
  transform: none;
}

#portfolio.portfolio-slider .portfolio-viewport {
  position: relative;
  overflow: hidden;
}

#portfolio.portfolio-slider .portfolio-track {
  display: flex;
  gap: 32px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.75s cubic-bezier(.19, 1, .22, 1);
}

#portfolio.portfolio-slider .portfolio-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

#portfolio.portfolio-slider .portfolio-project {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(400px, 1fr);
  align-items: center;
  gap: 84px;
  min-height: 520px;
}

#portfolio.portfolio-slider .project-copy {
  position: relative;
  z-index: 2;
}

#portfolio.portfolio-slider .project-category {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3d67ff;
}

#portfolio.portfolio-slider .project-name {
  margin: 0 0 22px;
  font-size: clamp(36px, 4vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0b1020;
}

#portfolio.portfolio-slider .project-description {
  max-width: 520px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(10, 15, 30, 0.72);
}

#portfolio.portfolio-slider .project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

#portfolio.portfolio-slider .project-meta span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  color: rgba(10, 15, 30, 0.68);
}

#portfolio.portfolio-slider .project-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0b1020;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#portfolio.portfolio-slider .project-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #0b1020;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.19, 1, .22, 1);
}

#portfolio.portfolio-slider .project-link:hover::after {
  transform: scaleX(1);
}

#portfolio.portfolio-slider .locked-link {
  opacity: 0.75;
  cursor: default;
}

#portfolio.portfolio-slider .locked-link::after {
  transform: scaleX(1);
  opacity: 0.22;
}

#portfolio.portfolio-slider .project-visual,
#portfolio.portfolio-slider .project-link-wrap {
  display: block;
  width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

#portfolio.portfolio-slider .project-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 24px rgba(12, 18, 38, 0.05),
    0 18px 48px rgba(12, 18, 38, 0.07);
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(.19, 1, .22, 1),
    box-shadow 0.45s cubic-bezier(.19, 1, .22, 1),
    border-color 0.3s ease;
}

#portfolio.portfolio-slider .project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(109, 136, 255, 0.05) 100%
  );
}

#portfolio.portfolio-slider .project-card img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition:
    transform 0.45s cubic-bezier(.19, 1, .22, 1),
    filter 0.3s ease;
}

#portfolio.portfolio-slider .project-hover {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0b1020;
  font-size: 14px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(.19, 1, .22, 1);
}

#portfolio.portfolio-slider .project-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 28px rgba(12, 18, 38, 0.06),
    0 22px 54px rgba(12, 18, 38, 0.09);
  border-color: rgba(110, 132, 255, 0.18);
}

#portfolio.portfolio-slider .project-card:hover img {
  transform: scale(1.015);
  filter: saturate(1.01);
}

#portfolio.portfolio-slider .project-card:hover .project-hover {
  opacity: 1;
  transform: translateY(0);
}

#portfolio.portfolio-slider .project-card.is-locked img {
  filter: saturate(0.94);
}

#portfolio.portfolio-slider .locked-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.78);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#portfolio.portfolio-slider .portfolio-container,
#portfolio.portfolio-slider .portfolio-list {
  display: block !important;
  transform: none !important;
  width: auto !important;
  padding: 0 !important;
  gap: 0 !important;
}

#portfolio.portfolio-slider .portfolio-item,
#portfolio.portfolio-slider .glass-card,
#portfolio.portfolio-slider .parallax-text,
#portfolio.portfolio-slider .sticky-wrapper {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  transform: none !important;
  overflow: visible !important;
}

@media (min-width: 981px) {
  #portfolio.portfolio-slider .portfolio-heading {
    margin-bottom: 12px !important;
  }

  #portfolio.portfolio-slider .portfolio-intro {
    margin-top: 16px !important;
  }

  #portfolio.portfolio-slider .portfolio-slider-topbar {
    margin-bottom: 22px !important;
  }
}

@media (max-width: 1100px) {
  #portfolio.portfolio-slider .portfolio-project {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  #portfolio.portfolio-slider .project-card {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  #portfolio.portfolio-slider .project-card img {
    max-height: none;
  }
}

@media (max-width: 980px) {
  #portfolio.portfolio-slider {
    padding: 72px 18px 76px !important;
    overflow: hidden;
  }

  #portfolio.portfolio-slider .portfolio-shell {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
  }

  #portfolio.portfolio-slider .portfolio-heading {
    order: 1 !important;
    padding-right: 6px !important;
    margin-bottom: 18px !important;
  }

  #portfolio.portfolio-slider .portfolio-title {
    font-size: clamp(40px, 12vw, 64px);
    line-height: 0.96;
  }

  #portfolio.portfolio-slider .portfolio-intro {
    margin-top: 10px;
    max-width: 32ch !important;
    font-size: 15px;
    line-height: 1.55;
  }

  #portfolio.portfolio-slider .portfolio-viewport {
    order: 2 !important;
    overflow: hidden;
    margin: 0 0 14px !important;
    padding-bottom: 0 !important;
    scroll-snap-type: none;
    scrollbar-width: none;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #portfolio.portfolio-slider .portfolio-viewport::-webkit-scrollbar {
    display: none;
  }

  #portfolio.portfolio-slider .portfolio-slider-topbar {
    order: 3 !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #portfolio.portfolio-slider .portfolio-progress {
    flex: 1 1 auto !important;
    max-width: none !important;
  }

  #portfolio.portfolio-slider .portfolio-nav {
    flex: 0 0 auto !important;
    gap: 6px;
  }

  #portfolio.portfolio-slider .portfolio-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
    opacity: 0.85;
    border: 1px solid rgba(11, 16, 32, 0.06);
    background: rgba(255, 255, 255, 0.6);
    box-shadow:
      0 6px 16px rgba(15, 23, 42, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }

  #portfolio.portfolio-slider .portfolio-arrow:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.7);
  }

  #portfolio.portfolio-slider .portfolio-arrow.is-disabled {
    opacity: 0.3;
  }

  #portfolio.portfolio-slider .portfolio-track {
    display: flex;
    width: auto;
    gap: 12px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  #portfolio.portfolio-slider .portfolio-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  #portfolio.portfolio-slider .portfolio-project,
  #portfolio.portfolio-slider .project-card,
  #portfolio.portfolio-slider .project-visual {
    overscroll-behavior-y: auto;
  }

  #portfolio.portfolio-slider .portfolio-project {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px !important;
    min-height: auto;
  }

  #portfolio.portfolio-slider .project-copy {
    display: grid;
    align-content: start;
    grid-template-rows: auto minmax(2em, auto) minmax(6.4em, auto) auto auto;
    padding-right: 2px;
  }

  #portfolio.portfolio-slider .project-category {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  #portfolio.portfolio-slider .project-name {
    display: block;
    min-height: 2em;
    margin: 0 0 10px;
    font-size: clamp(26px, 7.2vw, 40px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  #portfolio.portfolio-slider .project-description {
    max-width: none;
    min-height: 6.4em;
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.58;
  }

  #portfolio.portfolio-slider .project-meta {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 6px;
    min-height: 38px;
    margin-bottom: 12px;
    overflow: hidden;
  }

  #portfolio.portfolio-slider .project-meta span {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 7px 8px;
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #portfolio.portfolio-slider .project-link,
  #portfolio.portfolio-slider .locked-link {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    font-size: 13px;
  }

  #portfolio.portfolio-slider .project-card {
    width: 100%;
    min-height: 0;
    height: 228px;
    aspect-ratio: auto;
    padding: 12px;
    border-radius: 18px;
  }

  #portfolio.portfolio-slider .project-card img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    border-radius: 11px;
  }

  #portfolio.portfolio-slider .project-hover {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px 9px;
    font-size: 10.5px;
    line-height: 1.15;
    opacity: 1;
    transform: none;
    background: rgba(255, 255, 255, 0.80);
  }

  #portfolio.portfolio-slider .locked-badge {
    top: 8px;
    left: 8px;
    padding: 6px 8px;
    font-size: 9.5px;
  }
}

@media (max-width: 768px) {
  #portfolio.portfolio-slider .portfolio-heading {
    margin-bottom: 24px !important;
  }

  #portfolio.portfolio-slider .project-meta {
    display: none !important;
  }

  #portfolio.portfolio-slider .project-copy {
    display: block !important;
    padding-right: 0 !important;
  }

  #portfolio.portfolio-slider .project-category {
    margin-bottom: 6px !important;
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
  }

  #portfolio.portfolio-slider .project-name {
    min-height: 0 !important;
    margin: 0 0 10px !important;
    font-size: clamp(24px, 7vw, 36px) !important;
    line-height: 0.96 !important;
  }

  #portfolio.portfolio-slider .project-description {
    min-height: 0 !important;
    margin: 0 0 14px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  #portfolio.portfolio-slider .project-link,
  #portfolio.portfolio-slider .locked-link {
    display: inline-flex !important;
    margin: 0 0 16px !important;
    font-size: 13px !important;
  }

  #portfolio.portfolio-slider .project-card {
    height: 215px !important;
    padding: 10px !important;
    border-radius: 16px !important;
  }

  #portfolio.portfolio-slider .project-card img {
    border-radius: 10px !important;
  }

  #portfolio.portfolio-slider .project-hover {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    padding: 7px 8px !important;
    font-size: 10px !important;
  }

  #portfolio.portfolio-slider .reveal,
  #portfolio.portfolio-slider .reveal-left,
  #portfolio.portfolio-slider .reveal-right,
  #portfolio.portfolio-slider .reveal-up,
  #portfolio.portfolio-slider .reveal-block,
  #portfolio .reveal,
  #portfolio .reveal-left,
  #portfolio .reveal-right,
  #portfolio .reveal-up,
  #portfolio .reveal-block {
    transform: translateY(18px) !important;
  }

  #portfolio.portfolio-slider .reveal.is-visible,
  #portfolio.portfolio-slider .reveal-left.is-visible,
  #portfolio.portfolio-slider .reveal-right.is-visible,
  #portfolio.portfolio-slider .reveal-up.is-visible,
  #portfolio.portfolio-slider .reveal-block.is-visible,
  #portfolio .reveal.is-visible,
  #portfolio .reveal-left.is-visible,
  #portfolio .reveal-right.is-visible,
  #portfolio .reveal-up.is-visible,
  #portfolio .reveal-block.is-visible {
    transform: translateY(0) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #portfolio.portfolio-slider .portfolio-track,
  #portfolio.portfolio-slider .project-card,
  #portfolio.portfolio-slider .project-card img,
  #portfolio.portfolio-slider .project-hover,
  #portfolio.portfolio-slider .portfolio-arrow,
  #portfolio.portfolio-slider .portfolio-progress-line {
    transition: none !important;
  }
}

/* ============================================================
   REVIEWS V2
   ============================================================ */

.reviews-v2 {
  padding: 80px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .28), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  overflow: hidden;
}

.reviews-v2 .container {
  width: min(1400px, calc(100% - 48px));
}

.reviews-v2__heading {
  max-width: 780px;
  margin: 0 auto 26px !important;
  text-align: center;
}

.reviews-v2__eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(12, 17, 23, .55);
}

.reviews-v2__title {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.reviews-v2__title span {
  display: block;
  margin-top: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.reviews-v2__title .reviews-v2__nowrap,
.reviews-v2__title .reviews-v2__nowrap span {
  display: inline !important;
  white-space: nowrap !important;
}

.reviews-v2__intro {
  margin: 20px auto 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
}

.reviews-v2__rating {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(12, 17, 23, .55);
}

.reviews-v2__stars {
  font-size: 15px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #f7b500, #f4b400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-v2__cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 42px;
}

.reviews-v2__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0b1020;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 10px 30px rgba(12, 18, 38, .06),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease,
    border-color .28s ease;
}

.reviews-v2__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-v2__cta span:last-child {
  transform: translateX(0);
  transition: transform .28s ease;
}

.reviews-v2__cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .86);
  border-color: rgba(61, 103, 255, .16);
  box-shadow:
    0 14px 34px rgba(12, 18, 38, .09),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.reviews-v2__cta:hover span:last-child {
  transform: translateX(3px);
}

.reviews-v2__cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(61, 103, 255, .14),
    0 14px 34px rgba(12, 18, 38, .09);
}

.reviews-v2__viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-v2__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.reviews-v2-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(12, 17, 23, .05);
  backdrop-filter: blur(10px);
}

.reviews-v2-card__top {
  margin-bottom: 18px;
}

.reviews-v2-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12, 17, 23, .08);
}

.reviews-v2-card__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.reviews-v2-card__stars {
  display: flex;
  gap: 4px;
  color: #f4b400;
  font-size: 17px;
  line-height: 1;
}

.reviews-v2-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.reviews-v2-card__text {
  --lines: 8;
  margin: 0;
  position: relative;
  color: rgba(12, 17, 23, .82);
  font-size: 16px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: var(--lines);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-v2-card.is-collapsed .reviews-v2-card__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .96));
  pointer-events: none;
}

.reviews-v2-card.is-expanded .reviews-v2-card__text {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.reviews-v2-card.is-expanded .reviews-v2-card__text::after {
  display: none;
}

.reviews-v2-card__toggle {
  display: none;
  align-self: flex-start;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2056ff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform .25s ease, color .25s ease, opacity .2s ease;
}

.reviews-v2-card__toggle.is-visible {
  display: inline-flex;
}

.reviews-v2-card__toggle:hover {
  color: #163fbe;
  transform: translateX(4px);
}

.reviews-v2-card__author {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(12, 17, 23, .08);
}

.reviews-v2-card__author strong {
  display: block;
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.reviews-v2-card__author span {
  display: block;
  color: rgba(12, 17, 23, .56);
  font-size: 15px;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .reviews-v2-card {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .reviews-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 767px) {
  #reviews,
  #reviews.horizontal-reviews {
    padding-top: 36px !important;
  }

  #reviews.reviews-v2 {
    padding-top: 80px !important;
  }

  .reviews-v2 {
    padding-top: 80px !important;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .reviews-v2 .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    overflow: hidden;
  }

  .reviews-v2__heading {
    margin-top: 40px;
    margin-bottom: 18px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .reviews-v2__title {
    text-align: center;
    font-size: clamp(42px, 11vw, 56px) !important;
    line-height: 0.95 !important;
  }

  .reviews-v2__intro {
    font-size: 17px;
  }

  .reviews-v2__cta-row {
    justify-content: center;
    margin-bottom: 60px !important;
  }

  .reviews-v2__cta {
    min-height: 50px;
    padding: 14px 18px;
    font-size: 14px;
  }

  .reviews-v2__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch !important;
    gap: 10px !important;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    touch-action: pan-y;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reviews-v2-card {
    flex: 0 0 92vw !important;
    width: 92vw !important;
    max-width: 92vw !important;
    box-sizing: border-box !important;
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .reviews-v2-card__body {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .reviews-v2-card__text {
    --lines: 7;
    position: relative !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    font-size: 15px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 7 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .reviews-v2-card.is-expanded {
    height: auto !important;
    min-height: 420px !important;
    max-height: none !important;
    align-self: flex-start !important;
  }

  .reviews-v2-card.is-expanded .reviews-v2-card__text {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    padding-right: 0 !important;
  }

  .reviews-v2-card.is-expanded .reviews-v2-card__text::after {
    display: none !important;
  }

  .reviews-v2-card__toggle {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 20px !important;
    margin-top: 12px !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .reviews-v2-card__toggle.is-visible {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .reviews-v2-card__author {
    margin-top: 16px !important;
    padding-top: 14px !important;
    margin-bottom: 0 !important;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */

#contact .contact-nav-btn,
#contact .contact-back-link {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

@media (min-width: 981px) {
  #contact .contact-mobile-viewport {
    overflow: visible;
  }

  #contact .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: start;
  }

  #contact .contact-nav-btn,
  #contact .contact-back-link {
    display: none !important;
  }
}

@media (min-width: 769px) {
  #contact .contact-card {
    padding: 24px !important;
  }

  #contact .contact-card-top {
    margin-bottom: 12px !important;
    padding-bottom: 0 !important;
  }

  #contact .contact-form {
    row-gap: 10px !important;
    column-gap: 10px !important;
  }

  #contact .field-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    row-gap: 12px !important;
    column-gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #contact .field {
    margin: 0 !important;
    padding: 0 !important;
  }

  #contact .field label {
    display: block !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    line-height: 1.25 !important;
  }

  #contact .field .error,
  #contact .error[data-error-for] {
    display: block !important;
    margin: 4px 0 0 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }

  #contact .contact-form input:not([type="checkbox"]):not([type="radio"]),
  #contact .contact-form select {
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 10px 14px !important;
  }

  #contact .contact-form textarea {
    min-height: 130px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
  }

  #contact .field-row {
    margin-top: 6px !important;
    padding-top: 0 !important;
    gap: 8px !important;
  }

  #contact .field-check {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  #contact .contact-submit {
    margin-top: 10px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 10px 16px !important;
  }
}

@media (max-width: 980px) {
  #contact.contact-section {
    overflow: hidden;
  }

  #contact .contact-slider-shell {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #contact .contact-mobile-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
    border-radius: 28px;
    height: auto;
    transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    align-items: start;
  }

  #contact .contact-mobile-viewport::-webkit-scrollbar {
    display: none;
  }

  #contact .contact-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 100% !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    align-items: start !important;
    width: 100% !important;
  }

  #contact .contact-left,
  #contact .contact-right {
    min-width: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    align-self: start !important;
    min-height: 0 !important;
  }

  #contact .contact-left {
    height: fit-content;
    padding-top: 10px !important;
    padding-right: 2px;
  }

  #contact .contact-right {
    height: auto;
    padding-left: 0;
  }

  #contact .contact-eyebrow {
    display: block !important;
    margin: 0 0 14px 0 !important;
    padding-left: 2px !important;
    line-height: 1.4 !important;
    overflow: visible !important;
  }

  #contact .contact-title {
    margin-bottom: 14px !important;
    font-size: clamp(2.2rem, 10vw, 3.2rem) !important;
    line-height: 0.98 !important;
  }

  #contact .contact-text {
    max-width: 30ch;
    margin-bottom: 18px !important;
    line-height: 1.58 !important;
  }

  #contact .contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px !important;
  }

  #contact .contact-meta {
    display: grid;
    gap: 12px;
    margin-bottom: 14px !important;
  }

  #contact .contact-left .contact-meta {
    margin-bottom: 12px !important;
  }

  #contact .meta-card {
    border-radius: 20px !important;
  }

  #contact .contact-card {
    border-radius: 24px !important;
  }

  #contact .contact-card-top--with-back {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px !important;
  }

  #contact .contact-card-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  #contact .status-text {
    font-size: 14px;
    line-height: 1.35;
  }

  #contact .contact-nav-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    margin-top: 6px !important;
    border: 1px solid rgba(88, 122, 255, 0.32);
    border-radius: 18px;
    color: #f5f7ff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, rgba(72, 104, 230, 0.96) 0%, rgba(56, 90, 215, 0.96) 100%);
    box-shadow:
      0 10px 26px rgba(16, 24, 40, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    transition:
      transform 0.24s ease,
      box-shadow 0.24s ease,
      filter 0.24s ease,
      border-color 0.24s ease;
  }

  #contact .contact-nav-btn span {
    display: inline-flex;
    align-items: center;
    transform: translateX(0);
    transition: transform 0.24s ease;
  }

  #contact .contact-nav-btn:active,
  #contact .contact-back-link:active {
    transform: scale(0.985);
  }

  #contact .contact-nav-btn:hover {
    filter: brightness(1.03);
    box-shadow:
      0 14px 30px rgba(16, 24, 40, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  }

  #contact .contact-nav-btn:hover span,
  #contact .contact-nav-btn:focus-visible span {
    transform: translateX(3px);
  }

  #contact .contact-nav-btn:focus-visible,
  #contact .contact-back-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(61, 103, 255, 0.18);
  }

  #contact .contact-back-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    line-height: 1;
    transition:
      background 0.28s ease,
      color 0.28s ease,
      transform 0.28s ease;
  }
}

@media (max-width: 768px) {
  #contact .contact-card {
    padding: 20px 16px !important;
  }

  #contact .contact-card-top {
    margin-bottom: 14px !important;
    padding-bottom: 0 !important;
  }

  #contact .contact-form {
    row-gap: 12px !important;
    column-gap: 12px !important;
  }

  #contact .field-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 12px !important;
    column-gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #contact .field {
    margin: 0 !important;
    padding: 0 !important;
  }

  #contact .field label {
    display: block !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  #contact .contact-form input:not([type="checkbox"]):not([type="radio"]),
  #contact .contact-form select,
  #contact .contact-form textarea {
    margin: 0 !important;
    padding: 12px 14px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  #contact .contact-form input:not([type="checkbox"]):not([type="radio"]),
  #contact .contact-form select {
    height: 46px !important;
    min-height: 46px !important;
  }

  #contact .contact-form textarea {
    min-height: 120px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  #contact .field .error,
  #contact .error[data-error-for] {
    display: block !important;
    margin: 4px 0 0 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }

  #contact .field-row {
    margin-top: 6px !important;
    padding-top: 0 !important;
    gap: 8px !important;
  }

  #contact .field-row small,
  #contact .hint,
  #contact .counter {
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  #contact .field-check {
    margin-top: 4px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  #contact .field-check label {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  #contact .contact-submit {
    margin-top: 8px !important;
    min-height: 48px !important;
    height: 48px !important;
    padding: 12px 16px !important;
  }
}

@media (max-width: 640px) {
  #contact .contact-card-top--with-back {
    flex-direction: column;
    align-items: flex-start;
  }

  #contact .contact-back-link {
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #contact .contact-mobile-viewport {
    scroll-behavior: auto !important;
  }

  #contact .contact-nav-btn,
  #contact .contact-back-link {
    transition: none !important;
  }
}

/* ============================================================
   WERKWIJZE
   ============================================================ */

@media (max-width: 980px) {
  #werkwijze.process-section {
    overflow: hidden;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #werkwijze .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #werkwijze .process-header {
    margin-bottom: 24px !important;
    padding-right: 6px !important;
  }

  #werkwijze .process-left,
  #werkwijze .process-line-container,
  #werkwijze .line-background,
  #werkwijze #progress-line {
    display: none !important;
  }

  #werkwijze .process-wrapper {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    padding-bottom: 18px !important;
    border-left: 0 !important;
  }

  #werkwijze .process-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    border-radius: 999px;
    background: rgba(12, 17, 23, 0.10);
  }

  #werkwijze .process-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: var(--mobile-progress, 20%);
    border-radius: 999px;
    background: linear-gradient(90deg, #66d0b0 0%, #35c98b 100%);
    z-index: 2;
    transition: width 0.2s ease;
  }

  #werkwijze .process-right {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 84% !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 0 6px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    border-left: 0 !important;
  }

  #werkwijze .process-right::-webkit-scrollbar {
    display: none;
  }

  #werkwijze .process-wrapper::before,
  #werkwijze .process-wrapper::after,
  #werkwijze .process-right::before,
  #werkwijze .process-right::after {
    pointer-events: none !important;
  }

  #werkwijze .step {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100%;
    padding: 22px 18px 24px !important;
    margin: 0 !important;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(12, 17, 23, 0.08);
    box-shadow: 0 10px 30px rgba(12, 17, 23, 0.05);
    opacity: 1 !important;
    border-left: 0 !important;
  }

  #werkwijze .step:first-child {
    margin-left: 0 !important;
  }

  #werkwijze .step::before {
    content: attr(data-step);
    display: block;
    margin-bottom: 14px;
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(12, 17, 23, 0.22);
  }

  #werkwijze .step h3 {
    margin: 0 0 12px !important;
    font-size: 1.55rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em;
  }

  #werkwijze .step p {
    margin: 0 !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
    color: rgba(12, 17, 23, 0.72);
  }
}

@media (max-width: 640px) {
  #werkwijze .process-right {
    grid-auto-columns: 88% !important;
  }

  #werkwijze .step {
    padding: 20px 16px 22px !important;
  }

  #werkwijze .step h3 {
    font-size: 1.38rem !important;
  }
}

/* ============================================================
   SPIDERWEB
   ============================================================ */

.spiderweb-hero {
  position: relative;
  min-height: 110vh;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 52% 34%, rgba(90, 120, 170, 0.10) 0%, rgba(15, 20, 30, 0.06) 24%, rgba(3, 4, 8, 1) 62%),
    linear-gradient(180deg, #06080d 0%, #020304 100%);
}

#spiderweb-app {
  position: relative;
  width: 100%;
  height: 100vh;
  isolation: isolate;
}

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

#spiderweb-app .mist,
#spiderweb-app .grain,
#spiderweb-app .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

#spiderweb-app .mist {
  background:
    radial-gradient(ellipse at 50% 24%, rgba(190, 220, 255, 0.03) 0%, transparent 24%),
    radial-gradient(ellipse at 60% 70%, rgba(120, 150, 220, 0.04) 0%, transparent 22%) !important;
  filter: blur(26px) !important;
}

#spiderweb-app .grain {
  opacity: .05;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .1) 0 1px, transparent 1.5px);
  background-size: 200px 200px;
  mix-blend-mode: screen;
}

#spiderweb-app .vignette {
  background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, .5) 100%);
}

#spiderweb-app .ui {
  position: absolute;
  right: 6vw;
  bottom: 10vh;
  left: auto;
  z-index: 2;
  max-width: 500px;
  text-align: right;
}

#spiderweb-app h1,
#spiderweb-app .ui .spiderweb-title {
  display: block !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  font-size: clamp(52px, 7vw, 110px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.04em !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-align: inherit !important;
  max-width: 8ch !important;
  font-family: inherit !important;
  text-transform: none !important;
}

#spiderweb-app p {
  color: rgba(255, 255, 255, .65);
}

#spiderweb-app .eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

#spiderweb-app .hint {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 12px;
  opacity: .5;
}

@media (min-width: 981px) {
  .spiderweb-hero {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
    height: auto !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  #spiderweb-app {
    height: clamp(720px, 88vh, 980px) !important;
    min-height: 720px !important;
  }
}

@media (max-width: 980px) {
  .spiderweb-hero {
    display: block !important;
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 52% 30%, rgba(90, 120, 170, 0.14) 0%, rgba(15, 20, 30, 0.08) 26%, rgba(3, 4, 8, 1) 66%),
      linear-gradient(180deg, #06080d 0%, #020304 100%) !important;
  }

  #spiderweb-app {
    width: 100% !important;
    height: clamp(500px, 68svh, 760px) !important;
    min-height: 500px !important;
    overflow: hidden !important;
  }

  #spiderweb-app canvas {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  #spiderweb-app .mist {
    opacity: 0.72 !important;
    filter: blur(24px) !important;
  }

  #spiderweb-app .grain {
    opacity: 0.03 !important;
  }

  #spiderweb-app .vignette {
    background: radial-gradient(circle, transparent 42%, rgba(0, 0, 0, .42) 100%) !important;
  }

  #spiderweb-app .ui {
    left: 18px !important;
    right: 18px !important;
    bottom: 24px !important;
    max-width: none !important;
    text-align: left !important;
    z-index: 2 !important;
  }

  #spiderweb-app .eyebrow {
    display: inline-flex !important;
    align-items: center;
    max-width: 100%;
    padding: 8px 12px !important;
    margin-bottom: 14px !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    line-height: 1.1 !important;
    border-radius: 999px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  #spiderweb-app h1,
  #spiderweb-app .ui .spiderweb-title {
    margin: 0 0 10px !important;
    font-size: clamp(34px, 11vw, 56px) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.045em !important;
    max-width: 8ch !important;
  }

  #spiderweb-app p {
    margin: 0 !important;
    max-width: 30ch !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, .72) !important;
  }

  #spiderweb-app .hint {
    right: 16px !important;
    bottom: 12px !important;
    font-size: 11px !important;
    opacity: 0.42 !important;
  }
}

@media (max-width: 640px) {
  #spiderweb-app {
    height: clamp(500px, 64svh, 680px) !important;
    min-height: 500px !important;
  }

  #spiderweb-app .ui {
    left: 16px !important;
    right: 16px !important;
    bottom: 24px !important;
  }

  #spiderweb-app h1,
  #spiderweb-app .ui .spiderweb-title {
    font-size: clamp(30px, 10.5vw, 44px) !important;
    max-width: 9ch !important;
  }

  #spiderweb-app p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 28ch !important;
  }

  #spiderweb-app .eyebrow {
    font-size: 9px !important;
    padding: 7px 10px !important;
  }
}

/* ============================================================
   SCROLL WHEEL
   ============================================================ */

#scroll .sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  background:
    radial-gradient(1200px 800px at 18% 88%, rgba(168, 120, 255, 0.35), transparent 65%),
    radial-gradient(800px 520px at 10% 92%, rgba(255, 140, 180, 0.25), transparent 62%),
    radial-gradient(1200px 900px at 78% 18%, rgba(120, 200, 255, 0.18), transparent 65%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  background-size: 100% 100%;
  background-position: center center;
  background-attachment: scroll !important;
  transition: none;
}

#scroll .scroll-wheel,
#scroll .wheel-wrapper {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

#scroll .scroll-wheel {
  transition: none;
}

@media (max-width: 768px) {
  #scroll .sticky-container,
  #scroll .scroll-wheel {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  #scroll .sticky-container,
  #scroll .scroll-wheel,
  #scroll .wheel-wrapper {
    will-change: auto;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr !important;
  gap: 60px !important;
  align-items: start !important;
}

.site-footer .footer-col {
  width: auto !important;
  max-width: none !important;
  flex: unset !important;
}

.site-footer .footer-brand {
  max-width: 520px;
}

@media (max-width: 980px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .site-footer .footer-col,
  .site-footer .footer-brand {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ============================================================
   TOUCH / IPAD / HIGH-END TABLET STABILIZER
   ============================================================ */

@media (hover: none) and (pointer: coarse) and (min-width: 981px) {
  html,
  body {
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto !important;
  }

  .stack-wrapper,
  main#page,
  .page {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  section {
    overflow-x: visible !important;
  }

  .container {
    width: min(1200px, calc(100% - 56px)) !important;
    max-width: none !important;
    overflow: visible !important;
  }

  .hero-photo::before,
  .hero-photo::after,
  .about-card-glow,
  .contact-bg {
    display: none !important;
  }

  .site-header,
  .glass-card,
  .pill {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .sticky-hero,
  #portfolio .sticky-wrapper,
  #reviews .sticky-wrapper,
  #scroll .sticky-container {
    position: relative !important;
    height: auto !important;
    top: auto !important;
  }

  .hightech__stage,
  #hightech-canvas {
    display: none !important;
  }

  #hightech {
    min-height: auto !important;
    background: #000 !important;
  }

  .section,
  .pricing-section,
  .process-section {
    position: relative !important;
    transform: none !important;
    margin-top: 0 !important;
    opacity: 1 !important;
  }

  #actie.pricing-section {
    background-color: #0a0a0b !important;
    background-image: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  #actie .price-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  #actie .main-title,
  #actie .price-card h3,
  #actie .price,
  #actie .btn-secondary {
    color: #ffffff !important;
  }

  #actie .description,
  #actie .price span,
  #actie .features li {
    color: rgba(255, 255, 255, 0.6) !important;
  }

  #actie .price-card.featured {
    border: 1px solid #3b66f5 !important;
    background: rgba(59, 102, 245, 0.05) !important;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero,
  .sticky-container,
  .sticky-wrapper {
    height: -webkit-fill-available !important;
  }
}

/* ============================================================
   IPAD PORTFOLIO IMAGE FIX
   ============================================================ */

@media (min-width: 768px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
  #portfolio.portfolio-slider .portfolio-project {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: start !important;
  }

  #portfolio.portfolio-slider .project-visual {
    width: 100% !important;
    min-width: 0 !important;
  }

  #portfolio.portfolio-slider .project-card {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.82) !important;
    overflow: hidden !important;
  }

  #portfolio.portfolio-slider .project-card img {
    width: 100% !important;
    height: auto !important;
    max-height: 62vh !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 20px !important;
    display: block !important;
  }

  #portfolio.portfolio-slider .project-hover {
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 3 !important;
    display: flex !important;
    align-items: center !important;
    margin-top: 0 !important;
    padding: 12px 16px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    color: #0b1020 !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none !important;
  }
}

/* ============================================================
   IPAD PRO FIX — #scroll + #werkwijze
   ============================================================ */

@media (min-width: 1024px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
  #scroll.scroll-pin-section {
    min-height: 100svh !important;
    height: 100svh !important;
    overflow: hidden !important;
  }

  #scroll .sticky-container {
    position: relative !important;
    top: auto !important;
    height: 100% !important;
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  #scroll .wheel-wrapper {
    width: min(72vw, 620px) !important;
    height: min(72vw, 620px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  #scroll .scroll-wheel,
  #scroll .scroll-wheel svg {
    width: 100% !important;
    height: 100% !important;
  }

  #scroll .scroll-wheel svg {
    display: block !important;
  }

  #scroll .wheel-logo {
    width: 24% !important;
    height: 24% !important;
    max-width: 130px !important;
    max-height: 130px !important;
  }

  #scroll .wheel-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  #werkwijze.process-section {
    overflow: hidden !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  #werkwijze .process-header {
    margin-bottom: 28px !important;
    padding-right: 8px !important;
  }

  #werkwijze .process-right {
    grid-auto-columns: 68% !important;
    gap: 18px !important;
    padding: 0 0 8px 0 !important;
  }

  #werkwijze .step {
    padding: 26px 22px 28px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.72) !important;
  }

  #werkwijze .step::before {
    font-size: 2.4rem !important;
  }

  #werkwijze .step h3 {
    font-size: 1.7rem !important;
  }

  #werkwijze .step p {
    font-size: 1rem !important;
    line-height: 1.68 !important;
  }
}
@media (max-width: 980px) {

  /* verticale lijn in cards weg */
  #werkwijze .step,
  #werkwijze .process-right {
    border-left: none !important;
  }

  #werkwijze .step::after,
  #werkwijze .process-right::before,
  #werkwijze .process-right::after {
    content: none !important;
    display: none !important;
  }

  #werkwijze .step::before {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 14px 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  /* horizontale progresslijn herstellen */
  #werkwijze .process-wrapper::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: rgba(12, 17, 23, 0.10) !important;
  }

  #werkwijze .process-wrapper::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    height: 4px !important;
    width: var(--mobile-progress, 20%) !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #66d0b0 0%, #35c98b 100%) !important;
    z-index: 2 !important;
  }
}
.is-ios-scroll-safe {
  background-attachment: scroll !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Desktop/tablet: cards netjes naast elkaar */
#reviews .reviews-v2-slider__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Review tekst animatie */
#reviews .reviews-v2-card__text {
  transition: max-height 0.3s ease;
}

/* Lees verder standaard verbergen */
#reviews .reviews-v2-card__toggle {
  display: none !important;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

/* Alleen tonen als JS .has-toggle zet */
#reviews .reviews-v2-card.has-toggle .reviews-v2-card__toggle {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Korte cards: nooit knop */
#reviews .reviews-v2-card:not(.has-toggle) .reviews-v2-card__toggle,
#reviews .reviews-v2-card__toggle[hidden] {
  display: none !important;
}

/* Mobiel: horizontale slider + gelijke card hoogte + read more fix */
@media (max-width: 767px) {
  #reviews .reviews-v2-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 18px;
  }

  #reviews .reviews-v2-slider__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 16px !important;
    width: max-content !important;
    padding: 0 24px !important;
  }

  #reviews .reviews-v2-card {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 82vw !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-self: stretch !important;
  }

  #reviews .reviews-v2-card__text {
    display: block !important;
    overflow: hidden !important;
    -webkit-line-clamp: unset !important;
    transition: max-height 0.3s ease !important;
  }

  #reviews .reviews-v2-card.is-expanded .reviews-v2-card__text {
    overflow: visible !important;
  }
}