/* How We Help: scoped white, black, and orange closing section. */
.sedasend-how-help {
    --help-orange: #e25541;
    --help-black: #111111;
    width: 100%;
    padding: clamp(72px, 9vw, 124px) 20px;
    overflow: hidden;
    background: #ffffff;
}

.sedasend-how-help *,
.sedasend-how-help *::before,
.sedasend-how-help *::after {
    box-sizing: border-box;
}

.sedasend-how-help__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.sedasend-how-help h2 {
    margin: 0 0 clamp(42px, 6vw, 68px);
    color: var(--help-black);
    font-size: clamp(2.15rem, 4.8vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.05em;
    text-align: center;
}

.sedasend-how-help h2 span,
.sedasend-how-help__step > span {
    color: var(--help-orange);
}

.sedasend-how-help__steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr) 50px minmax(0, 1fr);
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
}

.sedasend-how-help__step {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    padding: clamp(28px, 4vw, 40px) 20px;
    border: 2px solid transparent;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    transition: border-color 280ms ease, box-shadow 280ms ease, opacity 550ms ease, transform 280ms ease;
}

.sedasend-how-help.is-visible .sedasend-how-help__step {
    opacity: 1;
    transform: translateY(0);
}

.sedasend-how-help.is-visible .sedasend-how-help__step:nth-of-type(2) {
    transition-delay: 160ms;
}

.sedasend-how-help.is-visible .sedasend-how-help__step:nth-of-type(3) {
    transition-delay: 320ms;
}

.sedasend-how-help__step:hover,
.sedasend-how-help__step:focus-visible,
.sedasend-how-help__step.is-active {
    border-color: var(--help-orange);
    box-shadow: 0 16px 38px rgba(226, 85, 65, 0.22);
    outline: 0;
    transform: translateY(-5px);
}

.sedasend-how-help__icon {
    display: grid;
    width: 112px;
    height: 112px;
    margin-bottom: 18px;
    place-items: center;
    border: 2px solid var(--help-orange);
    border-radius: 50%;
    color: var(--help-black);
}

.sedasend-how-help__icon svg {
    width: 68px;
    height: 68px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.sedasend-how-help__step > span {
    font-size: 0.9rem;
    font-weight: 900;
}

.sedasend-how-help__step h3 {
    margin: 7px 0 0;
    color: var(--help-black);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1.25;
}

.sedasend-how-help__arrow {
    color: var(--help-orange);
}

.sedasend-how-help__arrow svg {
    display: block;
    width: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.sedasend-how-help__cta {
    margin-top: clamp(54px, 8vw, 90px);
    text-align: center;
}

.sedasend-how-help__cta h3 {
    margin: 0 0 24px;
    color: var(--help-black);
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
}

.sedasend-how-help__cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--help-orange);
    box-shadow: 0 0 0 rgba(226, 85, 65, 0);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    animation: sedasend-help-pulse 1s ease-in-out infinite;
}

.sedasend-how-help__cta a:hover,
.sedasend-how-help__cta a:focus-visible {
    color: #ffffff;
    outline: 3px solid var(--help-black);
    outline-offset: 4px;
}

.sedasend-how-help__cta svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@keyframes sedasend-help-pulse {
    50% {
        box-shadow: 0 0 0 8px rgba(226, 85, 65, 0.16), 0 0 26px rgba(226, 85, 65, 0.32);
    }
}

@media (max-width: 900px) {
    .sedasend-how-help__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sedasend-how-help__arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .sedasend-how-help {
        padding-inline: 16px;
    }

    .sedasend-how-help__steps {
        grid-template-columns: 1fr;
    }

    .sedasend-how-help__cta a {
        width: min(100%, 360px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sedasend-how-help__step,
    .sedasend-how-help__cta a {
        animation: none;
        transition: none;
    }

    .sedasend-how-help__step {
        opacity: 1;
        transform: none;
    }
}
