/* ============================================
   PROCESS PAGE - Premium Roadmap
   ============================================ */

/* Force navbar wit op proces pagina */
.proces-hero ~ .navbar,
body:has(.proces-hero) .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08) !important;
}

body:has(.proces-hero) .navbar .nav-link {
    color: #1e293b !important;
}

body:has(.proces-hero) .navbar .nav-link:hover,
body:has(.proces-hero) .navbar .nav-link.active {
    color: #0B1993 !important;
}

body:has(.proces-hero) .navbar .logo-text {
    color: #0f172a !important;
}

body:has(.proces-hero) .navbar .logo-text .accent {
    color: #0B1993 !important;
}

body:has(.proces-hero) .navbar .cta-button {
    background: linear-gradient(135deg, #0B1993, #428FE7) !important;
    color: white !important;
}

body:has(.proces-hero) .navbar .hamburger span {
    background: #1e293b !important;
}

/* ============================================
   HERO SECTIE
   ============================================ */
.proces-hero {
    min-height: 75vh;
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0f172a 50%, #1e3a5f 100%);
}

.proces-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.proces-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 102, 204, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 163, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 60%);
}

.proces-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.proces-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 24px;
    text-align: center;
}

.proces-hero .hero-title {
    color: #fff;
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
}

.proces-hero .gradient-text {
    background: linear-gradient(135deg, #428FE7 0%, #0B1993 40%, #428FE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proces-hero .hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.35rem;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: rgba(255,255,255,0.6);
    stroke-width: 1.5;
    animation: scrollDown 1.6s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 0.35; }
    40% { transform: translateY(10px); opacity: 0.9; }
    100% { transform: translateY(18px); opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-indicator svg {
        animation: none;
    }
}

/* ============================================
   PROCES SECTIES
   ============================================ */
.proces-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.proces-section.alt {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.proces-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.proces-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.proces-section .section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 163, 255, 0.1));
    border: 1px solid rgba(0, 102, 204, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0B1993;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.proces-section .section-title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.proces-section .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   ROADMAP - Visuele Route Design
   ============================================ */
.roadmap-steps {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

/* De "weg" - centrale lijn met glow */
.roadmap-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, 
        #0B1993 0%,
        #428FE7 20%,
        #10b981 40%,
        #428FE7 60%,
        #0B1993 80%,
        #10b981 100%
    );
    border-radius: 6px;
    box-shadow: 
        0 0 20px rgba(0, 102, 204, 0.4),
        0 0 40px rgba(0, 102, 204, 0.2);
}

/* Gestippelde route overlay */
.roadmap-steps::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 15px,
        rgba(255,255,255,0.3) 15px,
        rgba(255,255,255,0.3) 25px
    );
    border-radius: 6px;
}

/* Mobiel: lijn links */
@media (max-width: 899px) {
    .roadmap-steps::before,
    .roadmap-steps::after {
        left: 28px;
        transform: none;
        width: 4px;
    }
}

/* Enkele stap container */
.roadmap-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

/* Mobiel layout */
@media (max-width: 899px) {
    .roadmap-step {
        display: flex;
        flex-direction: row;
        gap: 24px;
        padding-left: 0;
    }
}

/* Step marker - "Halte" op de route */
.step-marker {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0B1993 0%, #428FE7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 10;
    box-shadow: 
        0 0 0 6px rgba(255,255,255,1),
        0 0 0 8px rgba(0, 102, 204, 0.3),
        0 8px 32px rgba(0, 102, 204, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    grid-column: 2;
}

.roadmap-step:hover .step-marker {
    transform: scale(1.15);
    box-shadow: 
        0 0 0 8px rgba(255,255,255,1),
        0 0 0 12px rgba(0, 102, 204, 0.4),
        0 12px 40px rgba(0, 102, 204, 0.5);
}

/* Pulse animatie op marker */
.step-marker::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 204, 0.3);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Mobiel marker */
@media (max-width: 899px) {
    .step-marker {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
        flex-shrink: 0;
        box-shadow: 
            0 0 0 4px rgba(255,255,255,1),
            0 0 0 6px rgba(0, 102, 204, 0.3),
            0 6px 24px rgba(0, 102, 204, 0.4);
    }
    
    .step-marker::before {
        display: none;
    }
}

/* Step content card */
.step-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

/* Pijl naar de lijn */
.step-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
}

/* Oneven: content links, pijl rechts */
.roadmap-step:nth-child(odd) .step-content {
    grid-column: 1;
    text-align: right;
}

.roadmap-step:nth-child(odd) .step-content::after {
    right: -11px;
    border-left: none;
    border-bottom: none;
}

/* Even: content rechts, pijl links */
.roadmap-step:nth-child(even) .step-content {
    grid-column: 3;
    text-align: left;
}

