


.process-section {
    padding: 100px 0 0 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0 4rem 0;
}


.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg,
            transparent 0%,
            #3a9dfb 10%,
            #667eea 50%,
            #3a9dfb 90%,
            transparent 100%);
    transform: translateX(-50%);
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(58, 157, 251, 0.3);
}


.process-step {
    position: relative;
    margin-bottom: 8rem;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}


.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(58, 157, 251, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.process-step:hover .step-number {
    transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
    box-shadow: 0 15px 50px rgba(58, 157, 251, 0.6);
}


.step-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    max-width: 450px;
    width: 100%;
}


.process-step:nth-child(odd) .step-content {
    margin-left: auto;
    margin-right: calc(50% - 470px);
    text-align: left;
}


.process-step:nth-child(even) .step-content {
    margin-right: auto;
    margin-left: calc(50% - 470px);
    text-align: right;
}


.step-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(58, 157, 251, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}


.process-step:nth-child(odd) .step-icon {
    right: calc(50% + 60px);
    top: 50%;
    transform: translateY(-50%);
}


.process-step:nth-child(even) .step-icon {
    left: calc(50% + 60px);
    top: 50%;
    transform: translateY(-50%);
}

.step-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 157, 251, 0.2), rgba(102, 126, 234, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-icon::before {
    opacity: 1;
}

.step-icon i {
    font-size: 3rem;
    color: #3a9dfb;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    box-shadow: 0 15px 40px rgba(58, 157, 251, 0.3);
}

.process-step:nth-child(odd):hover .step-icon {
    transform: translateY(-50%) scale(1.15) rotate(-8deg);
}

.process-step:nth-child(even):hover .step-icon {
    transform: translateY(-60%) scale(1.15) rotate(8deg);
}

.process-step:hover .step-icon i {
    transform: scale(1.1);
    color: #0969c2;
}


.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    transform: translateY(-50%);
    opacity: 0.5;
}

.process-step:nth-child(odd) .step-content::before {
    left: -30px;
    background: linear-gradient(90deg, #3a9dfb, transparent);
}

.process-step:nth-child(even) .step-content::before {
    right: -30px;
    background: linear-gradient(90deg, transparent, #3a9dfb);
}

.step-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}


@media (max-width: 992px) {
    .process-timeline::before {
        left: 45px;
    }

    .process-step {
        justify-content: flex-start;
        margin-bottom: 4rem;
    }

    .step-number {
        left: 45px;
        transform: translate(-50%, -50%);
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        margin-left: 120px;
        margin-right: 0;
        max-width: 100%;
        text-align: left;
    }

    .step-content::before {
        left: -45px !important;
        background: linear-gradient(90deg, #3a9dfb, transparent) !important;
    }

    .step-icon {
        display: none;
    }
}


@media (max-width: 768px) {
    .process-timeline {
        padding: 2rem 0;
    }

    .process-timeline::before {
        left: 30px;
        top: 50px;
        bottom: 50px;
    }

    .process-step {
        margin-bottom: 3rem;
        min-height: 120px;
    }

    .step-number {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        margin-left: 100px;
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .step-content::before {
        width: 25px;
        left: -35px !important;
    }
}


.trust-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    z-index: 3;
    margin-top: -50px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(58, 157, 251, 0.2);
    transition: all 0.4s ease;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.trust-stat:hover .stat-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 40px rgba(58, 157, 251, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1;
}

.stat-label {
    color: #666;
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
}


.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3a9dfb, #667eea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-card.featured {
    border: 2px solid #3a9dfb;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-10deg) scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.4;
    top: 0;
    left: 0;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
}

.feature-list i {
    color: #3a9dfb;
    font-size: 0.9rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3a9dfb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
    color: #0969c2;
}


.cta-section {
    padding: 40px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 50%;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.06;
    pointer-events: none;
}

.sphere-4 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f0f6ff, #e6f0ff);
    top: -160px;
    left: -160px;
}

.sphere-5 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f7f7fb, #f0f4ff);
    bottom: -180px;
    right: -180px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #0a1929;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(10, 25, 41, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(58, 157, 251, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0; 
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(58, 157, 251, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary-gradient:hover::before {
    opacity: 1;
}

.btn-primary-gradient span,
.btn-primary-gradient i {
    z-index: 2; 
}


.btn-primary-gradient .ripple {
    z-index: 1;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: #0a1929;
    font-weight: 600;
    border: 2px solid rgba(10, 25, 41, 0.12);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline-white:hover {
    background: rgba(10, 25, 41, 0.06);
    border-color: rgba(10, 25, 41, 0.18);
    transform: translateY(-2px);
    color: #0a1929;
    text-decoration: none;
}

.glass-button-nav {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white !important;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 157, 251, 0.3);
}

.glass-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 157, 251, 0.4);
    color: white !important;
    text-decoration: none;
}
