.helper-profile-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #eef4ff 0%, #e6eefc 100%);
    padding: 32px 24px;
}

.helper-profile-shell {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
}

.helper-profile-back {
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: #2b62e2;
    color: #fff;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 18px;
}

.helper-profile-card,
.helper-profile-empty {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d8e1f2;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.helper-profile-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #dbe5f4;
}

.helper-profile-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid #dbe5f4;
}

.helper-profile-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #e8f0ff;
    color: #2457d6;
    font-weight: 700;
    border-radius: 999px;
    margin-bottom: 12px;
}

.helper-profile-summary h1 {
    margin: 0 0 8px;
    color: #1f3b73;
    font-size: 2.2rem;
}

.helper-profile-summary p {
    margin: 0 0 16px;
    color: #50648f;
    font-size: 1.05rem;
}

.helper-profile-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #2b62e2;
    color: #fff;
    font-weight: 700;
}

.helper-profile-status--busy {
    background: #6b7280;
}

.helper-profile-sections {
    display: grid;
    gap: 18px;
    padding-top: 24px;
}

.helper-profile-section {
    background: #fff;
    border: 1px solid #dbe5f4;
    border-radius: 18px;
    padding: 20px;
}

.helper-profile-section h2 {
    margin: 0 0 12px;
    color: #1f3b73;
    font-size: 1.35rem;
}

.helper-profile-section p,
.helper-profile-section li {
    color: #50648f;
    line-height: 1.6;
}

.helper-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.helper-profile-grid div {
    background: #f8fbff;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #e6eefb;
}

.helper-profile-grid span {
    display: block;
    color: #6f81a8;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.helper-profile-grid strong {
    color: #1f3b73;
    font-size: 1rem;
}

.helper-profile-empty {
    text-align: center;
}

.helper-profile-empty h1 {
    margin-top: 0;
    color: #1f3b73;
}

@media (max-width: 768px) {
    .helper-profile-page {
        padding: 20px 0;
    }

    .helper-profile-shell {
        width: min(100%, calc(100% - 24px));
    }

    .helper-profile-hero {
        grid-template-columns: 1fr;
    }

    .helper-profile-photo {
        width: 100%;
        height: 320px;
    }

    .helper-profile-grid {
        grid-template-columns: 1fr;
    }
}
