/* ============================================
   PRICING.CSS - Pricing Section
   Digital George 2026
   ============================================ */

.pricing {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(112, 0, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.pricing-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-explanation {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-lead {
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Pricing Steps */
.pricing-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.pricing-step:hover {
    background: rgba(112, 0, 255, 0.05);
    border-color: var(--purple);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(112, 0, 255, 0.2);
}

.step-number {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.5);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.step-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Promise Box */
.pricing-promise {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(0, 245, 255, 0.05);
    border: 2px solid var(--cyan);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.pricing-promise i {
    font-size: 4rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.promise-text {
    flex: 1;
}

.promise-text strong {
    display: block;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
}

.promise-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .pricing-lead {
        font-size: 1.2rem;
    }
    
    .pricing-step {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .pricing-promise {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    
    .pricing-promise i {
        font-size: 3rem;
    }
    
    .promise-text strong {
        font-size: 1.2rem;
    }
    
    .promise-text p {
        font-size: 1rem;
    }
}