﻿.purchase-process-info {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.purchase-process-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.purchase-process-info h3 {
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 35px;
    font-weight: 700;
}

.purchase-process-info h3 i {
    color: #667eea;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.8));
    margin-right: 10px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.8);
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.step-content h4 i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.step-content h4 .fa-shopping-cart {
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.8));
}

.step-content h4 .fa-discord {
    color: #5865f2;
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.8));
}

.step-content h4 .fa-check-circle {
    color: #4ade80;
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.8));
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-content a {
    transition: all 0.2s ease;
}

.step-content a:hover {
    color: #764ba2 !important;
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.badge-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.badge-icon i {
    filter: drop-shadow(0 0 8px currentColor);
}

.trust-badge:nth-child(1) .badge-icon i {
    color: #ffd700;
}

.trust-badge:nth-child(2) .badge-icon i {
    color: #ffd700;
    animation: pulse-bolt 1.5s ease-in-out infinite;
}

.trust-badge:nth-child(3) .badge-icon i {
    color: #4ade80;
}

.trust-badge:nth-child(4) .badge-icon i {
    color: #00d4ff;
}

.trust-badge:hover .badge-icon {
    transform: scale(1.2);
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .purchase-process-info {
        padding: 30px 20px;
    }

    .purchase-process-info h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .badge-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-badge {
        justify-content: center;
    }
}