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

