.services-page {
    padding: 80px 0;
}

.services-page,
.services-page * {
    box-sizing: border-box;
}

.services-page a {
    color: inherit;
    text-decoration: none;
}

.services-header,
.services-grid,
.services-process,
.services-cta {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}


/* header */

.services-header {
    margin-bottom: 64px;
    text-align: center;
}

.services-header h1 {
    margin: 0 0 16px;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.5;
}

.services-header p {
    margin: 0;
    color: #4b5563;
    font-size: 20px;
    line-height: 1.5;
}


/* services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.service-card {
    display: block;
    height: 100%;
    padding: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: box-shadow 0.15s ease;
}

.service-card:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: #ffffff;
    background: #000000;
    border-radius: 8px;
    transition: transform 0.15s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h2 {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.15s ease;
}

.service-card:hover h2 {
    color: #4b5563;
}

.service-card p {
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    margin-top: 8px;
    padding-left: 16px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.service-card li:first-child {
    margin-top: 0;
}

.service-card li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #000000;
    content: "•";
}

.service-card > span {
    display: block;
    margin-top: 20px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.15s ease;
}

.service-card:hover > span {
    color: #374151;
}


/* process */

.services-process {
    margin-bottom: 80px;
    padding: 48px;
    background: #f9fafb;
    border-radius: 16px;
}

.services-process-header {
    margin-bottom: 48px;
    text-align: center;
}

.services-process-header h2 {
    margin: 0 0 16px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.services-process-header p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.5;
}

.services-process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.services-process-item {
    text-align: center;
}

.services-process-item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: #ffffff;
    background: #000000;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.services-process-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.services-process-item p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}


/* cta */

.services-cta {
    padding: 48px;
    color: #ffffff;
    background: #000000;
    border-radius: 16px;
    text-align: center;
}

.services-cta h2 {
    margin: 0 0 16px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.services-cta p {
    margin: 0 0 32px;
    color: #d1d5db;
    font-size: 20px;
    line-height: 1.5;
}

.services-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 32px;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 18px;
    line-height: 1.5;
    transition:
        color 0.15s ease,
        background-color 0.15s ease;
}

.services-cta a:hover {
    color: #000000;
    background: #ffffff;
}


/* tablet */

@media (max-width: 1023px) {
    .services-header,
    .services-grid,
    .services-process,
    .services-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-process-list {
        grid-template-columns: 1fr;
    }
}


/* mobile */

@media (max-width: 767px) {
    .services-header,
    .services-grid,
    .services-process,
    .services-cta {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-page {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 64px;
    }

    .services-header h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-process,
    .services-cta {
        padding: 32px;
    }

    .services-process-header h2,
    .services-cta h2 {
        font-size: 30px;
    }
}