.doctor-join-section {
    position: relative;
    padding: 34px 0 46px;
    background:
        radial-gradient(circle at 88% 20%, rgba(8, 145, 165, .10), transparent 30%),
        linear-gradient(180deg, #f7fcfd 0%, #edf8fa 100%);
    overflow: hidden;
}

.doctor-join-anchor {
    position: absolute;
    top: -88px;
}

.doctor-join-card {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) minmax(265px, 320px);
    align-items: center;
    gap: 28px;
    min-height: 210px;
    padding: 34px 38px;
    border: 1px solid rgba(8, 145, 165, .18);
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 55px rgba(15, 74, 90, .10);
    isolation: isolate;
}

.doctor-join-card::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 8px;
    border-radius: 0 28px 28px 0;
    background: linear-gradient(180deg, #0ea5c6, #087f8c);
}

.doctor-join-icon {
    position: relative;
    width: 86px;
    height: 86px;
    border-radius: 24px;
    background: linear-gradient(145deg, #e7f9fc, #d8f1f5);
    box-shadow: inset 0 0 0 1px rgba(8, 145, 165, .12);
}

.doctor-join-icon-head {
    position: absolute;
    top: 20px;
    right: 31px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(145deg, #21b6cf, #087f8c);
}

.doctor-join-icon-body {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: 46px;
    height: 27px;
    border-radius: 26px 26px 12px 12px;
    background: linear-gradient(145deg, #21b6cf, #087f8c);
}

.doctor-join-icon-plus {
    position: absolute;
    left: 8px;
    bottom: 8px;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    color: #fff;
    background: #12395a;
    font: 800 20px/1 Arial, sans-serif;
    box-shadow: 0 5px 14px rgba(18, 57, 90, .22);
}

.doctor-join-copy {
    min-width: 0;
}

.doctor-join-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #087f8c;
    background: #e6f8fb;
    font-size: 13px;
    font-weight: 800;
}

.doctor-join-copy h2 {
    margin: 0;
    color: #102f4d;
    font-size: clamp(25px, 2.2vw, 36px);
    line-height: 1.3;
    font-weight: 900;
}

.doctor-join-copy p {
    max-width: 690px;
    margin: 10px 0 16px;
    color: #60738a;
    font-size: 15px;
    line-height: 1.8;
}

.doctor-join-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
}

.doctor-join-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #294d68;
    font-size: 13px;
    font-weight: 700;
}

.doctor-join-benefits b {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: #087f66;
    background: #dff7ee;
    font-size: 12px;
}

.doctor-join-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.doctor-join-smart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 78px;
    padding: 14px 16px 14px 18px;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #0fa8c8 0%, #087f8c 100%);
    box-shadow: 0 14px 28px rgba(8, 145, 165, .25);
    text-decoration: none;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.doctor-join-smart-button::before {
    content: "";
    position: absolute;
    top: -35%;
    right: -30%;
    width: 80px;
    height: 140%;
    background: rgba(255, 255, 255, .13);
    transform: rotate(22deg);
    transition: right .35s ease;
}

.doctor-join-smart-button:hover,
.doctor-join-smart-button:focus-visible {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(8, 145, 165, .31);
}

.doctor-join-smart-button:hover::before {
    right: 108%;
}

.doctor-join-button-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: right;
}

.doctor-join-button-text strong {
    font-size: 16px;
    font-weight: 900;
}

.doctor-join-button-text small {
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
}

.doctor-join-button-arrow {
    display: grid;
    flex: 0 0 39px;
    place-items: center;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    color: #087f8c;
    background: #fff;
    font-size: 22px;
    font-weight: 900;
    transition: transform .2s ease;
}

.doctor-join-smart-button:hover .doctor-join-button-arrow {
    transform: translateX(-4px);
}

.doctor-join-help {
    color: #587087;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.doctor-join-help:hover {
    color: #087f8c;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .doctor-join-card {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 20px;
        padding: 28px;
    }

    .doctor-join-icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .doctor-join-icon-head {
        top: 16px;
        right: 26px;
        width: 20px;
        height: 20px;
    }

    .doctor-join-icon-body {
        right: 17px;
        bottom: 13px;
        width: 39px;
        height: 23px;
    }

    .doctor-join-actions {
        grid-column: 1 / -1;
        width: 100%;
    }

    .doctor-join-smart-button {
        max-width: 420px;
        width: 100%;
        margin-inline-start: auto;
    }
}

@media (max-width: 600px) {
    .doctor-join-section {
        padding: 22px 0 30px;
    }

    .doctor-join-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        min-height: 0;
        padding: 24px 20px 20px;
        border-radius: 22px;
        text-align: center;
    }

    .doctor-join-card::before {
        inset: 0 0 auto;
        width: 100%;
        height: 5px;
        border-radius: 22px 22px 0 0;
    }

    .doctor-join-icon {
        width: 66px;
        height: 66px;
        margin: 0 auto;
    }

    .doctor-join-icon-head {
        top: 15px;
        right: 24px;
        width: 18px;
        height: 18px;
    }

    .doctor-join-icon-body {
        right: 15px;
        bottom: 12px;
        width: 36px;
        height: 21px;
    }

    .doctor-join-kicker {
        margin-bottom: 7px;
        font-size: 12px;
    }

    .doctor-join-copy h2 {
        font-size: 24px;
    }

    .doctor-join-copy p {
        margin: 8px 0 14px;
        font-size: 14px;
        line-height: 1.7;
    }

    .doctor-join-benefits {
        justify-content: center;
        gap: 8px 13px;
    }

    .doctor-join-benefits span {
        font-size: 12px;
    }

    .doctor-join-actions {
        margin-top: 3px;
    }

    .doctor-join-smart-button {
        min-height: 70px;
        max-width: none;
        padding: 12px 14px;
    }

    .doctor-join-button-text strong {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .doctor-join-smart-button,
    .doctor-join-smart-button::before,
    .doctor-join-button-arrow {
        transition: none;
    }
}
