/* ============================================
   Service Page Styles
   ============================================ */

/* Service Hero */
.service-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.service-hero h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.service-hero-desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    font-size: var(--text-2xl);
    text-align: center;
    margin-bottom: var(--space-12);
}

/* Service Features Grid */
.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-feature {
    text-align: center;
    padding: var(--space-8);
}

.service-feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.service-feature h3 {
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.service-feature p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Service Steps */
.service-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.service-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.step-content h3 {
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Service Pricing */
.service-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-option {
    text-align: center;
    padding: var(--space-8);
    position: relative;
}

.pricing-option.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.pricing-option .pricing-name {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.pricing-option .pricing-price {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-4);
}

.pricing-option .pricing-price span {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-option p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.service-cta h2 {
    margin-bottom: var(--space-4);
}

.service-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: var(--text-2xl);
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-steps {
        flex-direction: column;
    }

    .service-pricing {
        grid-template-columns: 1fr;
    }

    .pricing-option.featured {
        transform: none;
    }
}