/* Process Page Styles */
.process-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    padding: 120px 0 60px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    opacity: 0;
    animation: pageEnter 0.6s ease-out forwards;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.process-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.process-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    margin-bottom: 6rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #4527A0, #00BFA5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(69, 39, 160, 0.3);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-lottie {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    transition: all 0.3s ease;
}

.step-lottie:hover {
    transform: scale(1.05);
}



.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature {
    background: linear-gradient(135deg, #4527A0, #00BFA5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(69, 39, 160, 0.2);
}

/* Infrastructure Section */
.infrastructure-section {
    margin-bottom: 6rem;
    text-align: center;
}

.infrastructure-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infra-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.infra-card.cloud {
    border-top-color: #3b82f6;
}

.infra-card.onprem {
    border-top-color: #10b981;
}

.infra-card.offline {
    border-top-color: #f59e0b;
}

.infra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.infra-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.infra-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.infra-card.onprem .infra-icon svg {
    color: #10b981;
}

.infra-card.offline .infra-icon svg {
    color: #f59e0b;
}

.infra-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.infra-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.infra-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.infra-card li {
    color: #475569;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.infra-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Final Steps */
.final-steps {
    margin-bottom: 6rem;
    text-align: center;
}

.final-steps h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.final-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.final-step {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.final-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.final-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4527A0, #00BFA5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.final-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.final-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.final-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.process-cta {
    text-align: center;
    background: linear-gradient(135deg, #4527A0, #00BFA5);
    padding: 4rem 2rem;
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.process-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.process-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #4527A0;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: #4527A0;
    text-decoration: none;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .process-page {
        padding: 90px 0 40px 0;
    }

    .process-container {
        padding: 0 1rem;
    }

    .process-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0 auto;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-lottie {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .final-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-cta {
        padding: 3rem 1.5rem;
    }

    .process-cta h2 {
        font-size: 2rem;
    }

    .process-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .process-hero h1 {
        font-size: 2rem;
    }

    .step-features {
        justify-content: center;
    }

    .feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .step-lottie {
        width: 200px;
        height: 200px;
    }
} 