.page-hero {
    background: var(--gradient-2);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 100px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
    position: relative;
}

.service-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-2);
    border-radius: 16px 0 0 16px;
}

.service-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 40px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-features li {
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    position: relative;
    padding-left: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .service-number {
        font-size: 3rem;
        top: 10px;
        right: 20px;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}
