@charset "utf-8";
/* CSS Document */


.hp-process-section {
    padding: 3.5rem 1.5rem 3.8rem;
    background: #f7faf7; /* same soft background as other content sections */
}

.hp-process-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Intro row */
.hp-process-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hp-process-title {
    font-size: 2rem;
    margin: 0 0 0.75rem;
    color: #173f2a;
}

.hp-process-lead {
    margin: 0 0 0.9rem;
    font-size: 1.02rem;
    color: #4b5563;
}

.hp-process-bullets {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.6;
}

.hp-process-bullets li + li {
    margin-top: 0.25rem;
}

/* Video / hero image */
.hp-process-video {
    text-align: center;
}

.hp-process-video-thumb {
    position: relative;
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    background: #111827;
}

.hp-process-video-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.hp-process-video-play {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #ffffff;
    text-indent: 3px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.hp-process-video-caption {
    margin-top: 0.65rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Steps grid */
    .hp-process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* always 2 columns */
    gap: 1.8rem;
}

.hp-process-step {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(8, 36, 20, 0.14);
    padding: 1.6rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
/*
.hp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
}

.hp-process-step {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(8, 36, 20, 0.14);
    padding: 1.6rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
*/

.hp-process-step-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.6rem;
}

.hp-process-step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hp-process-step-title {
    font-size: 1.05rem;
    margin: 0;
    color: #173f2a;
}

.hp-process-step-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 0.6rem;
}

.hp-process-step-image {
    margin: 0.8rem 0 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
}

.hp-process-step-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive */
/*
@media (max-width: 1024px) {
    .hp-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
*/

@media (max-width: 900px) {
    .hp-process-intro {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 640px) {
    .hp-process-section {
        padding: 2.7rem 1rem 3rem;
    }

    .hp-process-steps {
        grid-template-columns: 1fr; /* stack steps on narrow screens */
    }

    .hp-process-title {
        font-size: 1.7rem;
    }
}
