.page-hero {
    background: var(--gradient-2);
    padding: 5rem 2rem 4rem;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-main {
    padding: 5rem 2rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-visual {
    position: relative;
    height: 400px;
}

.visual-box {
    position: absolute;
    border-radius: 16px;
    background: var(--gradient-1);
    opacity: 0.15;
}

.box-1 {
    width: 250px;
    height: 250px;
    top: 0;
    left: 0;
}

.box-2 {
    width: 180px;
    height: 180px;
    bottom: 50px;
    right: 50px;
    background: var(--gradient-2);
}

.box-3 {
    width: 120px;
    height: 120px;
    top: 100px;
    right: 0;
    opacity: 0.2;
}

.box-4 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    background: var(--gradient-2);
}

.box-5 {
    width: 280px;
    height: 280px;
    bottom: 0;
    right: 0;
}

.box-6 {
    width: 220px;
    height: 220px;
    top: 0;
    right: 80px;
}

.box-7 {
    width: 160px;
    height: 160px;
    bottom: 80px;
    left: 20px;
    background: var(--gradient-2);
}

.box-8 {
    width: 240px;
    height: 240px;
    top: 20px;
    left: 0;
    background: var(--gradient-2);
}

.box-9 {
    width: 190px;
    height: 190px;
    bottom: 40px;
    right: 40px;
}

.service-process {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .service-visual {
        height: 300px;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
}
