/* How it works — header + steps (number inside each card) */
.how-it-works {
    font-family: "Kanit", "Montserrat", sans-serif;
    background: #fff;
}

.how-it-works__header {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.how-it-works__eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2ba361;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.how-it-works__title {
    font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.how-it-works__subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

.how-it-works__steps-wrap {
    position: relative;
    margin-top: 0.5rem;
}

/* Horizontal line between cards (aligns with circle center; visible in column gutters on lg+) */
.how-it-works__connector {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(2.4rem + 28px);
    height: 3px;
    background: #98e39b;
    border-radius: 2px;
    z-index: 0;
    pointer-events: none;
}

@media (min-width: 992px) {
    .how-it-works__connector {
        display: block;
    }
}

.how-it-works__steps-row {
    position: relative;
    z-index: 1;
}

.hit-step {
    height: 100%;
}

.hit-step__card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.15rem 1rem 1.2rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hit-step__circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2ba361;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    flex-shrink: 0;
    line-height: 1;
    font-family: "Kanit", sans-serif;
}

.hit-step__icon {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 88px;
    margin: 0 auto 0.65rem;
    object-fit: contain;
}

.hit-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 0.65rem 0;
    width: 100%;
}

.hit-step__body {
    font-size: 0.88rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.55;
    text-align: left;
    margin: 0;
    width: 100%;
}

.hit-step__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hit-step__body li {
    position: relative;
    padding-left: 1.05rem;
    margin-bottom: 0.4rem;
}

.hit-step__body li:last-child {
    margin-bottom: 0;
}

.hit-step__body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ba361;
}

.hit-step__body p {
    margin-bottom: 0.5rem;
}

.hit-step__body p:last-child {
    margin-bottom: 0;
}
