/* Homepage — Our Streamlined Development Process (mobile + desktop) */

#our-process {
    background: linear-gradient(165deg, #f5f3ff 0%, #eef2ff 42%, #faf5ff 100%);
}

.home-process__intro {
    margin-bottom: 2rem;
}

.home-process__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 72rem;
    margin: 0 auto;
}

.home-process__card {
    --step-accent: #6366f1;
    --step-accent-soft: #eef2ff;
    --step-accent-border: #c7d2fe;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1rem 0.85rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid var(--step-accent-border);
    background: #fff;
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-process__card:hover,
.home-process__card.is-active {
    transform: translateY(-2px);
    border-color: var(--step-accent);
    box-shadow: 0 14px 32px rgba(79, 70, 229, 0.14);
    background: linear-gradient(180deg, #fff 0%, var(--step-accent-soft) 100%);
}

.home-process__card.is-active .home-process__title {
    color: var(--step-accent);
}

.home-process__card--wide {
    grid-column: 1 / -1;
}

.home-process__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, var(--step-accent) 0%, color-mix(in srgb, var(--step-accent) 72%, #fff) 100%);
    color: #fff;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--step-accent) 35%, transparent);
    flex-shrink: 0;
}

.home-process__icon svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke-width: 2.25;
}

.home-process__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
}

.home-process__summary {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #4b5563;
    font-weight: 500;
}

.home-process__detail {
    margin-top: 1.5rem;
    padding: 1.1rem 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e9d5ff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.home-process__detail p {
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .home-process__grid {
        gap: 1rem;
    }

    .home-process__card {
        padding: 1.15rem 1rem 1.2rem;
    }

    .home-process__title {
        font-size: 1rem;
    }

    .home-process__summary {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .home-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .home-process__icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    .home-process__detail {
        margin-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .home-process__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem 1rem;
    }

    .home-process__card--wide {
        grid-column: 2 / span 2;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .home-process__card {
        padding: 1.35rem 1rem 1.25rem;
        min-height: 7.5rem;
        justify-content: center;
    }

    .home-process__summary {
        display: none;
    }

    .home-process__card.is-active .home-process__title {
        color: var(--step-accent);
    }
}

@media (max-width: 1023px) {
    .home-process__detail {
        display: none;
    }
}
