.services-hero {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.services-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-hero p {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.services-showcase {
    padding: var(--spacing-2xl) 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.service-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 2px solid var(--glass-border);
    position: relative;
    transition: all var(--transition-base);
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: -15px;
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.service-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-title-group h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
}

.service-desc {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.service-details {
    border-top: 1px solid var(--glass-border);
    padding-top: var(--spacing-lg);
}

.features-list h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.features-list i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: 700;
}

.inquiry-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.process-preview {
    padding: var(--spacing-2xl) 0;
    background: white;
    text-align: center;
}

.process-preview h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-2xl);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.step {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.step h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--font-size-sm);
}

.services-cta {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.services-cta h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
}

.services-cta p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .service-header {
        grid-template-columns: 1fr;
    }

    .features-list ul {
        grid-template-columns: 1fr;
    }

    .service-footer {
        flex-direction: column;
    }

    .price-tag,
    .inquiry-btn {
        width: 100%;
        justify-content: center;
    }

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