/* Services Section */
.services-section {
    padding: 150px 40px;
    background: var(--black);
    color: var(--white);
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: var(--white);
    color: var(--black);
    padding: 60px;
    border: 3px solid var(--black);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translate(-8px, -8px);
    background: var(--yellow);
}

.service-card:nth-child(2) {
    margin-top: 80px;
}

.service-card:nth-child(3) {
    margin-top: -40px;
}

.service-number {
    font-family: 'DM Serif Display', serif;
    font-size: 80px;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 40px;
    line-height: 1;
}

.service-icon {
    font-size: 50px;
    margin-bottom: 30px;
    display: block;
}

.service-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
}

.service-features li:before {
    content: "→";
    margin-right: 10px;
    color: var(--accent);
    font-weight: 700;
}

/* Process Section */
.process-section {
    padding: 150px 40px;
    background: var(--white);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.process-header {
    margin-bottom: 100px;
    text-align: center;
}

.process-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 100px);
    line-height: 1.1;
    margin-bottom: 30px;
}

.process-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.process-step {
    position: relative;
    padding: 50px 40px;
    background: var(--black);
    color: var(--white);
}

.process-step:nth-child(2) {
    margin-top: 60px;
}

.step-number {
    font-family: 'DM Serif Display', serif;
    font-size: 120px;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 20px;
}

.step-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 150px 40px;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.cta-section .cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 90px);
    line-height: 1.1;
    margin-bottom: 40px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 25px 60px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 3px solid var(--black);
}

.cta-section .cta-button:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(-4px, -4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        margin-top: 0;
    }

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

    .process-step:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .services-section,
    .process-section,
    .cta-section {
        padding: 100px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card:hover {
        transform: none;
    }

    .service-number {
        font-size: 50px;
        right: 20px;
        top: 15px;
    }

    .service-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-description {
        font-size: 15px;
    }

    .process-step {
        padding: 30px 20px;
    }

    .step-number {
        font-size: 80px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-description {
        font-size: 15px;
    }

    .cta-section .cta-button {
        padding: 20px 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cta-section .cta-button:hover {
        transform: none;
    }

    .cta-subtitle {
        font-size: 18px;
    }
}
