.why-join-section {
    position: relative;
    overflow: hidden;
    padding: 110px 8%;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(21, 134, 87, .10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f7faf8 0%,
            #ffffff 100%
        );
}

.why-join-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 191, 0, .08);
    pointer-events: none;
}

.why-join-container {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.why-join-heading {
    max-width: 790px;
    margin: 0 auto 58px;
    text-align: center;
}

.why-join-eyebrow {
    margin: 0 0 14px;
    color: #b57e00;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.why-join-heading h2 {
    margin: 0;
    color: #0d3f2d;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.12;
}

.why-join-heading > p:last-child {
    max-width: 710px;
    margin: 22px auto 0;
    color: #64746b;
    font-size: 1.08rem;
    line-height: 1.85;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.why-join-card {
    position: relative;
    min-height: 285px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(13, 63, 45, .08);
    border-radius: 25px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(24, 61, 45, .08);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.why-join-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(
        180deg,
        #158657,
        #ffbf00
    );
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease;
}

.why-join-card:hover {
    transform: translateY(-9px);
    border-color: rgba(21, 134, 87, .26);
    box-shadow: 0 28px 60px rgba(24, 61, 45, .15);
}

.why-join-card:hover::before {
    transform: scaleY(1);
}

.why-join-icon {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 19px;
    background: linear-gradient(
        135deg,
        rgba(21, 134, 87, .13),
        rgba(255, 191, 0, .13)
    );
    font-size: 2rem;
    transition: transform .3s ease;
}

.why-join-card:hover .why-join-icon {
    transform: scale(1.09) rotate(-3deg);
}

.why-join-card h3 {
    margin: 0 0 14px;
    color: #0d3f2d;
    font-size: 1.28rem;
}

.why-join-card p {
    margin: 0;
    color: #68776f;
    line-height: 1.75;
}

.why-join-trust {
    margin-top: 45px;
    padding: 30px;
    border-radius: 23px;
    background: #edf7f1;
    text-align: center;
}

.why-join-trust > p {
    margin: 0 0 20px;
    color: #0d3f2d;
    font-size: 1.08rem;
    font-weight: 800;
}

.why-join-trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.why-join-trust-list span {
    padding: 10px 16px;
    border: 1px solid rgba(21, 134, 87, .13);
    border-radius: 999px;
    background: #ffffff;
    color: #35604d;
    font-size: .92rem;
    font-weight: 700;
}

.why-join-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding: 35px 40px;
    border-radius: 27px;
    background: linear-gradient(
        135deg,
        #0d3f2d,
        #158657
    );
    box-shadow: 0 25px 60px rgba(13, 63, 45, .23);
    color: #ffffff;
}

.why-join-action strong,
.why-join-action span {
    display: block;
}

.why-join-action strong {
    margin-bottom: 8px;
    font-size: 1.38rem;
}

.why-join-action > div > span {
    max-width: 630px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.6;
}

.why-join-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 999px;
    background: #ffbf00;
    color: #143c2b;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.why-join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .20);
}

.why-join-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

.why-join-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-join-card:nth-child(2) {
    transition-delay: .07s;
}

.why-join-card:nth-child(3) {
    transition-delay: .14s;
}

.why-join-card:nth-child(4) {
    transition-delay: .21s;
}

.why-join-card:nth-child(5) {
    transition-delay: .28s;
}

.why-join-card:nth-child(6) {
    transition-delay: .35s;
}

@media (max-width: 980px) {
    .why-join-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-join-action {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .why-join-section {
        padding: 80px 20px;
    }

    .why-join-grid {
        grid-template-columns: 1fr;
    }

    .why-join-card {
        min-height: auto;
        padding: 28px;
    }

    .why-join-trust,
    .why-join-action {
        padding: 27px 23px;
    }

    .why-join-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-join-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .why-join-card,
    .why-join-icon,
    .why-join-button {
        transition: none;
    }
}
