/* ================================
   STYLES PAGE SERVICES
   ================================ */

/* --- SERVICE CARDS --- */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.25);
}

.service-icon {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* --- PRICING CARDS --- */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
}

.pricing-card.featured {
    border: 2px solid #14b8a6;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

/* --- FEATURE LIST --- */
.feature-list li {
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #14b8a6;
    font-weight: bold;
    font-size: 1.2em;
}

/* --- PROCESS STEPS --- */
.process-step {
    position: relative;
    padding-left: 3rem;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.process-step::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 2.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #14b8a6, transparent);
}

.process-step:last-child::after {
    display: none;
}
