/* ============================================
   PROCESS PAGE - 2026 SCROLLYTELLING JOURNEY
   Animated Path, Scroll-Triggered Animations
   ============================================ */

/* Hero Section */
.process-hero-scroll {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 25px 25px;
    }

    100% {
        background-position: 50px 50px, 75px 75px;
    }
}

.hero-content-scroll {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-animated {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: badgeGlow 3s ease infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

.hero-title-scroll {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text-scroll {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-scroll {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.scroll-down-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #60a5fa;
    font-weight: 600;
    animation: bounceY 2s ease infinite;
}

@keyframes bounceY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.scroll-down-indicator i {
    font-size: 1.5rem;
}

/* Scrollytelling Section */
.scrollytelling-section {
    position: relative;
    background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
    padding: 4rem 0;
}

/* Animated Journey Path */
.journey-path {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Progress Indicator */
.progress-indicator {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.progress-bar {
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 2px;
    transition: height 0.1s ease;
    position: relative;
}

.progress-percentage {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #3b82f6;
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Journey Container */
.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Journey Step */
.journey-step {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.3;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.journey-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    padding: 4rem;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.3);
}

/* Step Visual */
.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.step-number-large {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: 0.2;
}

.step-icon-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2rem;
    color: #fff;
    font-size: 4rem;
    box-shadow: 0 20px 50px -20px rgba(59, 130, 246, 0.5);
}

.icon-glow-pulse {
    position: absolute;
    inset: -15px;
    border-radius: 2rem;
    border: 3px solid #3b82f6;
    opacity: 0.5;
    animation: iconPulse 2s ease infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Step Info */
.step-info {
    display: flex;
    flex-direction: column;
}

.step-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8b5cf6;
    margin-bottom: 0.75rem;
}

.step-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.step-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.step-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.detail-item i {
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Journey Node */
.journey-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
    z-index: 3;
}

.node-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid #3b82f6;
    opacity: 0.5;
    animation: nodePulse 2s ease infinite;
}

@keyframes nodePulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.node-inner {
    position: relative;
    z-index: 1;
}

/* SLAs Timeline Section */
.slas-timeline-section {
    padding: 6rem 0;
    background: #fff;
}

.slas-header {
    text-align: center;
    margin-bottom: 4rem;
}

.slas-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.slas-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.slas-grid-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sla-card-timeline {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sla-card-timeline:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px -20px rgba(59, 130, 246, 0.3);
}

.sla-icon-timeline {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
}

.sla-card-timeline h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.sla-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.sla-card-timeline p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.process-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.cta-content-process {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-process h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content-process p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons-process {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-cta-process-primary,
.btn-cta-process-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-process-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
}

.btn-cta-process-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.7);
}

.btn-cta-process-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-process-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .step-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }

    .step-visual {
        flex-direction: row;
        justify-content: center;
    }

    .step-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-scroll {
        font-size: 3rem;
    }

    .step-title {
        font-size: 2rem;
    }

    .step-number-large {
        font-size: 5rem;
    }

    .step-icon-container {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .slas-grid-timeline {
        grid-template-columns: 1fr;
    }

    .cta-buttons-process {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-process-primary,
    .btn-cta-process-secondary {
        width: 100%;
        justify-content: center;
    }

    .progress-indicator {
        right: 1rem;
    }

    .journey-path {
        display: none;
    }
}