.roadmap-step:nth-child(even) .step-content::after {
    left: -11px;
    border-right: none;
    border-top: none;
}

/* Hover effect */
.roadmap-step:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 102, 204, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 204, 0.3);
}

.roadmap-step:hover .step-content::after {
    background: #ffffff;
    border-color: rgba(0, 102, 204, 0.3);
}

/* Mobiel: altijd links uitlijnen */
@media (max-width: 899px) {
    .step-content {
        flex: 1;
        text-align: left !important;
        padding: 28px 32px;
    }
    
    .step-content::after {
        display: none;
    }
}

/* Step icon */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 163, 255, 0.08));
    border: 1px solid rgba(0, 102, 204, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 163, 255, 0.15));
    transform: scale(1.05);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0B1993;
    stroke-width: 1.5;
    fill: none;
}

/* Uitlijning icoon */
.roadmap-step:nth-child(odd) .step-icon {
    margin-left: auto;
}

@media (max-width: 899px) {
    .step-icon {
        width: 52px;
        height: 52px;
        margin-left: 0 !important;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Step titel */
.step-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

/* Step beschrijving */
.step-content > p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0 0 20px;
}

/* Meta badges */
.step-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.roadmap-step:nth-child(odd) .step-meta {
    justify-content: flex-end;
}

@media (max-width: 899px) {
    .step-meta {
        justify-content: flex-start !important;
    }
}

.step-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
}

.step-meta span:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.step-meta span svg {
    width: 16px;
    height: 16px;
    stroke: #0B1993;
}

/* ============================================
   INFO GRID - Flexibiliteit
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0B1993, #428FE7, #10b981);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    border-color: transparent;
    box-shadow: 0 24px 64px rgba(0, 102, 204, 0.12);
    transform: translateY(-8px);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.info-card > p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

.fase-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fase-badges span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.fase-badges span.active {
    background: linear-gradient(135deg, #0B1993, #428FE7);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35);
}

/* ============================================
   TRAJECTORY GRID - Instap Trajecten met CTA
   ============================================ */
.trajectory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

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

.trajectory-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trajectory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0B1993, #428FE7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trajectory-card:hover {
    border-color: transparent;
    box-shadow: 0 24px 64px rgba(0, 102, 204, 0.12);
    transform: translateY(-6px);
}

.trajectory-card:hover::before {
    transform: scaleX(1);
}

.trajectory-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trajectory-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B1993, #428FE7);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.trajectory-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.trajectory-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.trajectory-phases {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.trajectory-phases span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.trajectory-phases span.active {
    background: linear-gradient(135deg, #0B1993, #428FE7);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.trajectory-result {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    border-left: 3px solid #10b981;
    margin: 0;
}

.trajectory-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0B1993, #428FE7);
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.trajectory-cta:hover {
    background: linear-gradient(135deg, #0052a3, #0088dd);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.35);
}

.trajectory-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.trajectory-cta:hover svg {
    transform: translateX(4px);
}

/* ============================================
   CTA SECTIE
   ============================================ */
.proces-cta {
    background: linear-gradient(135deg, #0B1993 0%, #428FE7 50%, #0077DD 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.proces-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.proces-cta .container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.proces-cta h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.proces-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.proces-cta .btn {
    background: white;
    color: #0B1993;
    padding: 18px 42px;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.proces-cta .btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.proces-cta .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proces-cta .btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 899px) {
    .proces-hero {
        min-height: 60vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .proces-hero .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    
    .proces-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .proces-section {
        padding: 80px 0;
    }
    
    .proces-section .section-header {
        margin-bottom: 50px;
    }
    
    .roadmap-steps {
        padding: 20px 0;
    }
    
    .roadmap-step {
        margin-bottom: 32px;
    }
    
    .step-content h3 {
        font-size: 1.1875rem;
    }
    
    .step-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 32px;
    }
    
    .proces-cta {
        padding: 70px 0;
    }
    
    .proces-cta h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .proces-cta .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Animation on scroll */
.roadmap-step {
    opacity: 1;
}

/* ============================================
   CUSTOMER JOURNEY NAVIGATION
   ============================================ */
.journey-navigation {
    padding: 100px 0;
    background: #f8fafc;
}

.journey-navigation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.journey-navigation .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.journey-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-item:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 48px rgba(0, 102, 204, 0.12);
    border-color: rgba(0, 102, 204, 0.2);
}

.journey-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0B1993, #428FE7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.journey-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.journey-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.journey-text strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}

.journey-text span {
    font-size: 0.875rem;
    color: #64748b;
}

.journey-item .arrow {
    width: 20px;
    height: 20px;
    stroke: #94a3b8;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.journey-item:hover .arrow {
    stroke: #0B1993;
    transform: translateX(4px);
}

