.help-button {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.help-modal {
    width: 20rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 108, 73, 0.2);
    border-radius: 1rem;
    background: rgba(249, 249, 255, 0.7);
    box-shadow: 0 20px 50px rgba(45, 55, 72, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
    .help-modal {
        width: 24rem;
    }
}

.help-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
}

.help-modal__title {
    color: #121c2c;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
}

.help-modal__close {
    padding: 0.25rem;
    color: #3c4a42;
    transition: color 300ms ease;
}

.help-modal__close:hover {
    color: #ba1a1a;
}

.help-modal__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
}

.help-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.help-field__label {
    color: #3c4a42;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1rem;
    text-transform: uppercase;
}

.help-field__control {
    width: 100%;
    border: 2px solid rgba(187, 202, 191, 0.5);
    border-radius: 0.5rem;
    background: #ffffff;
    padding: 0.5rem 0.75rem;
    color: #121c2c;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: border-color 300ms ease;
}

.help-field__control:focus {
    border-color: #006c49;
    outline: none;
    box-shadow: none;
}

.help-field__control--textarea {
    min-height: 6rem;
    resize: none;
}

.help-submit,
.help-trigger {
    background: linear-gradient(135deg, #006c49 0%, #10b981 100%);
    color: #ffffff;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 20px;
    transition: opacity 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.help-submit {
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.help-submit:hover,
.help-trigger:hover {
    opacity: 0.9;
}

.help-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.help-trigger:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.help-trigger .material-symbols-outlined {
    transition: transform 300ms ease;
}

.help-trigger:hover .material-symbols-outlined {
    transform: rotate(12deg);
}
