/* ===================================================
   SERVICES.CSS — Services Section Styles
   =================================================== */

.services {
    position: relative;
    padding: 6rem 3rem;
    background-color: #0a0a0a;
}

.services__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.services__heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 3.5rem;
}

/* Service List */
.services__list {
    display: flex;
    flex-direction: column;
}

/* Individual Service Item */
.services__item {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.services__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services__item:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Number */
.services__number {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

/* Service Name */
.services__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

/* Service Description */
.services__desc {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    text-align: right;
}

/* ---------- Process ---------- */
.services__process {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services__process-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.services__process-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    max-width: 480px;
}

/* Steps grid */
.services__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.services__step {
    display: flex;
    flex-direction: column;
}

/* Top row: number + line */
.services__step-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.services__step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.services__step-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
}

.services__step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.services__step-desc {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .services {
        padding: 5rem 2rem;
    }

    .services__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 1.5rem;
    }

    .services__heading {
        margin-bottom: 2.5rem;
    }

    .services__item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .services__desc {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 40px;
        margin-top: -0.5rem;
    }

    .services__process {
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .services__steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services__name {
        font-size: 1rem;
    }

    .services__desc {
        padding-left: 0;
    }
}
