/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-color: #000;
}

.service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== PLATFORM ADAPTATION SECTION ===== */
.platform-adaptation {
    background: #fafafa;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platform-text h2 {
    margin-bottom: 1.5rem;
}

.platform-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.platforms {
    display: grid;
    gap: 1.5rem;
}

.platform {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.platform:hover {
    border-color: #000;
    transform: translateX(5px);
}

.platform h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.platform p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.platform-visual {
    display: flex;
    justify-content: center;
}

.platform-visual img {
    height: 300px;
}

/* ===== CLARIFICATION SECTION ===== */
.clarification {
    background: #fff;
}

.clarification-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.clarification-content h2 {
    margin-bottom: 2rem;
}

.clarification-box {
    background: #fafafa;
    border: 2px solid #000;
    padding: 3rem 2rem;
    text-align: left;
}

.clarification-box h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.clarification-box p {
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.clarification-box p:last-child {
    margin-bottom: 0;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: #fafafa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #000;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item {
        padding: 2rem 1.5rem;
    }

    .platform-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .platform-visual img {
        height: 200px;
    }

    .clarification-box {
        padding: 2rem 1.5rem;
    }

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

    .step {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-item {
        padding: 1.5rem 1rem;
    }

    .platform-content {
        gap: 1.5rem;
    }

    .platform-visual img {
        height: 150px;
    }

    .platform {
        padding: 1rem;
    }

    .clarification-box {
        padding: 1.5rem 1rem;
    }

    .step {
        padding: 1.25rem 0.75rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}
